Lines Matching defs:byte
4256 * (addressing each byte low to high). */
5750 * calls to the decoder. The value is 14: a 5 byte unknown tag plus ten-byte
5964 * All instructions have the opcode in the low byte.
6260 uint64_t byte = 0xff;
6261 return (val & (byte << 56) >> 56)
6262 | (val & (byte << 48) >> 40)
6263 | (val & (byte << 40) >> 24)
6264 | (val & (byte << 32) >> 8)
6265 | (val & (byte << 24) << 8)
6266 | (val & (byte << 16) << 24)
6267 | (val & (byte << 8) << 40)
6268 | (val & (byte << 0) << 56);
6314 /* Common case: one-byte varint. */ \
6319 /* Two-byte varint. */ \
6362 uint8_t byte = val & 0x7fU;
6364 if (val) byte |= 0x80U;
6365 buf[i++] = byte;
6403 ** before it can emit the first byte.