HomeSort by relevance Sort by last modified time
    Searched refs:ascii_str (Results 1 - 2 of 2) sorted by null

  /bionic/libc/bionic/
wcstod.cpp 50 char* ascii_str = new char[max_len + 1]; local
51 if (!ascii_str) return float_type();
53 ascii_str[i] = str[i] & 0xff;
55 ascii_str[max_len] = 0;
62 f._bf._base = f._p = reinterpret_cast<unsigned char*>(ascii_str);
75 size_t actual_len = parsefloat(&f, ascii_str, ascii_str + max_len);
79 float_type result = strtod_fn(ascii_str, &ascii_end);
80 if (ascii_end != ascii_str + actual_len) abort();
92 delete[] ascii_str;
    [all...]
  /external/strace/
s390.c 429 char ascii_str[sizeof(ebcdic_) + MUST_BE_ARRAY(ebcdic_)]; \
431 DECODE_EBCDIC(ebcdic_, ascii_str); \
432 print_quoted_string(ascii_str, sizeof(ascii_str), \
    [all...]

Completed in 155 milliseconds