Lines Matching defs:width
1282 uint32_t width) {
1285 << ", " << ImmediatePrinter(lsb) << ", " << ImmediatePrinter(width);
1289 Condition cond, Register rd, Register rn, uint32_t lsb, uint32_t width) {
1293 << ImmediatePrinter(width);
2455 Condition cond, Register rd, Register rn, uint32_t lsb, uint32_t width) {
2459 << ImmediatePrinter(width);
3361 Condition cond, Register rd, Register rn, uint32_t lsb, uint32_t width) {
3365 << ImmediatePrinter(width);
9336 uint32_t width = widthm1 + 1;
9337 // SBFX{<c>}{<q>} <Rd>, <Rn>, #<lsb>, #<width> ; T1
9342 width);
9357 uint32_t width = msb - lsb + 1;
9358 // BFC{<c>}{<q>} <Rd>, #<lsb>, #<width> ; T1
9359 bfc(CurrentCond(), Register(rd), lsb, width);
9375 uint32_t width = msb - lsb + 1;
9376 // BFI{<c>}{<q>} <Rd>, <Rn>, #<lsb>, #<width> ; T1
9381 width);
9455 uint32_t width = widthm1 + 1;
9456 // UBFX{<c>}{<q>} <Rd>, <Rn>, #<lsb>, #<width> ; T1
9461 width);
64067 uint32_t width = widthm1 + 1;
64068 // SBFX{<c>}{<q>} <Rd>, <Rn>, #<lsb>, #<width> ; A1
64069 sbfx(condition, Register(rd), Register(rn), lsb, width);
64394 uint32_t width = msb - lsb + 1;
64395 // BFC{<c>}{<q>} <Rd>, #<lsb>, #<width> ; A1
64396 bfc(condition, Register(rd), lsb, width);
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);
64504 uint32_t width = widthm1 + 1;
64505 // UBFX{<c>}{<q>} <Rd>, <Rn>, #<lsb>, #<width> ; A1
64506 ubfx(condition, Register(rd), Register(rn), lsb, width);