Lines Matching refs:IntVal
6322 unsigned IntVal; in matchFPURegisterName() local
6323 if (NumString.getAsInteger(10, IntVal)) in matchFPURegisterName()
6325 if (IntVal > 31) // Maximum index for fpu register. in matchFPURegisterName()
6327 return IntVal; in matchFPURegisterName()
6335 unsigned IntVal; in matchFCCRegisterName() local
6336 if (NumString.getAsInteger(10, IntVal)) in matchFCCRegisterName()
6338 if (IntVal > 7) // There are only 8 fcc registers. in matchFCCRegisterName()
6340 return IntVal; in matchFCCRegisterName()
6348 unsigned IntVal; in matchACRegisterName() local
6349 if (NumString.getAsInteger(10, IntVal)) in matchACRegisterName()
6351 if (IntVal > 3) // There are only 3 acc registers. in matchACRegisterName()
6353 return IntVal; in matchACRegisterName()
6359 unsigned IntVal; in matchMSA128RegisterName() local
6361 if (Name.front() != 'w' || Name.drop_front(1).getAsInteger(10, IntVal)) in matchMSA128RegisterName()
6364 if (IntVal > 31) in matchMSA128RegisterName()
6367 return IntVal; in matchMSA128RegisterName()