/external/bison/lib/ |
D | strtol.c | 63 # define strtol __wcstoull_l macro 65 # define strtol __wcstoul_l macro 69 # define strtol __strtoull_l macro 71 # define strtol __strtoul_l macro 77 # define strtol __wcstoll_l macro 79 # define strtol __wcstol_l macro 83 # define strtol __strtoll_l macro 85 # define strtol __strtol_l macro 93 # define strtol wcstoull macro 95 # define strtol wcstoul macro [all …]
|
/external/llvm/test/Transforms/SimplifyLibCalls/ |
D | 2009-02-12-StrTo.ll | 5 ; CHECK: declare float @strtol(i8*, i8** nocapture, i32) nounwind 6 declare float @strtol(i8* %s, i8** %endptr, i32 %base) 9 ; CHECK: call float @strtol(i8* %x, i8** %endptr, i32 10) 10 call float @strtol(i8* %x, i8** %endptr, i32 10) 11 ; CHECK: %2 = call float @strtol(i8* nocapture %x, i8** null, i32 10) 12 call float @strtol(i8* %x, i8** null, i32 10)
|
/external/bison/m4/ |
D | strtol.m4 | 1 # strtol.m4 serial 3 9 AC_REPLACE_FUNCS(strtol) 15 # Prerequisites of lib/strtol.c.
|
/external/libxslt/libxslt/ |
D | extra.c | 204 field = strtol(digits, NULL, 10); in xsltFunctionLocalTime() 209 field = strtol(digits, NULL, 10); in xsltFunctionLocalTime() 214 field = strtol(digits, NULL, 10); in xsltFunctionLocalTime() 219 field = strtol(digits, NULL, 10); in xsltFunctionLocalTime() 224 field = strtol(digits, NULL, 10); in xsltFunctionLocalTime() 229 field = strtol(digits, NULL, 10); in xsltFunctionLocalTime()
|
/external/compiler-rt/lib/asan/lit_tests/Linux/ |
D | interception_failure_test.cc | 15 extern "C" long strtol(const char *nptr, char **endptr, int base) { in strtol() function 23 return (int)strtol(x, 0, 10); in main()
|
D | interception_test.cc | 15 extern "C" long strtol(const char *nptr, char **endptr, int base) { in strtol() function 23 return (int)strtol(x, 0, 10); in main()
|
D | interception_malloc_test.cc | 24 return (int)strtol(x, 0, 10); in main()
|
/external/libvpx/ |
D | args.c | 158 rawval = strtol(arg->val, &endptr, 10); in arg_parse_uint() 179 rawval = strtol(arg->val, &endptr, 10); in arg_parse_int() 207 rawval = strtol(arg->val, &endptr, 10); in arg_parse_rational() 219 rawval = strtol(endptr + 1, &endptr, 10); in arg_parse_rational() 241 rawval = strtol(arg->val, &endptr, 10); in arg_parse_enum()
|
/external/qemu/android/ |
D | qemu-setup.c | 98 *maxtries = strtol( end, NULL, 10 ); in get_report_console_options() 124 long port = strtol(proto_port + 4, &end, 10); in report_console() 240 adb_host_port = (int) strtol( adb_host_port_str, NULL, 0 ); in android_emulation_setup() 267 int console_port = strtol( android_op_ports, &comma_location, 0 ); in android_emulation_setup() 274 int adb_port = strtol( comma_location+1, &end, 0 ); in android_emulation_setup() 304 int port = strtol( android_op_port, &end, 0 ); in android_emulation_setup()
|
D | hw-events.c | 156 *ptype = (int) strtol( p, &end, 0 ); in android_event_from_str() 176 *pcode = (int) strtol( p, &end, 0 ); in android_event_from_str() 189 *pvalue = (int)strtol( p, &end, 0 ); in android_event_from_str()
|
/external/llvm/test/CodeGen/X86/ |
D | 2009-05-23-available_externally.ll | 14 …%call = tail call i64 @strtol(i8* nocapture %__nptr, i8** null, i32 10) nounwind readonly ; <i64>… 19 declare i64 @strtol(i8*, i8** nocapture, i32) nounwind
|
/external/iproute2/tc/ |
D | q_gred.c | 63 dps = strtol(*argv, (char **)NULL, 10); in init_gred() 73 def_dp = strtol(*argv, (char **)NULL, 10); in init_gred() 163 opt.DP=strtol(*argv, (char **)NULL, 10); in gred_parse_opt() 195 opt.prio=strtol(*argv, (char **)NULL, 10); in gred_parse_opt()
|
/external/mesa3d/src/glsl/glcpp/ |
D | glcpp-lex.l | 121 yylineno = strtol(ptr, &ptr, 0) - 1; 122 yylloc->source = strtol(ptr, NULL, 0); 137 yylineno = strtol(ptr, &ptr, 0) - 1;
|
/external/libvpx/vpx_ports/ |
D | arm_cpudetect.c | 21 *flags = (int)strtol(env, NULL, 0); in arm_cpu_env_flags() 32 return env && *env ? (int)strtol(env, NULL, 0) : ~0; in arm_cpu_env_mask()
|
D | x86.h | 95 return (int)strtol(env, NULL, 0); in x86_simd_caps() 100 mask = strtol(env, NULL, 0); in x86_simd_caps()
|
/external/clang/lib/Basic/ |
D | Builtins.cpp | 98 FormatIdx = strtol(Printf, 0, 10); in isPrintfLike() 117 FormatIdx = strtol(Scanf, 0, 10); in isScanfLike()
|
/external/iproute2/ip/ |
D | iptuntap.c | 139 if (**argv && ((user = strtol(*argv, &end, 10)), !*end)) in parse_args() 155 if (**argv && ((group = strtol(*argv, &end, 10)), !*end)) in parse_args() 240 result = strtol(buf, &endp, 0); in read_prop()
|
/external/compiler-rt/lib/asan/ |
D | asan_interceptors.cc | 496 INTERCEPTOR(long, strtol, const char *nptr, // NOLINT in INTERCEPTOR() argument 500 return REAL(strtol)(nptr, endptr, base); in INTERCEPTOR() 503 long result = REAL(strtol)(nptr, &real_endptr, base); // NOLINT in INTERCEPTOR() 527 int result = REAL(strtol)(nptr, &real_endptr, 10); in INTERCEPTOR() 542 long result = REAL(strtol)(nptr, &real_endptr, 10); // NOLINT in INTERCEPTOR() 661 ASAN_INTERCEPT_FUNC(strtol); in InitializeAsanInterceptors()
|
/external/mesa3d/src/glsl/ |
D | glsl_lexer.lpp | 115 yylineno = strtol(ptr, &ptr, 0) - 1; 116 yylloc->source = strtol(ptr, NULL, 0); 130 yylineno = strtol(ptr, &ptr, 0) - 1; 161 yylval->n = strtol(yytext, NULL, 10); 284 yylval->n = strtol(yytext, NULL, 10); 288 yylval->n = strtol(yytext + 2, NULL, 16); 292 yylval->n = strtol(yytext, NULL, 8);
|
/external/webkit/Source/WebKit/android/wds/client/ |
D | AdbConnection.cpp | 122 payloadLen = strtol(lenStr, NULL, 16); in printFailureMessage() 201 int payloadLen = strtol(lenStr, NULL, 16); in getDeviceList()
|
/external/libvpx/examples/ |
D | encoder_tmpl.c | 127 width = strtol(argv[1], NULL, 0); in main() 128 height = strtol(argv[2], NULL, 0); in main()
|
D | decode_with_drops.txt | 21 n = strtol(argv[3], &nptr, 0); 22 m = strtol(nptr+1, NULL, 0);
|
/external/qemu/ |
D | vl.c | 554 vlan = qemu_find_bt_vlan(strtol(str + 9, &endp, 0)); in hci_init() 618 vlan_id = strtol(endp + 6, &endp, 0); in bt_device_add() 655 vlan = strtol(p, (char **) &endp, 0); in bt_parse() 884 bus_id = strtol(buf, NULL, 0); in drive_init() 892 unit_id = strtol(buf, NULL, 0); in drive_init() 932 index = strtol(buf, NULL, 0); in drive_init() 940 cyls = strtol(buf, NULL, 0); in drive_init() 944 heads = strtol(buf, NULL, 0); in drive_init() 948 secs = strtol(buf, NULL, 0); in drive_init() 2254 cyls = strtol(p, (char **)&p, 0); in main() [all …]
|
D | vl-android.c | 750 vlan = qemu_find_bt_vlan(strtol(str + 9, &endp, 0)); in hci_init() 814 vlan_id = strtol(endp + 6, &endp, 0); in bt_device_add() 851 vlan = strtol(p, (char **) &endp, 0); in bt_parse() 1081 bus_id = strtol(buf, NULL, 0); in drive_init() 1089 unit_id = strtol(buf, NULL, 0); in drive_init() 1129 index = strtol(buf, NULL, 0); in drive_init() 1137 cyls = strtol(buf, NULL, 0); in drive_init() 1141 heads = strtol(buf, NULL, 0); in drive_init() 1145 secs = strtol(buf, NULL, 0); in drive_init() 2313 *result = strtol(str, &r, 0); in parse_int() [all …]
|
/external/valgrind/main/coregrind/m_gdbserver/ |
D | server.c | 198 int_value = strtol (wcmd, &endptr, 10); in handle_gdb_valgrind_command() 277 int_value = strtol (wcmd, &endptr, 10); in handle_gdb_valgrind_command() 840 regno = strtol(&own_buf[1], NULL, 16); in server_main() 924 int zlen = strtol (lenptr + 1, &dataptr, 16); in server_main() 950 int zlen = strtol (lenptr + 1, &dataptr, 16); in server_main()
|