Searched refs:xRoundup (Results 1 - 4 of 4) sorted by relevance

/external/sqlite/dist/orig/
H A Dsqlite3.h1428 ** xRealloc is always a value returned by a prior call to xRoundup.
1434 ** The xRoundup method returns what would be the allocated size of
1439 ** or [sqlite3_realloc()] first calls xRoundup. If xRoundup returns 0,
1469 int (*xRoundup)(int); /* Round up request size to allocation size */ member in struct:sqlite3_mem_methods
H A Dsqlite3.c1635 ** xRealloc is always a value returned by a prior call to xRoundup.
1641 ** The xRoundup method returns what would be the allocated size of
1646 ** or [sqlite3_realloc()] first calls xRoundup. If xRoundup returns 0,
1676 int (*xRoundup)(int); /* Round up request size to allocation size */ member in struct:sqlite3_mem_methods
15231 nByte += sqlite3GlobalConfig.m.xRoundup(sizeof(HashElem)) * (
20790 nFull = sqlite3GlobalConfig.m.xRoundup(n);
21078 ** xRoundup. */
21079 nNew = sqlite3GlobalConfig.m.xRoundup((int)nBytes);
[all...]
/external/sqlite/dist/
H A Dsqlite3.h1428 ** xRealloc is always a value returned by a prior call to xRoundup.
1434 ** The xRoundup method returns what would be the allocated size of
1439 ** or [sqlite3_realloc()] first calls xRoundup. If xRoundup returns 0,
1469 int (*xRoundup)(int); /* Round up request size to allocation size */ member in struct:sqlite3_mem_methods
H A Dsqlite3.c1635 ** xRealloc is always a value returned by a prior call to xRoundup.
1641 ** The xRoundup method returns what would be the allocated size of
1646 ** or [sqlite3_realloc()] first calls xRoundup. If xRoundup returns 0,
1676 int (*xRoundup)(int); /* Round up request size to allocation size */ member in struct:sqlite3_mem_methods
15231 nByte += sqlite3GlobalConfig.m.xRoundup(sizeof(HashElem)) * (
20790 nFull = sqlite3GlobalConfig.m.xRoundup(n);
21078 ** xRoundup. */
21079 nNew = sqlite3GlobalConfig.m.xRoundup((int)nBytes);
[all...]

Completed in 477 milliseconds