Lines Matching refs:ddictPtrTable
98 while (hashSet->ddictPtrTable[idx] != NULL) { in ZSTD_DDictHashSet_emplaceDDict()
100 if (ZSTD_getDictID_fromDDict(hashSet->ddictPtrTable[idx]) == dictID) { in ZSTD_DDictHashSet_emplaceDDict()
102 hashSet->ddictPtrTable[idx] = ddict; in ZSTD_DDictHashSet_emplaceDDict()
109 hashSet->ddictPtrTable[idx] = ddict; in ZSTD_DDictHashSet_emplaceDDict()
121 const ZSTD_DDict** oldTable = hashSet->ddictPtrTable; in ZSTD_DDictHashSet_expand()
127 hashSet->ddictPtrTable = newTable; in ZSTD_DDictHashSet_expand()
148 size_t currDictID = ZSTD_getDictID_fromDDict(hashSet->ddictPtrTable[idx]); in ZSTD_DDictHashSet_getDDict()
158 return hashSet->ddictPtrTable[idx]; in ZSTD_DDictHashSet_getDDict()
170 …ret->ddictPtrTable = (const ZSTD_DDict**)ZSTD_customCalloc(DDICT_HASHSET_TABLE_BASE_SIZE * sizeof(… in ZSTD_createDDictHashSet()
171 if (!ret->ddictPtrTable) { in ZSTD_createDDictHashSet()
185 if (hashSet && hashSet->ddictPtrTable) { in ZSTD_freeDDictHashSet()
186 ZSTD_customFree((void*)hashSet->ddictPtrTable, customMem); in ZSTD_freeDDictHashSet()