Lines Matching defs:decimal
136 /* Locale-dependent representation of decimal point. */
137 const char *decimal;
234 /* Figure out the decimal point character. */
237 decimal = nl_langinfo (DECIMAL_POINT);
240 decimal = nl_langinfo (MON_DECIMAL_POINT);
241 if (*decimal == '\0')
242 decimal = nl_langinfo (DECIMAL_POINT);
244 /* The decimal point character must never be zero. */
245 assert (*decimal != '\0');
249 decimal = lc->decimal_point;
252 decimal = lc->mon_decimal_point;
253 if (decimal == NULL || *decimal == '\0')
254 decimal = lc->decimal_point;
256 if (decimal == NULL || *decimal == '\0')
257 decimal = ".";
259 decimal = ".";
270 /* The decimal point character must never be zero. */
700 /* The factor is right. Adapt binary and decimal
1175 decimal_len = strlen (decimal);
1199 (except for the decimal point and thousands separator) must
1204 memcpy (cp, decimal, decimal_len), cp += decimal_len;