Lines Matching refs:overflow
399 enum overflow_type overflow = OT_NONE; in c_lex_with_flags() local
433 *value = interpret_integer (tok, flags, &overflow); in c_lex_with_flags()
437 *value = interpret_float (tok, flags, suffix, &overflow); in c_lex_with_flags()
458 literal = build_userdef_literal (suffix_id, *value, overflow, in c_lex_with_flags()
702 enum overflow_type *overflow) in interpret_integer() argument
709 *overflow = OT_NONE; in interpret_integer()
712 if (integer.overflow) in interpret_integer()
713 *overflow = OT_OVERFLOW; in interpret_integer()
796 const char *suffix, enum overflow_type *overflow) in interpret_float() argument
806 *overflow = OT_NONE; in interpret_float()
953 *overflow = OT_OVERFLOW; in interpret_float()
971 *overflow = (oflow == 0 ? OT_NONE in interpret_float()