Lines Matching refs:width
67 unsigned int width) {
68 DCHECK(width <= 64);
70 return ((value & ((1UL << rotate) - 1UL)) << (width - rotate)) |
77 unsigned width) {
78 DCHECK((width == 2) || (width == 4) || (width == 8) || (width == 16) ||
79 (width == 32));
81 uint64_t result = value & ((1UL << width) - 1UL);
82 for (unsigned i = width; i < reg_size; i *= 2) {
112 // 32 or 64-bit value, depending on destination register width.
125 for (int width = 0x20; width >= 0x2; width >>= 1) {
126 if ((imm_s & width) == 0) {
127 int mask = width - 1;
133 RotateRight(bits, imm_r & mask, width),
134 width);