Lines Matching refs:ofCode
928 U32 const ofCode = FSE_peekSymbol(&seqState->stateOffb); /* <= maxOff, by table construction */ in ZSTD_decodeSequence() local
932 U32 const ofBits = ofCode; in ZSTD_decodeSequence()
949 if (!ofCode) in ZSTD_decodeSequence()
952 …offset = OF_base[ofCode] + BIT_readBitsFast(&seqState->DStream, ofBits); /* <= (ZSTD_WINDOWLOG_MA… in ZSTD_decodeSequence()
957 if (ofCode <= 1) { in ZSTD_decodeSequence()
1160 U32 const ofCode = FSE_peekSymbol(&seqState->stateOffb); /* <= maxOff, by table construction */ in ZSTD_decodeSequenceLong_generic() local
1164 U32 const ofBits = ofCode; in ZSTD_decodeSequenceLong_generic()
1181 if (!ofCode) in ZSTD_decodeSequenceLong_generic()
1186 …offset = OF_base[ofCode] + (BIT_readBitsFast(&seqState->DStream, ofBits - extraBits) << extraBits); in ZSTD_decodeSequenceLong_generic()
1192 …offset = OF_base[ofCode] + BIT_readBitsFast(&seqState->DStream, ofBits); /* <= (ZSTD_WINDOWLOG_MA… in ZSTD_decodeSequenceLong_generic()
1198 if (ofCode <= 1) { in ZSTD_decodeSequenceLong_generic()