Lines Matching refs:_1BIT
241 #define _1BIT 0x01
760 + ((cctxPtr->prefs.frameInfo.blockMode & _1BIT ) << 5)
761 + ((cctxPtr->prefs.frameInfo.blockChecksumFlag & _1BIT ) << 4)
763 + ((cctxPtr->prefs.frameInfo.contentChecksumFlag & _1BIT ) << 2)
1327 blockChecksumFlag = (FLG>>4) & _1BIT;
1328 blockMode = (FLG>>5) & _1BIT;
1329 contentSizeFlag = (FLG>>3) & _1BIT;
1330 contentChecksumFlag = (FLG>>2) & _1BIT;
1331 dictIDFlag = FLG & _1BIT;
1333 if (((FLG>>1)&_1BIT) != 0) RETURN_ERROR(reservedFlag_set); /* Reserved bit */
1353 if (((BD>>7)&_1BIT) != 0) RETURN_ERROR(reservedFlag_set); /* Reserved bit */
1407 U32 const contentSizeFlag = (FLG>>3) & _1BIT;
1408 U32 const dictIDFlag = FLG & _1BIT;