HomeSort by: relevance | last modified time | path
    Searched defs:last_digit (Results 1 - 6 of 6) sorted by relevancy

  /src/external/gpl3/gcc/dist/libquadmath/printf/
printf_fphex.c 331 char last_digit = precision > 0 ? numstr[precision - 1] : leading;
333 int last_digit_value = (last_digit >= 'A' && last_digit <= 'F'
334 ? last_digit - 'A' + 10
335 : (last_digit >= 'a' && last_digit <= 'f'
336 ? last_digit - 'a' + 10
337 : last_digit - '0'));
329 char last_digit = precision > 0 ? numstr[precision - 1] : leading; local
printf_fp.c 171 wchar_t last_digit, next_digit;
945 last_digit = wcp[-1] != decimalwc ? wcp[-1] : wcp[-2];
967 if (round_away (is_neg, (last_digit - L_('0')) & 1, next_digit >= L_('5'),
169 wchar_t last_digit, next_digit; local
  /src/external/gpl3/gcc.old/dist/libquadmath/printf/
printf_fphex.c 331 char last_digit = precision > 0 ? numstr[precision - 1] : leading;
333 int last_digit_value = (last_digit >= 'A' && last_digit <= 'F'
334 ? last_digit - 'A' + 10
335 : (last_digit >= 'a' && last_digit <= 'f'
336 ? last_digit - 'a' + 10
337 : last_digit - '0'));
329 char last_digit = precision > 0 ? numstr[precision - 1] : leading; local
printf_fp.c 171 wchar_t last_digit, next_digit;
945 last_digit = wcp[-1] != decimalwc ? wcp[-1] : wcp[-2];
967 if (round_away (is_neg, (last_digit - L_('0')) & 1, next_digit >= L_('5'),
169 wchar_t last_digit, next_digit; local
  /src/external/gpl3/binutils/dist/gas/config/
rl78-parse.c 4612 char *last_digit = NULL; local
4618 last_digit = NULL;
4622 && last_digit == NULL)
4624 last_digit = tok;
4633 last_digit = NULL;
4638 && last_digit != NULL)
  /src/external/gpl3/binutils.old/dist/gas/config/
rl78-parse.c 4612 char *last_digit = NULL; local
4618 last_digit = NULL;
4622 && last_digit == NULL)
4624 last_digit = tok;
4633 last_digit = NULL;
4638 && last_digit != NULL)

Completed in 30 milliseconds