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

/freebsd-10-stable/crypto/heimdal/lib/sqlite/
H A Dsqlite3.h1216 ** xRealloc is always a value returned by a prior call to xRoundup.
1222 ** The xRoundup method returns what would be the allocated size of
1227 ** or [sqlite3_realloc()] first calls xRoundup. If xRoundup returns 0,
1257 int (*xRoundup)(int); /* Round up request size to allocation size */ member in struct:sqlite3_mem_methods
H A Dsqlite3.c1769 ** xRealloc is always a value returned by a prior call to xRoundup.
1775 ** The xRoundup method returns what would be the allocated size of
1780 ** or [sqlite3_realloc()] first calls xRoundup. If xRoundup returns 0,
1810 int (*xRoundup)(int); /* Round up request size to allocation size */ member in struct:sqlite3_mem_methods
13151 nByte += sqlite3GlobalConfig.m.xRoundup(sizeof(HashElem)) * (
18362 nFull = sqlite3GlobalConfig.m.xRoundup(n);
18623 ** xRoundup. */
18624 nNew = sqlite3GlobalConfig.m.xRoundup(nBytes);
[all...]
/freebsd-10-stable/contrib/sqlite3/
H A Dsqlite3.h1478 ** xRealloc is always a value returned by a prior call to xRoundup.
1484 ** The xRoundup method returns what would be the allocated size of
1489 ** or [sqlite3_realloc()] first calls xRoundup. If xRoundup returns 0,
1519 int (*xRoundup)(int); /* Round up request size to allocation size */ member in struct:sqlite3_mem_methods
H A Dsqlite3.c1738 ** xRealloc is always a value returned by a prior call to xRoundup.
1744 ** The xRoundup method returns what would be the allocated size of
1749 ** or [sqlite3_realloc()] first calls xRoundup. If xRoundup returns 0,
1779 int (*xRoundup)(int); /* Round up request size to allocation size */ member in struct:sqlite3_mem_methods
18429 nByte += sqlite3GlobalConfig.m.xRoundup(sizeof(HashElem)) * (
24056 nFull = sqlite3GlobalConfig.m.xRoundup(n);
24346 ** xRoundup. */
24347 nNew = sqlite3GlobalConfig.m.xRoundup((int)nBytes);
[all...]

Completed in 999 milliseconds