OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:decimalpoint
(Results
1 - 6
of
6
) sorted by null
/device/linaro/bootloader/edk2/StdLib/LibC/gdtoa/
gethex.c
50
unsigned char
decimalpoint
= *localeconv()->decimal_point;
local
52
#define
decimalpoint
'.'
macro
68
if (*s !=
decimalpoint
)
82
if (*s ==
decimalpoint
&& !decpt) {
126
if (*--s1 ==
decimalpoint
)
/bionic/libc/upstream-openbsd/lib/libc/gdtoa/
gethex.c
54
const unsigned char *
decimalpoint
= (unsigned char*)localeconv()->decimal_point;
local
56
const unsigned char *
decimalpoint
;
local
65
decimalpoint
= s0;
86
for(i = 0;
decimalpoint
[i]; ++i) {
87
if (s[i] !=
decimalpoint
[i])
108
if (*s == *
decimalpoint
&& !decpt) {
109
for(i = 1;
decimalpoint
[i]; ++i) {
110
if (s[i] !=
decimalpoint
[i])
215
for(i = 0;
decimalpoint
[i+1]; ++i);
219
if (*--s1 ==
decimalpoint
[i])
[
all
...]
strtod.c
109
char *
decimalpoint
= localeconv()->decimal_point;
local
110
int dplen = strlen(
decimalpoint
);
112
char *
decimalpoint
;
local
123
decimalpoint
= (char*)s0;
215
if (c == *
decimalpoint
) {
216
for(i = 1;
decimalpoint
[i]; ++i)
217
if (s[i] !=
decimalpoint
[i])
strtodg.c
358
char *
decimalpoint
= localeconv()->decimal_point;
local
359
int dplen = strlen(
decimalpoint
);
361
char *
decimalpoint
;
local
372
decimalpoint
= (char*)s0;
437
if (c == *
decimalpoint
) {
438
for(i = 1;
decimalpoint
[i]; ++i)
439
if (s[i] !=
decimalpoint
[i])
/prebuilts/ndk/r11/sources/android/support/src/stdio/
strtod.c
3214
const unsigned char *
decimalpoint
= (unsigned char*)localeconv_l(loc)->decimal_point;
local
3216
const unsigned char *
decimalpoint
;
local
[
all
...]
/prebuilts/ndk/r13/sources/android/support/src/stdio/
strtod.c
3214
const unsigned char *
decimalpoint
= (unsigned char*)localeconv_l(loc)->decimal_point;
local
3216
const unsigned char *
decimalpoint
;
local
[
all
...]
Completed in 74 milliseconds