Lines Matching defs:xRoundup
2044 ** xRealloc is always a value returned by a prior call to xRoundup.
2050 ** The xRoundup method returns what would be the allocated size of
2055 ** or [sqlite3_realloc()] first calls xRoundup. If xRoundup returns 0,
2085 int (*xRoundup)(int); /* Round up request size to allocation size */
24119 nByte += sqlite3GlobalConfig.m.xRoundup(sizeof(HashElem)) * (
30467 /* In Firefox (circa 2017-02-08), xRoundup() is remapped to an internal
30471 ** following xRoundup() call. */
30472 nFull = sqlite3GlobalConfig.m.xRoundup(n);
30758 ** xRoundup. */
30759 nNew = sqlite3GlobalConfig.m.xRoundup((int)nBytes);