Home | History | Annotate | Download | only in arm64

Lines Matching defs:imm_s

282   unsigned imm_s = (value >>  0) & 0x3f;
284 // An integer is constructed from the n, imm_s and imm_r bits according to
301 DCHECK_NE(imm_s, 0x3fU);
302 uint64_t bits = BIT_MASK(imm_s + 1);
305 DCHECK_NE((imm_s >> 1), 0x1fU);
307 if ((imm_s & width) == 0) {
309 DCHECK_NE((imm_s & mask), mask);
310 uint64_t bits = BIT_MASK((imm_s & mask) + 1);