Lines Matching defs:byte
101 /* The byte encoding. */
236 %type <bit> bit byte bytes
389 bytes: bytes ',' byte
399 | byte
406 byte: byte bit
1269 /* We must always count the mod/rm byte. */
1284 /* Now create the mask and byte values. */
1285 uint8_t byte = 0;
1293 byte = (byte << 1) | b->value;
1300 fprintf (outfile, " %#" PRIx8 ",", byte);
1305 mask, byte);
1306 byte = mask = nbits = 0;
1319 mask << (8 - nbits), byte << (8 - nbits));
1321 byte = mask = nbits = 0;
1325 byte <<= remaining;
1330 fprintf (outfile, " %#" PRIx8 ", %#" PRIx8 ",", mask, byte);
1331 byte = mask = nbits = 0;