Searched refs:iType (Results 1 – 5 of 5) sorted by relevance
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/ |
H A D | InstrTypes.h | 59 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 D | Instruction.h | 1033 Instruction(Type *Ty, unsigned iType, Use *Ops, unsigned NumOps,
|
/freebsd/contrib/llvm-project/llvm/lib/IR/ |
H A D | Instructions.cpp | 2527 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()
|
/freebsd/contrib/sqlite3/ |
H A D | shell.c | 16175 sqlite3_int64 iType; in dbdataNext() local 16182 pCsr->pHdrPtr += dbdataGetVarintU32(pCsr->pHdrPtr, &iType); in dbdataNext() 16183 szField = dbdataValueBytes(iType); in dbdataNext() 16397 sqlite3_int64 iType; in dbdataColumn() local 16398 dbdataGetVarintU32(pCsr->pHdrPtr, &iType); in dbdataColumn() 16400 ctx, pCsr->enc, iType, pCsr->pPtr, in dbdataColumn()
|
H A D | sqlite3.c | 28798 int iType; member 28834 static sqlite3_mutex *checkMutexAlloc(int iType){ in checkMutexAlloc() argument 28843 if( iType<2 ){ in checkMutexAlloc() 28846 p->iType = iType; in checkMutexAlloc() 28849 if( iType-2>=ArraySize(staticMutexes) ){ in checkMutexAlloc() 28854 p = &staticMutexes[iType-2]; in checkMutexAlloc() 28858 p->mutex = pGlobalMutexMethods->xMutexAlloc(iType); in checkMutexAlloc() 28860 if( iType<2 ){ in checkMutexAlloc() 28879 if( ((CheckMutex*)p)->iType<2 ) in checkMutexFree() 28898 if( pCheck->iType==SQLITE_MUTEX_WARNONCONTENTION ){ in checkMutexEnter() [all …]
|