Home
last modified time | relevance | path

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

/netbsd-src/external/bsd/openldap/dist/servers/slapd/slapi/
H A Dplugin.c658 int iType = -1; in slapi_int_read_config() local
681 iType = SLAPI_PLUGIN_PREOPERATION; in slapi_int_read_config()
683 iType = SLAPI_PLUGIN_POSTOPERATION; in slapi_int_read_config()
685 iType = SLAPI_PLUGIN_EXTENDEDOP; in slapi_int_read_config()
687 iType = SLAPI_PLUGIN_OBJECT; in slapi_int_read_config()
696 if ( iType == SLAPI_PLUGIN_PREOPERATION || in slapi_int_read_config()
697 iType == SLAPI_PLUGIN_EXTENDEDOP || in slapi_int_read_config()
698 iType == SLAPI_PLUGIN_POSTOPERATION || in slapi_int_read_config()
699 iType == SLAPI_PLUGIN_OBJECT ) { in slapi_int_read_config()
703 pPlugin = plugin_pblock_new( iType, numPluginArgc, argv ); in slapi_int_read_config()
[all …]
/netbsd-src/external/bsd/openldap/dist/contrib/slapd-modules/ppm/
H A Dppm.h81 valueType iType; member
102 valueType iType; member
H A Dppm.c163 fileConf[*numParam].iType = valType; in storeEntry()
276 storeEntry(word, value, allowedParameters[nParam].iType, in read_config_attr()
347 storeEntry(word, value, allowedParameters[nParam].iType, in read_config_file()
/netbsd-src/sys/arch/sh3/include/
H A Dsh_opcode.h68 } iType; member
138 } iType; member
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/IR/
H A DInstrTypes.h59 UnaryInstruction(Type *Ty, unsigned iType, Value *V,
61 : Instruction(Ty, iType, &Op<0>(), 1, IB) {
64 UnaryInstruction(Type *Ty, unsigned iType, Value *V, BasicBlock *IAE) in UnaryInstruction() argument
65 : Instruction(Ty, iType, &Op<0>(), 1, IAE) { in UnaryInstruction()
107 UnaryOperator(UnaryOps iType, Value *S, Type *Ty,
109 UnaryOperator(UnaryOps iType, Value *S, Type *Ty,
194 BinaryOperator(BinaryOps iType, Value *S1, Value *S2, Type *Ty,
196 BinaryOperator(BinaryOps iType, Value *S1, Value *S2, Type *Ty,
435 CastInst(Type *Ty, unsigned iType, Value *S,
437 : UnaryInstruction(Ty, iType, S, InsertBefore) {
[all …]
H A DInstruction.h843 Instruction(Type *Ty, unsigned iType, Use *Ops, unsigned NumOps,
845 Instruction(Type *Ty, unsigned iType, Use *Ops, unsigned NumOps,
/netbsd-src/external/apache2/llvm/dist/llvm/lib/IR/
H A DInstructions.cpp2403 UnaryOperator::UnaryOperator(UnaryOps iType, Value *S, in UnaryOperator() argument
2406 : UnaryInstruction(Ty, iType, S, InsertBefore) { in UnaryOperator()
2412 UnaryOperator::UnaryOperator(UnaryOps iType, Value *S, in UnaryOperator() argument
2415 : UnaryInstruction(Ty, iType, S, InsertAtEnd) { in UnaryOperator()
2456 BinaryOperator::BinaryOperator(BinaryOps iType, Value *S1, Value *S2, in BinaryOperator() argument
2459 : Instruction(Ty, iType, in BinaryOperator()
2469 BinaryOperator::BinaryOperator(BinaryOps iType, Value *S1, Value *S2, in BinaryOperator() argument
2472 : Instruction(Ty, iType, in BinaryOperator()
/netbsd-src/external/gpl3/gcc/dist/libphobos/libdruntime/core/sys/windows/
H A Dwingdi.d2408 DWORD iType;
3298 DWORD iType = EMR_HEADER;
3331 DWORD iType;
3394 DWORD iType;
/netbsd-src/external/public-domain/sqlite/dist/
H A Dshell.c14912 sqlite3_int64 iType; in dbdataNext() local
14917 pCsr->pHdrPtr += dbdataGetVarintU32(pCsr->pHdrPtr, &iType); in dbdataNext()
14918 szField = dbdataValueBytes(iType); in dbdataNext()
15134 sqlite3_int64 iType; in dbdataColumn() local
15135 dbdataGetVarintU32(pCsr->pHdrPtr, &iType); in dbdataColumn()
15137 ctx, pCsr->enc, iType, pCsr->pPtr, in dbdataColumn()
H A Dsqlite3.c28519 int iType; member
28555 static sqlite3_mutex *checkMutexAlloc(int iType){ in checkMutexAlloc() argument
28564 if( iType<2 ){ in checkMutexAlloc()
28567 p->iType = iType; in checkMutexAlloc()
28570 if( iType-2>=ArraySize(staticMutexes) ){ in checkMutexAlloc()
28575 p = &staticMutexes[iType-2]; in checkMutexAlloc()
28579 p->mutex = pGlobalMutexMethods->xMutexAlloc(iType); in checkMutexAlloc()
28581 if( iType<2 ){ in checkMutexAlloc()
28600 if( ((CheckMutex*)p)->iType<2 ) in checkMutexFree()
28619 if( pCheck->iType==SQLITE_MUTEX_WARNONCONTENTION ){ in checkMutexEnter()
[all …]