HomeSort by relevance Sort by last modified time
    Searched refs:atoi (Results 1 - 25 of 1260) 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]);
  /frameworks/base/libs/usb/tests/accessorytest/
accessory.c 48 input_card = atoi(*argv);
52 input_device = atoi(*argv);
56 output_card = atoi(*argv);
60 output_device = atoi(*argv);
  /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
  /frameworks/base/core/jni/android/graphics/
RtlProperties.h 43 return (RtlDebugLevel) atoi(property);
  /frameworks/compile/libbcc/include/bcc/Support/
Properties.h 31 return atoi(buf);
  /hardware/invensense/6515/libsensors_iio/
SensorBase.cpp 59 if (atoi(value)) {
63 if (atoi(value)) {
67 if (atoi(value)) {
71 if (atoi(value)) {
75 if (atoi(value)) {
79 if (atoi(value)) {
83 if (atoi(value)) {
87 if (atoi(value)) {
91 if (atoi(value)) {
  /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]);
  /system/vold/
DirectVolume.cpp 143 int major = atoi(evt->findParam("MAJOR"));
144 int minor = atoi(evt->findParam("MINOR"));
194 mDiskMajor = atoi(evt->findParam("MAJOR"));
195 mDiskMinor = atoi(evt->findParam("MINOR"));
199 mDiskNumParts = atoi(tmp);
223 int major = atoi(evt->findParam("MAJOR"));
224 int minor = atoi(evt->findParam("MINOR"));
231 part_num = atoi(tmp);
281 int major = atoi(evt->findParam("MAJOR"));
282 int minor = atoi(evt->findParam("MINOR"))
    [all...]
  /hardware/qcom/display/msm8226/libqdutils/
mdp_version.cpp 163 mPanelInfo.mPartialUpdateEnable = atoi(tokens[1]);
169 mPanelInfo.mLeftAlign = atoi(tokens[1]);
173 mPanelInfo.mWidthAlign = atoi(tokens[1]);
177 mPanelInfo.mTopAlign = atoi(tokens[1]);
181 mPanelInfo.mHeightAlign = atoi(tokens[1]);
228 mMdpRev = atoi(tokens[1]);
231 mRGBPipes = (uint8_t)atoi(tokens[1]);
234 mVGPipes = (uint8_t)atoi(tokens[1]);
237 mDMAPipes = (uint8_t)atoi(tokens[1]);
241 mMDPDownscale = atoi(tokens[1])
    [all...]

Completed in 901 milliseconds

1 2 3 4 5 6 7 8 91011>>