/external/syslinux/com32/lib/ |
atoi.c | 2 #define NAME atoi
|
atox.c | 4 * atoi(), atol(), atoll()
|
/external/llvm/test/Assembler/ |
2007-11-26-AttributeOverload.ll | 3 declare i32 @atoi(i8*) nounwind readonly 4 declare i32 @atoi(i8*)
|
/external/swiftshader/third_party/LLVM/test/Assembler/ |
2007-11-26-AttributeOverload.ll | 3 declare i32 @atoi(i8*) nounwind readonly 4 declare i32 @atoi(i8*)
|
/external/syslinux/com32/samples/ |
localboot.c | 6 syslinux_local_boot(argc > 1 ? atoi(argv[1]) : 0);
|
/toolchain/binutils/binutils-2.25/ld/testsuite/ld-plugin/ |
lto-2.c | 8 int d = atoi (argv[1]);
|
/external/clang/test/Analysis/ |
redefined_system.c | 13 char atoi(); 16 return memmove() + malloc() + system() + stdin() + memccpy() + free() + strdup() + atoi();
|
/system/extras/simpleperf/runtest/ |
two_functions.cpp | 7 volatile int* p = a + atoi("0"); 14 volatile int* p = a + atoi("1");
|
function_fork.cpp | 9 volatile int* p = a + atoi("0"); 16 volatile int* p = a + atoi("1");
|
/external/libyuv/files/unit_test/ |
unit_test.cc | 45 benchmark_iterations_ = atoi(repeat); // NOLINT 56 benchmark_width_ = atoi(width); // NOLINT 63 benchmark_height_ = atoi(height); // NOLINT 70 disable_cpu_flags_ = atoi(cpu_flags); // NOLINT 77 benchmark_cpu_info_ = atoi(cpu_flags); // NOLINT 104 benchmark_iterations_ = atoi(repeat); // NOLINT 115 benchmark_width_ = atoi(width); // NOLINT 122 benchmark_height_ = atoi(height); // NOLINT 129 disable_cpu_flags_ = atoi(cpu_flags); // NOLINT 136 benchmark_cpu_info_ = atoi(cpu_flags); // NOLIN [all...] |
/external/toybox/toys/android/ |
sendevent.c | 33 ev.type = atoi(toys.optargs[1]); 34 ev.code = atoi(toys.optargs[2]); 35 ev.value = atoi(toys.optargs[3]);
|
/device/google/contexthub/util/sensortest/ |
sensortest.cpp | 113 if ((sensorIndex = findSensorTypeInSensorList(atoi(argv[currArgumentIndex+1]))) < 0) { 114 printf ("No sensor found with type \"%d\"\n", atoi(argv[currArgumentIndex+1])); 118 existingSensorConfigIndex = findSensorTypeInConfigList(atoi(argv[currArgumentIndex+1])); 121 printf("Replacing previous config for sensor type %d\n", atoi(argv[currArgumentIndex+1])); 124 .type = atoi(argv[currArgumentIndex+1]), 125 .rate = atoi(argv[currArgumentIndex+2]), 132 .type = atoi(argv[currArgumentIndex+1]), 133 .rate = atoi(argv[currArgumentIndex+2]), 146 if ((sensorIndex = findSensorTypeInSensorList(atoi(argv[currArgumentIndex+1]))) < 0) { 147 printf ("No sensor found with type \"%d\"\n", atoi(argv[currArgumentIndex+1])) [all...] |
/external/clang/test/CodeGen/ |
debug-line-1.c | 9 extern int atoi(const char *); 12 int x = atoi(arg);
|
/external/compiler-rt/test/tsan/ |
bench_shadow_flush.cc | 21 mem_size = (uptr)atoi(argv[1]) << 20; 24 stride = (uptr)atoi(argv[2]) << 10; 27 niter = atoi(argv[3]); 30 stride2 = atoi(argv[4]);
|
/external/syslinux/bios/com32/samples/ |
localboot.c32 | |
/external/syslinux/efi32/com32/samples/ |
localboot.c32 | |
/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);
|
/prebuilts/go/darwin-x86/test/fixedbugs/ |
bug262.go | 40 m[f()], *g() = strconv.Atoi(h()) 48 *i(), mm[f()] = strconv.Atoi(h())
|
/prebuilts/go/linux-x86/test/fixedbugs/ |
bug262.go | 40 m[f()], *g() = strconv.Atoi(h()) 48 *i(), mm[f()] = strconv.Atoi(h())
|
/external/llvm/test/Integer/ |
undefined_bt.ll | 9 declare i32 @"atoi"(i8 *)
|
/external/swiftshader/third_party/LLVM/test/Integer/ |
undefined_bt.ll | 9 declare i32 @"atoi"(i8 *)
|
/external/llvm/test/CodeGen/X86/ |
2009-05-23-available_externally.ll | 8 %call = tail call fastcc i32 @atoi(i8* %x) nounwind readonly ; <i32> [#uses=1] 13 ; CHECK: {{atoi.+PLT}} 15 define available_externally fastcc i32 @atoi(i8* %__nptr) nounwind readonly {
|
/external/ltp/testcases/network/nfs/nfslock01/ |
nfs_flock_dgen.c | 23 nchars = atoi(argv[2]); 29 nlines = atoi(argv[3]); 30 ctype = atoi(argv[4]);
|
/external/swiftshader/third_party/LLVM/test/CodeGen/X86/ |
2009-05-23-available_externally.ll | 1 ; RUN: llc < %s -relocation-model=pic | grep atoi | grep PLT 8 %call = tail call fastcc i32 @atoi(i8* %x) nounwind readonly ; <i32> [#uses=1] 12 define available_externally fastcc i32 @atoi(i8* %__nptr) nounwind readonly {
|
/external/valgrind/drd/tests/ |
omp_printf.c | 6 #include <stdlib.h> // atoi() 34 case 'i': num_iterations = atoi(optarg); break; 36 case 't': num_threads = atoi(optarg); break;
|