Searched refs:fhdByte (Results 1 – 2 of 2) sorted by relevance
341 { BYTE const fhdByte = ip[minInputSize-1]; in ZSTD_getFrameHeader_internal() local343 U32 const dictIDSizeCode = fhdByte&3; in ZSTD_getFrameHeader_internal()344 U32 const checksumFlag = (fhdByte>>2)&1; in ZSTD_getFrameHeader_internal()345 U32 const singleSegment = (fhdByte>>5)&1; in ZSTD_getFrameHeader_internal()346 U32 const fcsID = fhdByte>>6; in ZSTD_getFrameHeader_internal()350 if ((fhdByte & 0x08) != 0) in ZSTD_getFrameHeader_internal()
3168 { BYTE const fhdByte = ip[4]; in ZSTDv07_getFrameParams() local3170 U32 const dictIDSizeCode = fhdByte&3; in ZSTDv07_getFrameParams()3171 U32 const checksumFlag = (fhdByte>>2)&1; in ZSTDv07_getFrameParams()3172 U32 const directMode = (fhdByte>>5)&1; in ZSTDv07_getFrameParams()3173 U32 const fcsID = fhdByte>>6; in ZSTDv07_getFrameParams()3178 …if ((fhdByte & 0x08) != 0) return ERROR(frameParameter_unsupported); /* reserved bits, which mus… in ZSTDv07_getFrameParams()