Lines Matching defs:firstByte
207 Byte firstByte, mask;
211 SZ_READ_BYTE(firstByte)
212 if ((firstByte & 0x80) == 0)
214 *value = firstByte;
218 if ((firstByte & 0x40) == 0)
220 *value = (((UInt32)firstByte & 0x3F) << 8) | v;
229 if ((firstByte & mask) == 0)
231 const UInt64 highPart = (unsigned)firstByte & (unsigned)(mask - 1);
245 Byte firstByte;
249 firstByte = *sd->Data;
250 if ((firstByte & 0x80) == 0)
252 *value = firstByte;
617 Byte firstByte, mask;
619 SZ_READ_BYTE_2(firstByte)
620 if ((firstByte & 0x80) == 0)
622 if ((firstByte & 0x40) == 0)
631 for (i = 2; i < 8 && (firstByte & mask) != 0; i++)