Home
last modified time | relevance | path

Searched refs:iType (Results 1 – 5 of 5) sorted by relevance

/src/contrib/llvm-project/llvm/include/llvm/IR/
H A DInstrTypes.h59 UnaryInstruction(Type *Ty, unsigned iType, Value *V, BasicBlock::iterator IB) in UnaryInstruction() argument
60 : Instruction(Ty, iType, &Op<0>(), 1, IB) { in UnaryInstruction()
63 UnaryInstruction(Type *Ty, unsigned iType, Value *V,
65 : Instruction(Ty, iType, &Op<0>(), 1, IB) {
68 UnaryInstruction(Type *Ty, unsigned iType, Value *V, BasicBlock *IAE) in UnaryInstruction() argument
69 : Instruction(Ty, iType, &Op<0>(), 1, IAE) { in UnaryInstruction()
110 UnaryOperator(UnaryOps iType, Value *S, Type *Ty, const Twine &Name,
192 BinaryOperator(BinaryOps iType, Value *S1, Value *S2, Type *Ty,
533 CastInst(Type *Ty, unsigned iType, Value *S, const Twine &NameStr = "",
535 : UnaryInstruction(Ty, iType, S, InsertBefore) {
H A DInstruction.h1033 Instruction(Type *Ty, unsigned iType, Use *Ops, unsigned NumOps,
/src/contrib/llvm-project/llvm/lib/IR/
H A DInstructions.cpp2527 UnaryOperator::UnaryOperator(UnaryOps iType, Value *S, Type *Ty, in UnaryOperator() argument
2529 : UnaryInstruction(Ty, iType, S, InsertBefore) { in UnaryOperator()
2561 BinaryOperator::BinaryOperator(BinaryOps iType, Value *S1, Value *S2, Type *Ty, in BinaryOperator() argument
2563 : Instruction(Ty, iType, OperandTraits<BinaryOperator>::op_begin(this), in BinaryOperator()
/src/contrib/sqlite3/
H A Dshell.c18409 sqlite3_int64 iType; in dbdataNext() local
18416 pCsr->pHdrPtr += dbdataGetVarintU32(pCsr->pHdrPtr, &iType); in dbdataNext()
18417 szField = dbdataValueBytes(iType); in dbdataNext()
18631 sqlite3_int64 iType; in dbdataColumn() local
18632 dbdataGetVarintU32(pCsr->pHdrPtr, &iType); in dbdataColumn()
18634 ctx, pCsr->enc, iType, pCsr->pPtr, in dbdataColumn()
H A Dsqlite3.c29297 int iType; member
29333 static sqlite3_mutex *checkMutexAlloc(int iType){ in checkMutexAlloc() argument
29342 if( iType<2 ){ in checkMutexAlloc()
29345 p->iType = iType; in checkMutexAlloc()
29348 if( iType-2>=ArraySize(staticMutexes) ){ in checkMutexAlloc()
29353 p = &staticMutexes[iType-2]; in checkMutexAlloc()
29357 p->mutex = pGlobalMutexMethods->xMutexAlloc(iType); in checkMutexAlloc()
29359 if( iType<2 ){ in checkMutexAlloc()
29378 if( ((CheckMutex*)p)->iType<2 ) in checkMutexFree()
29397 if( pCheck->iType==SQLITE_MUTEX_WARNONCONTENTION ){ in checkMutexEnter()
[all …]