Lines Matching defs:xRoundup
1833 ** xRealloc is always a value returned by a prior call to xRoundup.
1839 ** The xRoundup method returns what would be the allocated size of
1844 ** or [sqlite3_realloc()] first calls xRoundup. If xRoundup returns 0,
1874 int (*xRoundup)(int); /* Round up request size to allocation size */
13460 nByte += sqlite3GlobalConfig.m.xRoundup(sizeof(HashElem)) * (
18851 nFull = sqlite3GlobalConfig.m.xRoundup(n);
19112 ** xRoundup. */
19113 nNew = sqlite3GlobalConfig.m.xRoundup(nBytes);