Home
last modified time | relevance | path

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

/freebsd/contrib/sqlite3/
H A Dsqlite3.c29600 int iBin; /* Index into mem5.aiFreelist[] */ in memsys5MallocUnsafe() local
29626 for(iBin=iLogsize; iBin<=LOGMAX && mem5.aiFreelist[iBin]<0; iBin++){} in memsys5MallocUnsafe()
29627 if( iBin>LOGMAX ){ in memsys5MallocUnsafe()
29632 i = mem5.aiFreelist[iBin]; in memsys5MallocUnsafe()
29633 memsys5Unlink(i, iBin); in memsys5MallocUnsafe()
29634 while( iBin>iLogsize ){ in memsys5MallocUnsafe()
29637 iBin--; in memsys5MallocUnsafe()
29638 newSize = 1 << iBin; in memsys5MallocUnsafe()
29639 mem5.aCtrl[i+newSize] = CTRL_FREE | iBin; in memsys5MallocUnsafe()
29640 memsys5Link(i+newSize, iBin); in memsys5MallocUnsafe()