Searched refs:Accum (Results 1 – 1 of 1) sorted by relevance
567 #define DECIMAL_DIGIT_ACCUMULATE(Accum, Digit_val, Type) \ argument569 (void) (&(Accum) == (Type *) nullptr), /* The type matches. */ \571 (((Type) -1 / 10 < (Accum) \572 || (Type) ((Accum) * 10 + (Digit_val)) < (Accum)) \574 : (((Accum) = (Accum) * 10 + (Digit_val)), true))) \