/external/bison/lib/ |
D | strtol.c | 57 # define strtol __wcstoull_l macro 59 # define strtol __wcstoul_l macro 63 # define strtol __strtoull_l macro 65 # define strtol __strtoul_l macro 71 # define strtol __wcstoll_l macro 73 # define strtol __wcstol_l macro 77 # define strtol __strtoll_l macro 79 # define strtol __strtol_l macro 87 # define strtol wcstoull macro 89 # define strtol wcstoul macro [all …]
|
/external/compiler-rt/test/asan/TestCases/ |
D | strtol_strict.c | 33 long r = strtol(array, &endptr, 3); in test1() 41 long r = strtol(array, &endptr, 35); in test2() 59 long r = strtol(array + 1, NULL, -1); in test3() 75 long r = strtol(array + 3, NULL, 1); in test4() 84 long r = strtol(array, NULL, 0); in test5() 92 long r = strtol(array, &endptr, 0); in test6() 100 long r = strtol(array + 2, NULL, 0); in test7()
|
D | interception_failure_test.cc | 13 extern "C" long strtol(const char *nptr, char **endptr, int base) { in strtol() function 21 return (int)strtol(x, 0, 10); in main()
|
/external/webrtc/webrtc/tools/frame_editing/ |
D | frame_editing.cc | 85 int width = strtol((parser.GetFlag("width")).c_str(), NULL, 10); in main() 86 int height = strtol((parser.GetFlag("height")).c_str(), NULL, 10); in main() 87 int first_frame_to_cut = strtol((parser.GetFlag("f")).c_str(), NULL, 10); in main() 88 int interval = strtol((parser.GetFlag("interval")).c_str(), NULL, 10); in main() 89 int last_frame_to_cut = strtol((parser.GetFlag("l")).c_str(), NULL, 10); in main()
|
/external/rmi4utils/rmihidtool/ |
D | main.cpp | 129 int mode = strtol(token, NULL, 0); in interactive() 142 unsigned int addr = strtol(token, NULL, 0); in interactive() 145 unsigned int len = strtol(token, NULL, 0); in interactive() 158 unsigned int addr = strtol(token, NULL, 0); in interactive() 164 report[index++] = strtol(token, NULL, 0); in interactive() 249 addr = strtol(optarg, NULL, 0); in main() 250 len = strtol(argv[optind++], NULL, 0); in main() 254 addr = strtol(optarg, NULL, 0); in main() 322 report[i++] = (unsigned char)strtol(token, NULL, 0); in main()
|
/external/llvm/test/Transforms/InstCombine/ |
D | strto-1.ll | 7 declare i64 @strtol(i8* %s, i8** %endptr, i32 %base) 8 ; CHECK: declare i64 @strtol(i8* readonly, i8** nocapture, i32) 30 call i64 @strtol(i8* %x, i8** null, i32 10) 31 ; CHECK-NEXT: call i64 @strtol(i8* nocapture %x, i8** null, i32 10) 79 call i64 @strtol(i8* %x, i8** %endptr, i32 10) 80 ; CHECK-NEXT: call i64 @strtol(i8* %x, i8** %endptr, i32 10)
|
/external/autotest/client/tests/rmaptest/src/ |
D | rmap-test.c | 159 niters = strtol(optarg, NULL, 10); in main() 162 nvmas = strtol(optarg, NULL, 10); in main() 165 vmasize = strtol(optarg, NULL, 10); in main() 168 ntasks = strtol(optarg, NULL, 10); in main() 171 vmas_to_do = strtol(optarg, NULL, 10); in main()
|
/external/webrtc/webrtc/modules/video_coding/codecs/vp8/ |
D | vp8_sequence_coder.cc | 89 int width = strtol((parser->GetFlag("w")).c_str(), NULL, 10); in SequenceCoder() 90 int height = strtol((parser->GetFlag("h")).c_str(), NULL, 10); in SequenceCoder() 91 int framerate = strtol((parser->GetFlag("f")).c_str(), NULL, 10); in SequenceCoder() 97 int target_bitrate = strtol((parser->GetFlag("b")).c_str(), NULL, 10); in SequenceCoder() 126 int start_frame = strtol((parser->GetFlag("start_frame")).c_str(), NULL, 10); in SequenceCoder() 127 int num_frames = strtol((parser->GetFlag("num_frames")).c_str(), NULL, 10); in SequenceCoder()
|
/external/libvpx/libvpx/ |
D | args.c | 141 rawval = strtol(arg->val, &endptr, 10); in arg_parse_uint() 160 rawval = strtol(arg->val, &endptr, 10); in arg_parse_int() 185 rawval = strtol(arg->val, &endptr, 10); in arg_parse_rational() 195 rawval = strtol(endptr + 1, &endptr, 10); in arg_parse_rational() 214 rawval = strtol(arg->val, &endptr, 10); in arg_parse_enum()
|
/external/libvpx/libvpx/examples/ |
D | simple_encoder.c | 190 info.frame_width = strtol(width_arg, NULL, 0); in main() 191 info.frame_height = strtol(height_arg, NULL, 0); in main() 207 keyframe_interval = strtol(keyframe_interval_arg, NULL, 0); in main() 222 cfg.g_error_resilient = argc > 7 ? strtol(argv[7], NULL, 0) : 0; in main()
|
D | vpx_temporal_svc_encoder.c | 526 width = strtol(argv[4], NULL, 0); in main() 527 height = strtol(argv[5], NULL, 0); in main() 532 layering_mode = strtol(argv[10], NULL, 0); in main() 542 switch (strtol(argv[argc-1], NULL, 0)) { in main() 590 cfg.g_timebase.num = strtol(argv[6], NULL, 0); in main() 591 cfg.g_timebase.den = strtol(argv[7], NULL, 0); in main() 593 speed = strtol(argv[8], NULL, 0); in main() 601 rc.layer_target_bitrate[i - 11] = strtol(argv[i], NULL, 0); in main() 609 cfg.rc_dropframe_thresh = strtol(argv[9], NULL, 0); in main()
|
D | vp8_multi_resolution_encoder.c | 386 width = strtol(argv[1], NULL, 0); in main() 387 height = strtol(argv[2], NULL, 0); in main() 388 framerate = strtol(argv[3], NULL, 0); in main() 413 target_bitrate[i] = strtol(argv[NUM_ENCODERS + 5 + i], NULL, 0); in main() 419 num_temporal_layers[i] = strtol(argv[2 * NUM_ENCODERS + 5 + i], NULL, 0); in main() 436 key_frame_insert = strtol(argv[3 * NUM_ENCODERS + 5], NULL, 0); in main() 438 show_psnr = strtol(argv[3 * NUM_ENCODERS + 6], NULL, 0); in main()
|
D | decode_with_drops.c | 97 n = strtol(argv[3], &nptr, 0); in main() 98 m = strtol(nptr + 1, NULL, 0); in main()
|
/external/v8/src/base/ |
D | cpu.cc | 430 implementer_ = strtol(implementer, &end, 0); in CPU() 440 variant_ = strtol(variant, &end, 0); in CPU() 451 part_ = strtol(part, &end, 0); in CPU() 467 architecture_ = strtol(architecture, &end, 10); in CPU() 601 implementer_ = strtol(implementer, &end, 0); in CPU() 611 variant_ = strtol(variant, &end, 0); in CPU() 622 part_ = strtol(part, &end, 0); in CPU()
|
/external/compiler-rt/test/asan/TestCases/Linux/ |
D | interception_test.cc | 11 extern "C" long strtol(const char *nptr, char **endptr, int base) { in strtol() function 19 return (int)strtol(x, 0, 10); in main()
|
/external/iw/ |
D | roc.c | 26 freq = strtol(argv[0], &end, 0); in handle_roc_start() 30 time = strtol(argv[1], &end, 0); in handle_roc_start()
|
/external/tinycompress/ |
D | cplay.c | 170 buffer_size = strtol(optarg, NULL, 0); in main() 173 frag = strtol(optarg, NULL, 10); in main() 176 card = strtol(optarg, NULL, 10); in main() 179 device = strtol(optarg, NULL, 10); in main()
|
/external/webrtc/webrtc/tools/converter/ |
D | rgba_to_i420_converter.cc | 68 int width = strtol((parser.GetFlag("width")).c_str(), NULL, 10); in main() 69 int height = strtol((parser.GetFlag("height")).c_str(), NULL, 10); in main()
|
/external/llvm/test/CodeGen/X86/ |
D | 2009-05-23-available_externally.ll | 17 …%call = tail call i64 @strtol(i8* nocapture %__nptr, i8** null, i32 10) nounwind readonly ; <i64>… 22 declare i64 @strtol(i8*, i8** nocapture, i32) nounwind
|
/external/webrtc/webrtc/tools/frame_analyzer/ |
D | frame_analyzer.cc | 81 int width = strtol((parser.GetFlag("width")).c_str(), NULL, 10); in main() 82 int height = strtol((parser.GetFlag("height")).c_str(), NULL, 10); in main()
|
/external/google-breakpad/src/processor/ |
D | basic_source_line_resolver.cc | 476 *index = strtol(tokens[0], &after_number, 10); in ParseFile() 514 *stack_param_size = strtol(tokens[2], &after_number, 16); in ParseFunction() 546 *line_number = strtol(tokens[2], &after_number, 10); in ParseLine() 551 *source_file = strtol(tokens[3], &after_number, 10); in ParseLine() 590 *stack_param_size = strtol(tokens[1], &after_number, 16); in ParsePublicSymbol()
|
/external/toybox/toys/posix/ |
D | patch.c | 349 TT.oldline = strtol(s, &s, 10); in patch_main() 350 if (*s == ',') TT.oldlen=strtol(s+1, &s, 10); in patch_main() 351 TT.newline = strtol(s+2, &s, 10); in patch_main() 352 if (*s == ',') TT.newlen = strtol(s+1, &s, 10); in patch_main()
|
/external/autotest/client/tests/monotonic_time/src/ |
D | cpuset.c | 41 start = end = (int)strtol(s, &next, 0); in parse_cpu_set() 48 end = (int)strtol(s, &next, 0); in parse_cpu_set()
|
/external/libvpx/libvpx/vpx_ports/ |
D | arm_cpudetect.c | 27 *flags = (int)strtol(env, NULL, 0); in arm_cpu_env_flags() 37 return env && *env ? (int)strtol(env, NULL, 0) : ~0; in arm_cpu_env_mask()
|
/external/autotest/client/tests/tsc/src/ |
D | checktsc.c | 81 start = end = (int)strtol(s, &next, 0); in parse_cpu_set() 88 end = (int)strtol(s, &next, 0); in parse_cpu_set() 350 threshold = strtol(optarg, NULL, 0); in main()
|