Lines Matching refs:nFull
30977 int nFull; in mallocWithAlarm() local
30986 nFull = sqlite3GlobalConfig.m.xRoundup(n); in mallocWithAlarm()
30991 if( nUsed >= mem0.alarmThreshold - nFull ){ in mallocWithAlarm()
30993 sqlite3MallocAlarm(nFull); in mallocWithAlarm()
30996 if( nUsed >= mem0.hardLimit - nFull ){ in mallocWithAlarm()
31006 p = sqlite3GlobalConfig.m.xMalloc(nFull); in mallocWithAlarm()
31009 sqlite3MallocAlarm(nFull); in mallocWithAlarm()
31010 p = sqlite3GlobalConfig.m.xMalloc(nFull); in mallocWithAlarm()
31014 nFull = sqlite3MallocSize(p); in mallocWithAlarm()
31015 sqlite3StatusUp(SQLITE_STATUS_MEMORY_USED, nFull); in mallocWithAlarm()
53179 int nFull, /* Size of output buffer in bytes */
53200 zFull[nFull-1] = '\0';
53226 zDel = sqlite3MallocZero(nFull);
53233 nByte = osReadlink(zIn, zDel, nFull-1);
53240 if( nByte+n+1>nFull ){
53258 rc = mkFullPathname(zIn, zFull, nFull);
53282 sqlite3_snprintf(MIN(nFull, pVfs->mxPathname), zFull, "%s%c%s",
53285 sqlite3_snprintf(MIN(nFull, pVfs->mxPathname), zFull, "%s", zRelative);
53305 sqlite3_snprintf(MIN(nFull, pVfs->mxPathname), zFull, "%s%c%s",
53368 sqlite3_snprintf(MIN(nFull, pVfs->mxPathname), zFull, "%s", zOut);
53370 sqlite3_snprintf(MIN(nFull, pVfs->mxPathname), zFull, "%s", zOut+4);
53381 sqlite3_snprintf(MIN(nFull, pVfs->mxPathname), zFull, "%s", zOut+6);
53384 sqlite3_snprintf(MIN(nFull, pVfs->mxPathname), zFull, "%s", zOut);
53396 int nFull, /* Size of output buffer in bytes */
53403 rc = winFullPathnameNoMutex(pVfs, zRelative, nFull, zFull);