Lines Matching refs:IntVal
5633 unsigned IntVal; in matchFPURegisterName() local
5634 if (NumString.getAsInteger(10, IntVal)) in matchFPURegisterName()
5636 if (IntVal > 31) // Maximum index for fpu register. in matchFPURegisterName()
5638 return IntVal; in matchFPURegisterName()
5646 unsigned IntVal; in matchFCCRegisterName() local
5647 if (NumString.getAsInteger(10, IntVal)) in matchFCCRegisterName()
5649 if (IntVal > 7) // There are only 8 fcc registers. in matchFCCRegisterName()
5651 return IntVal; in matchFCCRegisterName()
5659 unsigned IntVal; in matchACRegisterName() local
5660 if (NumString.getAsInteger(10, IntVal)) in matchACRegisterName()
5662 if (IntVal > 3) // There are only 3 acc registers. in matchACRegisterName()
5664 return IntVal; in matchACRegisterName()
5670 unsigned IntVal; in matchMSA128RegisterName() local
5672 if (Name.front() != 'w' || Name.drop_front(1).getAsInteger(10, IntVal)) in matchMSA128RegisterName()
5675 if (IntVal > 31) in matchMSA128RegisterName()
5678 return IntVal; in matchMSA128RegisterName()