Lines Matching refs:IntVal
6249 unsigned IntVal; in matchFPURegisterName() local
6250 if (NumString.getAsInteger(10, IntVal)) in matchFPURegisterName()
6252 if (IntVal > 31) // Maximum index for fpu register. in matchFPURegisterName()
6254 return IntVal; in matchFPURegisterName()
6262 unsigned IntVal; in matchFCCRegisterName() local
6263 if (NumString.getAsInteger(10, IntVal)) in matchFCCRegisterName()
6265 if (IntVal > 7) // There are only 8 fcc registers. in matchFCCRegisterName()
6267 return IntVal; in matchFCCRegisterName()
6275 unsigned IntVal; in matchACRegisterName() local
6276 if (NumString.getAsInteger(10, IntVal)) in matchACRegisterName()
6278 if (IntVal > 3) // There are only 3 acc registers. in matchACRegisterName()
6280 return IntVal; in matchACRegisterName()
6286 unsigned IntVal; in matchMSA128RegisterName() local
6288 if (Name.front() != 'w' || Name.drop_front(1).getAsInteger(10, IntVal)) in matchMSA128RegisterName()
6291 if (IntVal > 31) in matchMSA128RegisterName()
6294 return IntVal; in matchMSA128RegisterName()