Home | History | Annotate | Download | only in include

Lines Matching defs:byte

50    Note: The result is an int instead of a pointer to the next byte to be
60 unsigned char byte;
67 byte = *p++;
68 result |= ((uint64_t) (byte & 0x7f)) << shift;
69 if ((byte & 0x80) == 0)
83 Note: The result is an int instead of a pointer to the next byte to be
93 unsigned char byte;
100 byte = *p++;
101 result |= ((uint64_t) (byte & 0x7f)) << shift;
103 if ((byte & 0x80) == 0)
106 if (shift < (sizeof (*r) * 8) && (byte & 0x40) != 0)
116 Note: The result is an int instead of a pointer to the next byte to be
123 unsigned char byte;
130 byte = *p++;
131 if ((byte & 0x80) == 0)