Lines Matching refs:firstByte
203 Byte firstByte, mask;
207 SZ_READ_BYTE(firstByte);
208 if ((firstByte & 0x80) == 0)
210 *value = firstByte;
214 if ((firstByte & 0x40) == 0)
216 *value = (((UInt32)firstByte & 0x3F) << 8) | v;
225 if ((firstByte & mask) == 0)
227 UInt64 highPart = firstByte & (mask - 1);
243 Byte firstByte;
252 firstByte = *data++;
254 if ((firstByte & 0x80) == 0)
256 *values++ = firstByte;
262 if ((firstByte & 0x40) == 0)
264 *values++ = (((UInt32)firstByte & 0x3F) << 8) | v;
273 if ((firstByte & mask) == 0)
275 UInt64 highPart = firstByte & (mask - 1);
292 Byte firstByte;
296 firstByte = *sd->Data;
297 if ((firstByte & 0x80) == 0)
299 *value = firstByte;
637 Byte firstByte, mask;
639 SZ_READ_BYTE_2(firstByte);
640 if ((firstByte & 0x80) == 0)
642 if ((firstByte & 0x40) == 0)
651 for (i = 2; i < 8 && (firstByte & mask) != 0; i++)