OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:iKey
(Results
1 - 6
of
6
) sorted by null
/external/chromium_org/third_party/sqlite/src/src/
fkey.c
[
all
...]
pcache1.c
97
unsigned int
iKey
; /* Key value (page number) */
394
unsigned int h = pPage->
iKey
% nNew;
457
h = pPage->
iKey
% pCache->nHash;
497
if( pPage->
iKey
>=iLimit ){
682
static void *pcache1Fetch(sqlite3_pcache *p, unsigned int
iKey
, int createFlag){
696
unsigned int h =
iKey
% pCache->nHash;
697
for(pPage=pCache->apHash[h]; pPage&&pPage->
iKey
!=
iKey
; pPage=pPage->pNext);
766
unsigned int h =
iKey
% pCache->nHash;
768
pPage->
iKey
= iKey
[
all
...]
vdbe.c
[
all
...]
wal.c
196
** To look for page P in the hash table, first compute a hash
iKey
on
199
**
iKey
= (P * 383) % HASHTABLE_NSLOT
201
** Then start scanning entries of the hash table, starting with
iKey
204
** be at index iUnused. (iUnused might be less than
iKey
if there was
207
** iMax be the value between
iKey
and iUnused, closest to iUnused,
[
all
...]
/external/antlr/antlr-3.4/runtime/C/include/
antlr3collections.h
50
ANTLR3_INTKEY
iKey
; /**< used if type is ANTLR3_HASH_TYPE_INT */
/external/chromium_org/third_party/sqlite/amalgamation/
sqlite3.c
[
all
...]
Completed in 524 milliseconds