Lines Matching refs:xRoundup
2580 ** xRealloc is always a value returned by a prior call to xRoundup.
2586 ** The xRoundup method returns what would be the allocated size of
2591 ** or [sqlite3_realloc()] first calls xRoundup. If xRoundup returns 0,
2621 int (*xRoundup)(int); /* Round up request size to allocation size */
19464 nByte += sqlite3GlobalConfig.m.xRoundup(sizeof(HashElem)) * (
25326 /* In Firefox (circa 2017-02-08), xRoundup() is remapped to an internal
25330 ** following xRoundup() call. */
25331 nFull = sqlite3GlobalConfig.m.xRoundup(n);
25533 ** xRoundup. */
25534 nNew = sqlite3GlobalConfig.m.xRoundup((int)nBytes);