HomeSort by: relevance | last modified time | path
    Searched refs:fhdByte (Results 1 - 2 of 2) sorted by relevancy

  /src/external/bsd/zstd/dist/lib/decompress/
zstd_decompress.c 502 { BYTE const fhdByte = ip[minInputSize-1];
504 U32 const dictIDSizeCode = fhdByte&3;
505 U32 const checksumFlag = (fhdByte>>2)&1;
506 U32 const singleSegment = (fhdByte>>5)&1;
507 U32 const fcsID = fhdByte>>6;
511 RETURN_ERROR_IF((fhdByte & 0x08) != 0, frameParameter_unsupported,
  /src/external/bsd/zstd/dist/lib/legacy/
zstd_v07.c 3115 { BYTE const fhdByte = ip[4];
3117 U32 const dictIDSizeCode = fhdByte&3;
3118 U32 const checksumFlag = (fhdByte>>2)&1;
3119 U32 const directMode = (fhdByte>>5)&1;
3120 U32 const fcsID = fhdByte>>6;
3125 if ((fhdByte & 0x08) != 0) /* reserved bits, which must be zero */

Completed in 23 milliseconds