Lines Matching refs:totalSize
11450 int totalSize; in sqlite3_malloc() local
11465 totalSize = nReserve + sizeof(*pHdr) + sizeof(int) + in sqlite3_malloc()
11470 p = malloc(totalSize); in sqlite3_malloc()
11473 p = malloc(totalSize); in sqlite3_malloc()
34687 int totalSize; /* Total size of all cells */ in assemblePage() local
34695 totalSize = 0; in assemblePage()
34697 totalSize += aSize[i]; in assemblePage()
34699 assert( totalSize+2*nCell<=pPage->nFree ); in assemblePage()
34706 cellbody = allocateSpace(pPage, totalSize); in assemblePage()
81839 int totalSize = 0; in tokenizeString() local
81848 totalSize += n+1; in tokenizeString()
81852 azToken = (char**)sqlite3_malloc( nToken*sizeof(char*) + totalSize ); in tokenizeString()