Lines Matching refs:value1
534 bool NewRegisterInstructions::ExtendPrefix(uint32_t* value1, uint32_t* value2) { in ExtendPrefix() argument
535 if (*value1 < 16 && *value2 < 16) { in ExtendPrefix()
538 if ((*value1 >> 4) == 1 && *value2 < 16) { in ExtendPrefix()
540 *value1 ^= 1u << 4; in ExtendPrefix()
542 } else if ((*value2 >> 4) == 1 && *value1 < 16) { in ExtendPrefix()
547 if (*value1 < 256 && *value2 < 256) { in ExtendPrefix()
549 CHECK(InstNibbles(0xE3, {*value1 >> 4, *value2 >> 4})); in ExtendPrefix()
553 (*value1 >> 12) & 0xF, in ExtendPrefix()
554 (*value1 >> 8) & 0xF, in ExtendPrefix()
555 (*value1 >> 4) & 0xF, in ExtendPrefix()
560 *value1 &= 0xF; in ExtendPrefix()