Home | History | Annotate | Download | only in aarch64

Lines Matching full:imm7

2785   static Instr ImmLSPair(int64_t imm7, unsigned access_size) {
2786 VIXL_ASSERT(IsMultiple(imm7, 1 << access_size));
2787 int64_t scaled_imm7 = imm7 / (1 << access_size);
2812 static Instr ImmHint(int imm7) {
2813 VIXL_ASSERT(IsUint7(imm7));
2814 return imm7 << ImmHint_offset;