Home
last modified time | relevance | path

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

/bionic/libc/bionic/
Dwcstod.cpp50 char* ascii_str = new char[max_len + 1]; in wcstod() local
51 if (!ascii_str) return float_type(); in wcstod()
53 ascii_str[i] = str[i] & 0xff; in wcstod()
55 ascii_str[max_len] = 0; in wcstod()
62 f._bf._base = f._p = reinterpret_cast<unsigned char*>(ascii_str); in wcstod()
75 size_t actual_len = parsefloat(&f, ascii_str, ascii_str + max_len); in wcstod()
79 float_type result = strtod_fn(ascii_str, &ascii_end); in wcstod()
80 if (ascii_end != ascii_str + actual_len) abort(); in wcstod()
92 delete[] ascii_str; in wcstod()