/bionic/libc/bionic/ |
wcstod.cpp | 57 // Set up a fake FILE that points to those ASCII characters, for `parsefloat`. 67 // Ask `parsefloat` to look at the same data more carefully. 71 // duplicate the `parsefloat` logic. We also don't want to actually have to have wchar_t 75 size_t actual_len = parsefloat(&f, ascii_str, ascii_str + max_len);
|
/device/linaro/bootloader/edk2/StdLib/LibC/Stdio/ |
vfscanf.c | 118 static int parsefloat(FILE *, char *, char *);
843 if ((width = parsefloat(fp, buf, buf + width)) == 0)
983 parsefloat(FILE *fp, char *buf, char *end)
function
|
vfwscanf.c | 116 static int parsefloat(FILE *, wchar_t *, wchar_t *);
725 if ((width = parsefloat(fp, buf, buf + width)) == 0)
762 parsefloat(FILE *fp, wchar_t *buf, wchar_t *end)
function
|
/bionic/libc/stdio/ |
local.h | 258 size_t parsefloat(FILE*, char*, char*);
|
parsefloat.c | 40 size_t parsefloat(FILE *fp, char *buf, char *end) { function
|
vfscanf.cpp | 705 if ((width = parsefloat(fp, buf, buf + width)) == 0) goto match_failure;
|