Searched refs:fhdByte (Results 1 – 2 of 2) sorted by relevance
281 { BYTE const fhdByte = ip[minInputSize-1]; in ZSTD_getFrameHeader_advanced() local283 U32 const dictIDSizeCode = fhdByte&3; in ZSTD_getFrameHeader_advanced()284 U32 const checksumFlag = (fhdByte>>2)&1; in ZSTD_getFrameHeader_advanced()285 U32 const singleSegment = (fhdByte>>5)&1; in ZSTD_getFrameHeader_advanced()286 U32 const fcsID = fhdByte>>6; in ZSTD_getFrameHeader_advanced()290 RETURN_ERROR_IF((fhdByte & 0x08) != 0, frameParameter_unsupported, in ZSTD_getFrameHeader_advanced()
3174 { BYTE const fhdByte = ip[4]; in ZSTDv07_getFrameParams() local3176 U32 const dictIDSizeCode = fhdByte&3; in ZSTDv07_getFrameParams()3177 U32 const checksumFlag = (fhdByte>>2)&1; in ZSTDv07_getFrameParams()3178 U32 const directMode = (fhdByte>>5)&1; in ZSTDv07_getFrameParams()3179 U32 const fcsID = fhdByte>>6; in ZSTDv07_getFrameParams()3184 if ((fhdByte & 0x08) != 0) /* reserved bits, which must be zero */ in ZSTDv07_getFrameParams()