Home | History | Annotate | Download | only in printf

Lines Matching defs:decimal

78   /* Locale-dependent representation of decimal point.	*/
79 const char *decimal;
96 /* The maximal exponent of two in decimal notation has 5 digits. */
107 /* The leading digit before the decimal point. */
124 /* Figure out the decimal point character. */
127 decimal = nl_langinfo (DECIMAL_POINT);
130 decimal = nl_langinfo (MON_DECIMAL_POINT);
131 if (*decimal == '\0')
132 decimal = nl_langinfo (DECIMAL_POINT);
134 /* The decimal point character must never be zero. */
135 assert (*decimal != '\0');
139 decimal = lc->decimal_point;
142 decimal = lc->mon_decimal_point;
143 if (decimal == NULL || *decimal == '\0')
144 decimal = lc->decimal_point;
146 if (decimal == NULL || *decimal == '\0')
147 decimal = ".";
149 decimal = ".";
160 /* The decimal point character must never be zero. */
236 the decimal point. */
431 /* Count the decimal point.
433 is not given. In this case we must not print the decimal point. */
435 width -= wide ? 1 : strlen (decimal);
461 PRINT (decimal, wtmp, wide ? 1 : strlen (decimal));