Lines Matching refs:value2
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()
542 } else if ((*value2 >> 4) == 1 && *value1 < 16) { in ExtendPrefix()
544 *value2 ^= 1u << 4; in ExtendPrefix()
547 if (*value1 < 256 && *value2 < 256) { in ExtendPrefix()
549 CHECK(InstNibbles(0xE3, {*value1 >> 4, *value2 >> 4})); in ExtendPrefix()
556 (*value2 >> 12) & 0xF, in ExtendPrefix()
557 (*value2 >> 8) & 0xF, in ExtendPrefix()
558 (*value2 >> 4) & 0xF})); in ExtendPrefix()
561 *value2 &= 0XF; in ExtendPrefix()