Searched refs:newListSize (Results 1 - 1 of 1) sorted by relevance

/external/lz4/programs/
H A Dutil.h323 ptrdiff_t newListSize = (*bufEnd - *bufStart) + LIST_SIZE_INCREASE; local
324 *bufStart = (char*)UTIL_realloc(*bufStart, newListSize);
325 *bufEnd = *bufStart + newListSize;
377 ptrdiff_t newListSize = (*bufEnd - *bufStart) + LIST_SIZE_INCREASE; local
378 *bufStart = (char*)UTIL_realloc(*bufStart, newListSize);
379 *bufEnd = *bufStart + newListSize;
432 ptrdiff_t newListSize = (bufend - buf) + LIST_SIZE_INCREASE; local
433 buf = (char*)UTIL_realloc(buf, newListSize);
434 bufend = buf + newListSize;

Completed in 124 milliseconds