Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DInstrTypes.h62 UnaryInstruction(Type *Ty, unsigned iType, Value *V,
64 : Instruction(Ty, iType, AllocMarker, InsertBefore) { in Instruction() argument
105 LLVM_ABI UnaryOperator(UnaryOps iType, Value *S, Type *Ty, const Twine &Name,
177 LLVM_ABI BinaryOperator(BinaryOps iType, Value *S1, Value *S2, Type *Ty,
451 CastInst(Type *Ty, unsigned iType, Value *S, const Twine &NameStr = "",
453 : UnaryInstruction(Ty, iType, S, InsertBefore) {
H A DInstruction.h1093 LLVM_ABI Instruction(Type *Ty, unsigned iType, AllocInfo AllocInfo,
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DInstructions.cpp2592 UnaryOperator::UnaryOperator(UnaryOps iType, Value *S, Type *Ty, in UnaryOperator() argument
2594 : UnaryInstruction(Ty, iType, S, InsertBefore) { in UnaryOperator()
2626 BinaryOperator::BinaryOperator(BinaryOps iType, Value *S1, Value *S2, Type *Ty, in BinaryOperator() argument
2628 : Instruction(Ty, iType, AllocMarker, InsertBefore) { in BinaryOperator()
/freebsd/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 …]