Searched defs:endptr (Results 1 - 4 of 4) sorted by relevance

/frameworks/compile/libbcc/tools/abcc/
H A DMain.cpp44 char *endptr; local
46 result = ::strtol(arg, &endptr, 0);
47 if (*endptr != '\0') {
/frameworks/av/services/audioflinger/
H A DAudioResampler.cpp105 char *endptr; local
106 unsigned long l = strtoul(value, &endptr, 0);
107 if (*endptr == '\0') {
H A DAudioFlinger.cpp2536 char *endptr; local
2537 unsigned long ul = strtoul(value, &endptr, 0);
2538 if (*endptr == '\0' && ul != 0) {
/frameworks/compile/mclinker/lib/LD/
H A DELFWriter.cpp170 char* endptr; local
171 result = strtoull(entry_name.data(), &endptr, 0);
172 if (*endptr != '\0') {

Completed in 51 milliseconds