Home
last modified time | relevance | path

Searched refs:LIST_SIZE_INCREASE (Results 1 – 2 of 2) sorted by relevance

/external/lz4/programs/
Dutil.h123 #define LIST_SIZE_INCREASE (8*1024) macro
434 ptrdiff_t newListSize = (*bufEnd - *bufStart) + LIST_SIZE_INCREASE; in UTIL_prepareFileList()
490 ptrdiff_t newListSize = (*bufEnd - *bufStart) + LIST_SIZE_INCREASE; in UTIL_prepareFileList()
537 char* buf = (char*)malloc(LIST_SIZE_INCREASE); in UTIL_createFileList()
538 size_t bufSize = LIST_SIZE_INCREASE; in UTIL_createFileList()
547 while (pos + len >= bufSize) bufSize += LIST_SIZE_INCREASE; in UTIL_createFileList()
/external/zstd/programs/
Dutil.c116 #define LIST_SIZE_INCREASE (8*1024) macro
552 ptrdiff_t const newListSize = (*bufEnd - *bufStart) + LIST_SIZE_INCREASE; in UTIL_prepareFileList()
613 ptrdiff_t newListSize = (*bufEnd - *bufStart) + LIST_SIZE_INCREASE; in UTIL_prepareFileList()
960 char* buf = (char*)malloc(LIST_SIZE_INCREASE); in UTIL_createExpandedFNT()
961 char* bufend = buf + LIST_SIZE_INCREASE; in UTIL_createExpandedFNT()
970 ptrdiff_t newListSize = (bufend - buf) + LIST_SIZE_INCREASE; in UTIL_createExpandedFNT()