Lines Matching refs:nByte
304 int nByte; in test_malloc() local
311 if( Tcl_GetIntFromObj(interp, objv[1], &nByte) ) return TCL_ERROR; in test_malloc()
312 p = sqlite3_malloc((unsigned)nByte); in test_malloc()
329 int nByte; in test_realloc() local
336 if( Tcl_GetIntFromObj(interp, objv[2], &nByte) ) return TCL_ERROR; in test_realloc()
341 p = sqlite3_realloc(pPrior, (unsigned)nByte); in test_realloc()
738 int nByte; member
742 static void test_memdebug_callback(int nByte, int nFrame, void **aFrame){ in test_memdebug_callback() argument
767 pLog->nByte += nByte; in test_memdebug_callback()
843 apElem[1] = Tcl_NewIntObj(pLog->nByte); in test_memdebug_log()
1066 int nByte; /* Size of buffer to pass to sqlite3_config() */ in test_config_heap() local
1077 if( Tcl_GetIntFromObj(interp, aArg[0], &nByte) ) return TCL_ERROR; in test_config_heap()
1080 if( nByte==0 ){ in test_config_heap()
1085 zBuf = realloc(zBuf, nByte); in test_config_heap()
1086 rc = sqlite3_config(SQLITE_CONFIG_HEAP, zBuf, nByte, nMinAlloc); in test_config_heap()
1102 int nByte; /* Size to pass to sqlite3_config() */ in test_config_heap_size() local
1112 if( Tcl_GetIntFromObj(interp, aArg[0], &nByte) ) return TCL_ERROR; in test_config_heap_size()
1114 rc = sqlite3_config(SQLITE_CONFIG_WIN32_HEAPSIZE, nByte); in test_config_heap_size()