Searched refs:newTableSize (Results 1 – 3 of 3) sorted by relevance
| /freebsd/contrib/llvm-project/lld/COFF/ |
| H A D | DebugTypes.cpp | 945 void init(uint32_t newTableSize); 1017 void GHashTable::init(uint32_t newTableSize) { in init() argument 1018 table = new GHashCell[newTableSize]; in init() 1019 memset(table, 0, newTableSize * sizeof(GHashCell)); in init() 1020 tableSize = newTableSize; in init()
|
| /freebsd/sys/contrib/openzfs/module/zstd/lib/decompress/ |
| H A D | zstd_decompress.c | 133 size_t newTableSize = hashSet->ddictPtrTableSize * DDICT_HASHSET_RESIZE_FACTOR; in ZSTD_DDictHashSet_expand() local 134 …** newTable = (const ZSTD_DDict**)ZSTD_customCalloc(sizeof(ZSTD_DDict*) * newTableSize, customMem); in ZSTD_DDictHashSet_expand() 139 …DEBUGLOG(4, "Expanding DDict hash table! Old size: %zu new size: %zu", oldTableSize, newTableSize); in ZSTD_DDictHashSet_expand() 142 hashSet->ddictPtrTableSize = newTableSize; in ZSTD_DDictHashSet_expand()
|
| /freebsd/sys/contrib/zstd/lib/decompress/ |
| H A D | zstd_decompress.c | 132 size_t newTableSize = hashSet->ddictPtrTableSize * DDICT_HASHSET_RESIZE_FACTOR; in ZSTD_DDictHashSet_expand() local 133 …** newTable = (const ZSTD_DDict**)ZSTD_customCalloc(sizeof(ZSTD_DDict*) * newTableSize, customMem); in ZSTD_DDictHashSet_expand() 138 …DEBUGLOG(4, "Expanding DDict hash table! Old size: %zu new size: %zu", oldTableSize, newTableSize); in ZSTD_DDictHashSet_expand() 141 hashSet->ddictPtrTableSize = newTableSize; in ZSTD_DDictHashSet_expand()
|