Lines Matching defs:width
36 unsigned width) {
37 VIXL_ASSERT((width == 2) || (width == 4) || (width == 8) || (width == 16) ||
38 (width == 32));
41 uint64_t result = value & ((UINT64_C(1) << width) - 1);
42 for (unsigned i = width; i < reg_size; i *= 2) {
590 // element size. The source element size is half the width.
736 // 32 or 64-bit value, depending on destination register width.
749 for (int width = 0x20; width >= 0x2; width >>= 1) {
750 if ((imm_s & width) == 0) {
751 int mask = width - 1;
757 RotateRight(bits, imm_r & mask, width),
758 width);