Searched refs:seqPool (Results 1 – 1 of 1) sorted by relevance
288 static size_t ZSTDMT_sizeof_seqPool(ZSTDMT_seqPool* seqPool) in ZSTDMT_sizeof_seqPool() argument290 return ZSTDMT_sizeof_bufferPool(seqPool); in ZSTDMT_sizeof_seqPool()309 static RawSeqStore_t ZSTDMT_getSeq(ZSTDMT_seqPool* seqPool) in ZSTDMT_getSeq() argument311 if (seqPool->bufferSize == 0) { in ZSTDMT_getSeq()314 return bufferToSeq(ZSTDMT_getBuffer(seqPool)); in ZSTDMT_getSeq()318 static RawSeqStore_t ZSTDMT_resizeSeq(ZSTDMT_seqPool* seqPool, RawSeqStore_t seq) in ZSTDMT_resizeSeq() argument320 return bufferToSeq(ZSTDMT_resizeBuffer(seqPool, seqToBuffer(seq))); in ZSTDMT_resizeSeq()324 static void ZSTDMT_releaseSeq(ZSTDMT_seqPool* seqPool, RawSeqStore_t seq) in ZSTDMT_releaseSeq() argument326 ZSTDMT_releaseBuffer(seqPool, seqToBuffer(seq)); in ZSTDMT_releaseSeq()329 static void ZSTDMT_setNbSeq(ZSTDMT_seqPool* const seqPool, size_t const nbSeq) in ZSTDMT_setNbSeq() argument[all …]