Lines Matching defs:byte
396 //uint_fast8_t byte = d->data[d->opoff2 / 8] & 7;
397 uint_fast8_t byte = modrm & 7;
404 needed = snprintf (buf, avail, "%%%s", dregs[byte]);
406 needed = snprintf (buf, avail, "%%mm%" PRIxFAST8, byte);
426 //uint_fast8_t byte = data[opoff2 / 8] & 7;
427 uint_fast8_t byte = modrm & 7;
432 byte);
782 int8_t byte = *(*d->param_start)++;
785 (int64_t) byte);
788 (int32_t) byte);
858 int_fast8_t byte = *(*d->param_start)++;
863 (int64_t) byte);
867 (int32_t) byte);
882 uint_fast8_t byte = *(*d->param_start)++;
884 (uint32_t) byte);
919 uint_fast8_t byte = d->data[d->opoff1 / 8];
921 byte = (byte >> (5 - d->opoff1 % 8)) & 7;
924 int needed = snprintf (&d->bufp[*bufcntp], avail, "%%mm%" PRIxFAST8, byte);
1114 //uint_fast8_t byte = data[opoff2 / 8] & 7;
1115 uint_fast8_t byte = modrm & 7;
1121 memcpy (&d->bufp[*bufcntp], dregs[byte] + 1, sizeof (dregs[0]) - 1);
1139 //uint_fast8_t byte = data[opoff2 / 8] & 7;
1140 uint_fast8_t byte = modrm & 7;
1148 (*d->prefixes & has_rex_b) ? hiregs[byte] : aregs[byte]);
1163 uint_fast8_t byte = d->data[d->opoff1 / 8];
1165 byte >>= 8 - (d->opoff1 % 8 + 3);
1166 byte &= 7;
1176 8 + byte);
1183 memcpy (&d->bufp[*bufcntp], dregs[byte] + is_16bit, 3 - is_16bit);
1217 uint_fast8_t byte = d->data[d->opoff1 / 8];
1219 byte >>= 8 - (d->opoff1 % 8 + 3);
1220 byte &= 7;
1231 8 + byte);
1238 memcpy (&d->bufp[*bufcntp], aregs[byte], 3);
1251 uint_fast8_t byte = d->data[d->opoff1 / 8];
1253 byte >>= 8 - (d->opoff1 % 8 + 3);
1254 byte &= 7;
1267 "r%db", 8 + byte);
1270 char* cp = stpcpy (d->bufp + *bufcntp, rex_8bit[byte]);
1278 d->bufp[(*bufcntp)++] = "acdb"[byte & 3];
1279 d->bufp[(*bufcntp)++] = "lh"[byte >> 2];
1357 uint_fast8_t byte = d->data[d->opoff1 / 8];
1359 byte >>= 8 - (d->opoff1 % 8 + 2);
1367 bufp[(*bufcntp)++] = "ecsd"[byte & 3];
1377 uint_fast8_t byte = d->data[d->opoff1 / 8];
1379 byte >>= 8 - (d->opoff1 % 8 + 3);
1381 if ((byte & 7) >= 6)
1390 bufp[(*bufcntp)++] = "ecsdfg"[byte & 7];
1407 uint_fast8_t byte = d->data[d->opoff1 / 8];
1409 byte = (byte >> (5 - d->opoff1 % 8)) & 7;
1413 int needed = snprintf (&d->bufp[*bufcntp], avail, "%%xmm%" PRIxFAST8, byte);