Searched refs:decimal_len (Results 1 - 2 of 2) sorted by relevance

/haiku/src/system/libroot/posix/glibc/stdlib/
H A Dstrtod.c307 , const char *decimal, size_t decimal_len, const char *thousands
361 str += decimal_len;
479 size_t decimal_len; variable
533 # define decimal_len 1 macro
536 decimal_len = strlen (decimal);
537 assert (decimal_len > 0);
700 || (cp[decimal_len] >= L_('0') && cp[decimal_len] <= L_('9'))
701 || ((CHAR_TYPE) TOLOWER (cp[decimal_len]) >= L_('a')
702 && (CHAR_TYPE) TOLOWER (cp[decimal_len]) <
304 str_to_mpn(const STRING_TYPE *str, int digcnt, mp_limb_t *n, mp_size_t *nsize, int *exponent , const char *decimal, size_t decimal_len, const char *thousands ) argument
[all...]
/haiku/src/system/libroot/posix/glibc/stdio-common/
H A Dprintf_fp.c1111 size_t decimal_len; local
1115 decimal_len = strlen (decimal);
1124 buffer = (char *) malloc (2 + chars_needed + decimal_len
1131 buffer = (char *) alloca (2 + chars_needed + decimal_len
1140 cp = (char *) __mempcpy (cp, decimal, decimal_len);

Completed in 36 milliseconds