Lines Matching defs:width
786 unsigned width) {
787 VIXL_ASSERT(width >= 1);
788 VIXL_ASSERT(lsb + width <= static_cast<unsigned>(rn.GetSizeInBits()));
792 width - 1);
799 unsigned width) {
800 VIXL_ASSERT(width >= 1);
801 VIXL_ASSERT(lsb + width <= static_cast<unsigned>(rn.GetSizeInBits()));
802 bfm(rd, rn, lsb, lsb + width - 1);
806 void bfc(const Register& rd, unsigned lsb, unsigned width) {
807 bfi(rd, AppropriateZeroRegFor(rd), lsb, width);
822 unsigned width) {
823 VIXL_ASSERT(width >= 1);
824 VIXL_ASSERT(lsb + width <= static_cast<unsigned>(rn.GetSizeInBits()));
828 width - 1);
835 unsigned width) {
836 VIXL_ASSERT(width >= 1);
837 VIXL_ASSERT(lsb + width <= static_cast<unsigned>(rn.GetSizeInBits()));
838 sbfm(rd, rn, lsb, lsb + width - 1);
870 unsigned width) {
871 VIXL_ASSERT(width >= 1);
872 VIXL_ASSERT(lsb + width <= static_cast<unsigned>(rn.GetSizeInBits()));
876 width - 1);
883 unsigned width) {
884 VIXL_ASSERT(width >= 1);
885 VIXL_ASSERT(lsb + width <= static_cast<unsigned>(rn.GetSizeInBits()));
886 ubfm(rd, rn, lsb, lsb + width - 1);
7554 unsigned width,