Home
last modified time | relevance | path

Searched refs:decimal_point (Results 1 – 11 of 11) sorted by relevance

/bionic/libc/stdio/
Dvfprintf.cpp88 char* decimal_point = nullptr; in FUNCTION_NAME() local
679 if (decimal_point == nullptr) decimal_point = nl_langinfo(RADIXCHAR); in FUNCTION_NAME()
684 if (prec || flags & ALT) PRINT(decimal_point, 1); in FUNCTION_NAME()
691 if (prec || flags & ALT) PRINT(decimal_point, 1); in FUNCTION_NAME()
697 buf[1] = *decimal_point; in FUNCTION_NAME()
Dvfwprintf.cpp91 char* decimal_point = nullptr; in FUNCTION_NAME() local
657 if (decimal_point == nullptr) decimal_point = nl_langinfo(RADIXCHAR); in FUNCTION_NAME()
662 if (prec || flags & ALT) PRINT(decimal_point, 1); in FUNCTION_NAME()
669 if (prec || flags & ALT) PRINT(decimal_point, 1); in FUNCTION_NAME()
675 buf[1] = *decimal_point; in FUNCTION_NAME()
/bionic/libc/tzcode/
Dlocaledef.h76 const char *decimal_point; member
/bionic/libc/include/
Dlocale.h73 char* _Nonnull decimal_point; member
/bionic/tests/headers/posix/
Dlocale_h.c36 STRUCT_MEMBER(struct lconv, char*, decimal_point); in locale_h()
/bionic/libc/upstream-openbsd/lib/libc/gdtoa/
Dgethex.c54 const unsigned char *decimalpoint = (unsigned char*)localeconv()->decimal_point;
59 s0 = (unsigned char*)localeconv()->decimal_point;
Dstrtod.c109 char *decimalpoint = localeconv()->decimal_point;
116 s0 = localeconv()->decimal_point;
Dstrtodg.c358 char *decimalpoint = localeconv()->decimal_point;
365 s0 = localeconv()->decimal_point;
/bionic/libc/bionic/
Dlocale.cpp93 g_locale.decimal_point = const_cast<char*>("."); in __locale_init()
/bionic/tests/
Dlanginfo_test.cpp140 EXPECT_STREQ(localeconv()->decimal_point, nl_langinfo(RADIXCHAR)); in TEST()
Dlocale_test.cpp26 EXPECT_STREQ(".", localeconv()->decimal_point); in TEST()