Lines Matching refs:IntVal
3791 unsigned IntVal; in matchFPURegisterName() local
3792 if (NumString.getAsInteger(10, IntVal)) in matchFPURegisterName()
3794 if (IntVal > 31) // Maximum index for fpu register. in matchFPURegisterName()
3796 return IntVal; in matchFPURegisterName()
3805 unsigned IntVal; in matchFCCRegisterName() local
3806 if (NumString.getAsInteger(10, IntVal)) in matchFCCRegisterName()
3808 if (IntVal > 7) // There are only 8 fcc registers. in matchFCCRegisterName()
3810 return IntVal; in matchFCCRegisterName()
3819 unsigned IntVal; in matchACRegisterName() local
3820 if (NumString.getAsInteger(10, IntVal)) in matchACRegisterName()
3822 if (IntVal > 3) // There are only 3 acc registers. in matchACRegisterName()
3824 return IntVal; in matchACRegisterName()
3830 unsigned IntVal; in matchMSA128RegisterName() local
3832 if (Name.front() != 'w' || Name.drop_front(1).getAsInteger(10, IntVal)) in matchMSA128RegisterName()
3835 if (IntVal > 31) in matchMSA128RegisterName()
3838 return IntVal; in matchMSA128RegisterName()