HomeSort by relevance Sort by last modified time
    Searched refs:atoi (Results 1 - 25 of 563) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/CodeGen/
debug-line-1.c 9 extern int atoi(const char *);
12 int x = atoi(arg);
  /bionic/libc/upstream-openbsd/lib/libc/stdlib/
atoi.c 1 /* $OpenBSD: atoi.c,v 1.5 2005/08/08 08:05:36 espie Exp $ */
34 atoi(const char *str) function
  /external/clang/test/Analysis/
redefined_system.c 13 char atoi();
16 return memmove() + malloc() + system() + stdin() + memccpy() + free() + strdup() + atoi();
  /external/f2fs-tools/mkfs/
f2fs_format_main.c 51 config.heap = atoi(optarg);
56 config.dbg_lv = atoi(optarg);
73 config.overprovision = atoi(optarg);
75 atoi(optarg));
78 config.segs_per_sec = atoi(optarg);
80 atoi(optarg));
83 config.secs_per_zone = atoi(optarg);
84 MSG(0, "Info: Sections per zone = %d\n", atoi(optarg));
87 config.trim = atoi(optarg);
  /external/compiler-rt/SDKs/darwin/usr/include/
stdlib.h 26 int atoi(const char *);
  /external/compiler-rt/test/asan/TestCases/Linux/
heap-overflow-large.cc 15 int index = atoi(argv[1]);
heavy_uar_test.cc 39 int n_iter = argc >= 2 ? atoi(argv[1]) : 1000;
40 int depth = argc >= 3 ? atoi(argv[2]) : 500;
  /external/chromium_org/third_party/lcov/example/
example.c 37 start = atoi(argv[1]);
38 end = atoi(argv[2]);
  /external/chromium_org/third_party/libyuv/unit_test/
unit_test.cc 26 benchmark_iterations_ = atoi(repeat); // NOLINT
36 benchmark_width_ = atoi(width); // NOLINT
40 benchmark_height_ = atoi(height); // NOLINT
version_test.cc 33 int svn_revision = atoi(ver); // NOLINT
  /external/compiler-rt/test/tsan/
bench_shadow_flush.cc 20 mem_size = (uptr)atoi(argv[1]) << 20;
23 stride = (uptr)atoi(argv[2]) << 10;
26 niter = atoi(argv[3]);
  /external/clang/test/Profile/
c-attributes.c 6 extern int atoi(const char *);
37 int max = atoi(argv[1]);
  /external/compiler-rt/test/asan/TestCases/
mmap_limit_mb.cc 21 long total_mb = atoi(argv[1]);
22 long allocation_size = atoi(argv[2]);
  /external/chromium_org/media/cast/test/utility/
generate_barcode_video.cc 29 int width = atoi(argv[1]);
30 int height = atoi(argv[2]);
31 int fps = atoi(argv[3]);
32 uint16 wanted_frames = atoi(argv[4]);
generate_timecode_audio.cc 21 int fps = atoi(argv[1]);
22 const uint32 frames = static_cast<uint32>(std::max(0, atoi(argv[2])));
  /external/libunwind/src/mi/
init.c 50 unwi_debug_level = atoi (str);
  /external/libyuv/files/unit_test/
unit_test.cc 26 benchmark_iterations_ = atoi(repeat); // NOLINT
version_test.cc 33 int svn_revision = atoi(ver); // NOLINT
  /external/chromium_org/third_party/icu/source/test/compat/
tzdate.c 51 year = atoi(argv[1]);
52 month = atoi(argv[2]);
53 day = atoi(argv[3]);
54 hour = atoi(argv[4]);
55 minute = atoi(argv[5]);
56 useCurrentTime = atoi(argv[6]);
  /external/icu/icu4c/source/test/compat/
tzdate.c 51 year = atoi(argv[1]);
52 month = atoi(argv[2]);
53 day = atoi(argv[3]);
54 hour = atoi(argv[4]);
55 minute = atoi(argv[5]);
56 useCurrentTime = atoi(argv[6]);
  /external/libunwind/src/arm/
Gglobal.c 56 unwi_unwind_method = atoi (str);
  /external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/test/
RTPtimeshift.cc 66 uint32_t TSdiff = atoi(argv[3]) - packet.timeStamp();
71 int startSN = atoi(argv[4]);
76 int startTS = atoi(argv[5]);
  /cts/suite/audio_quality/lib/src/task/
TaskSound.cpp 79 int amplitude = atoi(tokens->at(1).string());
80 int freq = atoi(tokens->at(2).string());
81 int time = atoi(tokens->at(3).string());
90 int amplitude = atoi(tokens->at(1).string());
91 int time = atoi(tokens->at(2).string());
  /external/chromium_org/third_party/opus/src/celt/
opus_custom_demo.c 71 channels = atoi(argv[2]);
72 frame_size = atoi(argv[3]);
80 bytes_per_packet = atoi(argv[4]);
124 complexity=atoi(argv[5]);
148 if (rand()%atoi(argv[8])==0)
166 if (argc==9 && rand()%1000<atoi(argv[argc-3]))
  /external/libopus/celt/
opus_custom_demo.c 71 channels = atoi(argv[2]);
72 frame_size = atoi(argv[3]);
80 bytes_per_packet = atoi(argv[4]);
124 complexity=atoi(argv[5]);
148 if (rand()%atoi(argv[8])==0)
166 if (argc==9 && rand()%1000<atoi(argv[argc-3]))

Completed in 438 milliseconds

1 2 3 4 5 6 7 8 91011>>