Home | History | Annotate | Download | only in libcpu

Lines Matching defs:byte

393       //uint_fast8_t byte = d->data[d->opoff2 / 8] & 7;
394 uint_fast8_t byte = modrm & 7;
401 needed = snprintf (buf, avail, "%%%s", dregs[byte]);
403 needed = snprintf (buf, avail, "%%mm%" PRIxFAST8, byte);
423 //uint_fast8_t byte = data[opoff2 / 8] & 7;
424 uint_fast8_t byte = modrm & 7;
429 byte);
779 int8_t byte = *(*d->param_start)++;
782 (int64_t) byte);
785 (int32_t) byte);
855 int_fast8_t byte = *(*d->param_start)++;
860 (int64_t) byte);
864 (int32_t) byte);
879 uint_fast8_t byte = *(*d->param_start)++;
881 (uint32_t) byte);
916 uint_fast8_t byte = d->data[d->opoff1 / 8];
918 byte = (byte >> (5 - d->opoff1 % 8)) & 7;
921 int needed = snprintf (&d->bufp[*bufcntp], avail, "%%mm%" PRIxFAST8, byte);
1111 //uint_fast8_t byte = data[opoff2 / 8] & 7;
1112 uint_fast8_t byte = modrm & 7;
1118 memcpy (&d->bufp[*bufcntp], dregs[byte] + 1, sizeof (dregs[0]) - 1);
1136 //uint_fast8_t byte = data[opoff2 / 8] & 7;
1137 uint_fast8_t byte = modrm & 7;
1145 (*d->prefixes & has_rex_b) ? hiregs[byte] : aregs[byte]);
1160 uint_fast8_t byte = d->data[d->opoff1 / 8];
1162 byte >>= 8 - (d->opoff1 % 8 + 3);
1163 byte &= 7;
1173 8 + byte);
1180 memcpy (&d->bufp[*bufcntp], dregs[byte] + is_16bit, 3 - is_16bit);
1214 uint_fast8_t byte = d->data[d->opoff1 / 8];
1216 byte >>= 8 - (d->opoff1 % 8 + 3);
1217 byte &= 7;
1228 8 + byte);
1235 memcpy (&d->bufp[*bufcntp], aregs[byte], 3);
1248 uint_fast8_t byte = d->data[d->opoff1 / 8];
1250 byte >>= 8 - (d->opoff1 % 8 + 3);
1251 byte &= 7;
1264 "r%db", 8 + byte);
1267 char* cp = stpcpy (d->bufp + *bufcntp, rex_8bit[byte]);
1275 d->bufp[(*bufcntp)++] = "acdb"[byte & 3];
1276 d->bufp[(*bufcntp)++] = "lh"[byte >> 2];
1354 uint_fast8_t byte = d->data[d->opoff1 / 8];
1356 byte >>= 8 - (d->opoff1 % 8 + 2);
1364 bufp[(*bufcntp)++] = "ecsd"[byte & 3];
1374 uint_fast8_t byte = d->data[d->opoff1 / 8];
1376 byte >>= 8 - (d->opoff1 % 8 + 3);
1378 if ((byte & 7) >= 6)
1387 bufp[(*bufcntp)++] = "ecsdfg"[byte & 7];
1404 uint_fast8_t byte = d->data[d->opoff1 / 8];
1406 byte = (byte >> (5 - d->opoff1 % 8)) & 7;
1410 int needed = snprintf (&d->bufp[*bufcntp], avail, "%%xmm%" PRIxFAST8, byte);