HomeSort by: relevance | last modified time | path
    Searched defs:seqStore (Results 1 - 4 of 4) sorted by relevancy

  /src/external/bsd/zstd/dist/lib/compress/
zstd_opt.c 908 rawSeqStore_t seqStore; /* External match candidates store for this block */
950 if (optLdm->seqStore.size == 0 || optLdm->seqStore.pos >= optLdm->seqStore.size) {
957 currSeq = optLdm->seqStore.seq[optLdm->seqStore.pos];
958 assert(optLdm->seqStore.posInSequence <= currSeq.litLength + currSeq.matchLength);
960 literalsBytesRemaining = (optLdm->seqStore.posInSequence < currSeq.litLength) ?
961 currSeq.litLength - (U32)optLdm->seqStore.posInSequence :
964 currSeq.matchLength - ((U32)optLdm->seqStore.posInSequence - currSeq.litLength)
    [all...]
zstd_compress_internal.h 429 seqStore_t seqStore; /* sequences storage ptrs */
512 ZSTD_matchState_t* bs, seqStore_t* seqStore, U32 rep[ZSTD_REP_NUM],
533 * because it's the format it's stored in seqStore->sequences */
  /src/external/bsd/zstd/dist/tests/
decodecorpus.c 630 static inline void initSeqStore(seqStore_t *seqStore) {
631 seqStore->maxNbSeq = MAX_NB_SEQ;
632 seqStore->maxNbLit = ZSTD_BLOCKSIZE_MAX;
633 seqStore->sequencesStart = SEQUENCE_BUFFER;
634 seqStore->litStart = SEQUENCE_LITERAL_BUFFER;
635 seqStore->llCode = SEQUENCE_LLCODE;
636 seqStore->mlCode = SEQUENCE_MLCODE;
637 seqStore->ofCode = SEQUENCE_OFCODE;
639 ZSTD_resetSeqStore(seqStore);
644 generateSequences(U32* seed, frame_t* frame, seqStore_t* seqStore,
    [all...]
  /src/external/bsd/zstd/dist/lib/legacy/
zstd_v01.c 1394 seqStore_t seqStore;

Completed in 31 milliseconds