Home
last modified time | relevance | path

Searched refs:ofCode (Results 1 – 2 of 2) sorted by relevance

/external/u-boot/lib/zstd/
Ddecompress.c927 U32 const ofCode = FSE_peekSymbol(&seqState->stateOffb); /* <= maxOff, by table construction */ in ZSTD_decodeSequence() local
931 U32 const ofBits = ofCode; in ZSTD_decodeSequence()
948 if (!ofCode) in ZSTD_decodeSequence()
951 …offset = OF_base[ofCode] + BIT_readBitsFast(&seqState->DStream, ofBits); /* <= (ZSTD_WINDOWLOG_MA… in ZSTD_decodeSequence()
956 if (ofCode <= 1) { in ZSTD_decodeSequence()
1159 U32 const ofCode = FSE_peekSymbol(&seqState->stateOffb); /* <= maxOff, by table construction */ in ZSTD_decodeSequenceLong_generic() local
1163 U32 const ofBits = ofCode; in ZSTD_decodeSequenceLong_generic()
1180 if (!ofCode) in ZSTD_decodeSequenceLong_generic()
1185 …offset = OF_base[ofCode] + (BIT_readBitsFast(&seqState->DStream, ofBits - extraBits) << extraBits); in ZSTD_decodeSequenceLong_generic()
1191 …offset = OF_base[ofCode] + BIT_readBitsFast(&seqState->DStream, ofBits); /* <= (ZSTD_WINDOWLOG_MA… in ZSTD_decodeSequenceLong_generic()
[all …]
Dzstd_internal.h175 BYTE *ofCode; member