Lines Matching refs:number

218 /* Group digits of number string.  */
267 /* Count number of specifiers we already processed. */
274 /* This table maps a character into a number representing a
566 number.longlong = is_negative ? (- signed_number) : signed_number; \
590 number.word = is_negative ? (- signed_number) : signed_number; \
592 goto LABEL (number); \
612 LABEL (unsigned_number): /* Unsigned number of base BASE. */ \
623 number.longlong = va_arg (ap, unsigned long long int); \
625 number.longlong = args_value[fspec->data_arg].pa_u_long_long_int; \
636 /* If the precision is 0 and the number is 0 nothing has to \
637 be written for the number, except for the 'o' format in \
639 if (prec == 0 && number.longlong == 0) \
647 /* Put the number in WORK. */ \
648 string = _itoa (number.longlong, workend, base, \
658 number.word = number.longlong != 0; \
665 number.word = va_arg (ap, unsigned long int); \
667 number.word = (unsigned char) va_arg (ap, unsigned int); \
669 number.word = va_arg (ap, unsigned int); \
671 number.word = (unsigned short int) va_arg (ap, unsigned int); \
675 number.word = args_value[fspec->data_arg].pa_u_long_int; \
677 number.word = (unsigned char) \
680 number.word = args_value[fspec->data_arg].pa_u_int; \
682 number.word = (unsigned short int) \
685 LABEL (number): \
694 /* If the precision is 0 and the number is 0 nothing has to \
695 be written for the number, except for the 'o' format in \
697 if (prec == 0 && number.word == 0) \
705 /* Put the number in WORK. */ \
706 string = _itoa_word (number.word, workend, base, \
717 if (prec <= workend - string && number.word != 0 && alt && base == 8) \
727 if (number.word != 0 && alt && base == 16) \
747 if (number.word != 0 && alt && base == 16) \
778 if (number.word != 0 && alt && base == 16) \
803 /* Floating-point number. This is handled by printf_fp.c. */ \
852 /* Floating point number printed as hexadecimal number. */ \
911 number.word = (unsigned long int) ptr; \
916 goto LABEL (number); \
1338 int is_negative; /* Flag for negative number. */
1343 } number;
1623 /* The number of arguments the format string requests. This will
1631 also determine the maximum number of arguments. Track the
1632 maximum number. */
1688 /* Determine the number of arguments the format string consumes. */
1778 } number;
2032 Copy the rest of the number. */
2227 /* Pads string with given number of a specified character.