Lines Matching refs:ddictPtrTable
104 while (hashSet->ddictPtrTable[idx] != NULL) { in ZSTD_DDictHashSet_emplaceDDict()
106 if (ZSTD_getDictID_fromDDict(hashSet->ddictPtrTable[idx]) == dictID) { in ZSTD_DDictHashSet_emplaceDDict()
108 hashSet->ddictPtrTable[idx] = ddict; in ZSTD_DDictHashSet_emplaceDDict()
115 hashSet->ddictPtrTable[idx] = ddict; in ZSTD_DDictHashSet_emplaceDDict()
127 const ZSTD_DDict** oldTable = hashSet->ddictPtrTable; in ZSTD_DDictHashSet_expand()
133 hashSet->ddictPtrTable = newTable; in ZSTD_DDictHashSet_expand()
154 size_t currDictID = ZSTD_getDictID_fromDDict(hashSet->ddictPtrTable[idx]); in ZSTD_DDictHashSet_getDDict()
164 return hashSet->ddictPtrTable[idx]; in ZSTD_DDictHashSet_getDDict()
176 …ret->ddictPtrTable = (const ZSTD_DDict**)ZSTD_customCalloc(DDICT_HASHSET_TABLE_BASE_SIZE * sizeof(… in ZSTD_createDDictHashSet()
177 if (!ret->ddictPtrTable) { in ZSTD_createDDictHashSet()
191 if (hashSet && hashSet->ddictPtrTable) { in ZSTD_freeDDictHashSet()
192 ZSTD_customFree((void*)hashSet->ddictPtrTable, customMem); in ZSTD_freeDDictHashSet()