/external/chromium_org/third_party/sqlite/src/test/ |
D | tkt2332.test | 30 set ::iKey 1 38 db eval { INSERT INTO blobs VALUES($::iKey, zeroblob($Len)) } 43 SELECT length(v) FROM blobs WHERE k = $::iKey; 48 set ::fd [db incrblob blobs v $::iKey] 54 execsql { SELECT length(v) FROM blobs WHERE k = $::iKey; } 58 lindex [execsql {SELECT v FROM blobs WHERE k = $::iKey}] 0 61 incr ::iKey
|
/external/chromium_org/third_party/sqlite/src/src/ |
D | pcache1.c | 97 unsigned int iKey; /* Key value (page number) */ member 394 unsigned int h = pPage->iKey % nNew; in pcache1ResizeHash() 457 h = pPage->iKey % pCache->nHash; in pcache1RemoveFromHash() 497 if( pPage->iKey>=iLimit ){ in pcache1TruncateUnsafe() 682 static void *pcache1Fetch(sqlite3_pcache *p, unsigned int iKey, int createFlag){ in pcache1Fetch() argument 696 unsigned int h = iKey % pCache->nHash; in pcache1Fetch() 697 for(pPage=pCache->apHash[h]; pPage&&pPage->iKey!=iKey; pPage=pPage->pNext); in pcache1Fetch() 766 unsigned int h = iKey % pCache->nHash; in pcache1Fetch() 768 pPage->iKey = iKey; in pcache1Fetch() 778 if( pPage && iKey>pCache->iMaxKey ){ in pcache1Fetch() [all …]
|
D | wal.c | 937 int iKey; /* Hash key */ in walCleanupHash() local 939 for(iKey=walHash(aPgno[i]); aHash[iKey]; iKey=walNextHash(iKey)){ in walCleanupHash() 940 if( aHash[iKey]==i ) break; in walCleanupHash() 942 assert( aHash[iKey]==i ); in walCleanupHash() 965 int iKey; /* Hash table key */ in walIndexAppend() local 993 for(iKey=walHash(iPage); aHash[iKey]; iKey=walNextHash(iKey)){ in walIndexAppend() 997 aHash[iKey] = (ht_slot)idx; in walIndexAppend() 1018 for(iKey=walHash(aPgno[i]); aHash[iKey]; iKey=walNextHash(iKey)){ in walIndexAppend() 1019 if( aHash[iKey]==i ) break; in walIndexAppend() 1021 assert( aHash[iKey]==i ); in walIndexAppend() [all …]
|
D | fkey.c | 896 int iKey; in sqlite3FkRequired() local 897 for(iKey=0; iKey<pTab->nCol; iKey++){ in sqlite3FkRequired() 898 Column *pCol = &pTab->aCol[iKey]; in sqlite3FkRequired() 900 if( aChange[iKey]>=0 ) return 1; in sqlite3FkRequired() 901 if( iKey==pTab->iPKey && chngRowid ) return 1; in sqlite3FkRequired()
|
D | vdbe.c | 3269 i64 iKey; /* The rowid we are to seek to */ in sqlite3VdbeExec() local 3289 iKey = sqlite3VdbeIntValue(pIn3); in sqlite3VdbeExec() 3305 if( iKey==SMALLEST_INT64 && (pIn3->r<(double)iKey || pIn3->r>0) ){ in sqlite3VdbeExec() 3326 if( pIn3->r > (double)iKey ) iKey++; in sqlite3VdbeExec() 3330 if( pIn3->r < (double)iKey ) iKey--; in sqlite3VdbeExec() 3333 rc = sqlite3BtreeMovetoUnpacked(pC->pCursor, 0, (u64)iKey, 0, &res); in sqlite3VdbeExec() 3339 pC->lastRowid = iKey; in sqlite3VdbeExec() 3628 u64 iKey; in sqlite3VdbeExec() local 3640 iKey = pIn3->u.i; in sqlite3VdbeExec() 3641 rc = sqlite3BtreeMovetoUnpacked(pCrsr, 0, iKey, 0, &res); in sqlite3VdbeExec() [all …]
|
/external/clang/include/clang/Basic/ |
D | OnDiskHashTable.h | 290 const internal_key_type& iKey = InfoObj.GetInternalKey(eKey); 291 unsigned key_hash = InfoObj.ComputeHash(iKey); 324 if (!InfoPtr->EqualKey(X, iKey)) {
|
/external/antlr/antlr-3.4/runtime/C/include/ |
D | antlr3collections.h | 50 ANTLR3_INTKEY iKey; /**< used if type is ANTLR3_HASH_TYPE_INT */ member
|
/external/antlr/antlr-3.4/runtime/C/src/ |
D | antlr3collections.c | 302 if (entry->keybase.key.iKey == key) in antlr3HashRemoveI() 465 if (entry->keybase.key.iKey == key) in antlr3HashGetI() 553 if ((*newPointer)->keybase.key.iKey == key) in antlr3HashPutI() 579 entry->keybase.key.iKey = key; /* Record the key value */ in antlr3HashPutI()
|
/external/srec/srec/Recognizer/src/ |
D | RecognizerImpl.c | 2548 size_t iKey; in SR_RecognizerCreateResultImpl() local 2563 for (iKey=0; iKey<num_semanticKeys; ++iKey) in SR_RecognizerCreateResultImpl() 2566 … rc = semanticResult->getValue(semanticResult, semanticKeys[iKey], (LCHAR*) &semanticValue, &len); in SR_RecognizerCreateResultImpl() 2573 …rc = SR_EventLogToken_BASIC(impl->eventLog, impl->osi_log_level, semanticKeys[iKey], semanticValue… in SR_RecognizerCreateResultImpl()
|
/external/chromium_org/third_party/sqlite/amalgamation/ |
D | sqlite3.c | 35024 unsigned int iKey; /* Key value (page number) */ 35321 unsigned int h = pPage->iKey % nNew; 35384 h = pPage->iKey % pCache->nHash; 35424 if( pPage->iKey>=iLimit ){ 35609 static void *pcache1Fetch(sqlite3_pcache *p, unsigned int iKey, int createFlag){ 35623 unsigned int h = iKey % pCache->nHash; 35624 for(pPage=pCache->apHash[h]; pPage&&pPage->iKey!=iKey; pPage=pPage->pNext); 35693 unsigned int h = iKey % pCache->nHash; 35695 pPage->iKey = iKey; 35705 if( pPage && iKey>pCache->iMaxKey ){ [all …]
|
/external/sqlite/dist/orig/ |
D | sqlite3.c | 36941 unsigned int iKey; /* Key value (page number) */ 37247 unsigned int h = pPage->iKey % nNew; 37310 h = pPage->iKey % pCache->nHash; 37350 if( pPage->iKey>=iLimit ){ 37556 unsigned int iKey, 37572 unsigned int h = iKey % pCache->nHash; 37573 for(pPage=pCache->apHash[h]; pPage&&pPage->iKey!=iKey; pPage=pPage->pNext); 37647 unsigned int h = iKey % pCache->nHash; 37649 pPage->iKey = iKey; 37659 if( pPage && iKey>pCache->iMaxKey ){ [all …]
|
/external/sqlite/dist/ |
D | sqlite3.c | 36969 unsigned int iKey; /* Key value (page number) */ 37275 unsigned int h = pPage->iKey % nNew; 37338 h = pPage->iKey % pCache->nHash; 37378 if( pPage->iKey>=iLimit ){ 37584 unsigned int iKey, 37600 unsigned int h = iKey % pCache->nHash; 37601 for(pPage=pCache->apHash[h]; pPage&&pPage->iKey!=iKey; pPage=pPage->pNext); 37675 unsigned int h = iKey % pCache->nHash; 37677 pPage->iKey = iKey; 37687 if( pPage && iKey>pCache->iMaxKey ){ [all …]
|
/external/chromium_org/third_party/usb_ids/ |
D | usb.ids | 3827 1000 iKey 1000 Token 3828 1001 iKey 1200 Token 3829 1002 iKey Token 3830 1003 iKey Token 3831 1004 iKey Token 3832 1005 iKey Token 3833 1006 iKey Token 3834 1200 iKey 2000 Token 3835 1201 iKey Token 3836 1202 iKey 2032 Token [all …]
|