Home | History | Annotate | Download | only in arm

Lines Matching defs:lsb

601               uint32_t lsb, uint32_t width) {
603 DCHECK_LE(width, 32u - lsb);
606 g.TempImmediate(lsb), g.TempImmediate(width));
678 // If value has 9 to 23 contiguous set bits, and has the lsb set, we can
690 uint32_t lsb = base::bits::CountTrailingZeros32(~value);
691 if ((leading_zeros + width + lsb) == 32) {
694 g.TempImmediate(lsb), g.TempImmediate(width));
788 uint32_t lsb = m.right().Value();
791 uint32_t value = (mleft.right().Value() >> lsb) << lsb;
794 if (msb + width + lsb == 32) {
795 DCHECK_EQ(lsb, base::bits::CountTrailingZeros32(value));
796 return EmitUbfx(this, node, mleft.left().node(), lsb, width);