Lines Matching defs:lsb
1281 uint32_t lsb,
1285 << ", " << ImmediatePrinter(lsb) << ", " << ImmediatePrinter(width);
1289 Condition cond, Register rd, Register rn, uint32_t lsb, uint32_t width) {
1292 << ", " << rn << ", " << ImmediatePrinter(lsb) << ", "
2455 Condition cond, Register rd, Register rn, uint32_t lsb, uint32_t width) {
2458 << ", " << rn << ", " << ImmediatePrinter(lsb) << ", "
3361 Condition cond, Register rd, Register rn, uint32_t lsb, uint32_t width) {
3364 << ", " << rn << ", " << ImmediatePrinter(lsb) << ", "
9333 uint32_t lsb =
9337 // SBFX{<c>}{<q>} <Rd>, <Rn>, #<lsb>, #<width> ; T1
9341 lsb,
9354 uint32_t lsb =
9357 uint32_t width = msb - lsb + 1;
9358 // BFC{<c>}{<q>} <Rd>, #<lsb>, #<width> ; T1
9359 bfc(CurrentCond(), Register(rd), lsb, width);
9372 uint32_t lsb =
9375 uint32_t width = msb - lsb + 1;
9376 // BFI{<c>}{<q>} <Rd>, <Rn>, #<lsb>, #<width> ; T1
9380 lsb,
9452 uint32_t lsb =
9456 // UBFX{<c>}{<q>} <Rd>, <Rn>, #<lsb>, #<width> ; T1
9460 lsb,
64065 uint32_t lsb = (instr >> 7) & 0x1f;
64068 // SBFX{<c>}{<q>} <Rd>, <Rn>, #<lsb>, #<width> ; A1
64069 sbfx(condition, Register(rd), Register(rn), lsb, width);
64392 uint32_t lsb = (instr >> 7) & 0x1f;
64394 uint32_t width = msb - lsb + 1;
64395 // BFC{<c>}{<q>} <Rd>, #<lsb>, #<width> ; A1
64396 bfc(condition, Register(rd), lsb, width);
64408 uint32_t lsb = (instr >> 7) & 0x1f;
64410 uint32_t width = msb - lsb + 1;
64411 // BFI{<c>}{<q>} <Rd>, <Rn>, #<lsb>, #<width> ; A1
64412 bfi(condition, Register(rd), Register(rn), lsb, width);
64502 uint32_t lsb = (instr >> 7) & 0x1f;
64505 // UBFX{<c>}{<q>} <Rd>, <Rn>, #<lsb>, #<width> ; A1
64506 ubfx(condition, Register(rd), Register(rn), lsb, width);