Lines Matching defs:width
463 uint32_t width = instr->Bits(20, 16) + 1;
466 // Bits 20-16 represent most-significant bit. Covert to width.
467 width -= lsbit;
468 DCHECK_GT(width, 0);
470 DCHECK_LE(width + lsbit, 32);
472 "#%d, #%d", lsbit, width);
485 int width = (format[3] - '0') * 10 + (format[4] - '0');
488 DCHECK((width >= 1) && (width <= 32));
490 DCHECK_LE(width + lsb, 32);
493 instr->Bits(width + lsb - 1, lsb));