/external/quake/quake/src/WinQuake/ |
snd_linux.cpp | 98 if (s) shm->samplebits = atoi(s); 100 shm->samplebits = atoi(com_argv[i+1]); 109 if (s) shm->speed = atoi(s); 111 shm->speed = atoi(com_argv[i+1]); 120 if (s) shm->channels = atoi(s);
|
/frameworks/base/cmds/installd/ |
installd.c | 31 return install(arg[0], atoi(arg[1]), atoi(arg[2])); /* pkgname, uid, gid */ 37 return dexopt(arg[0], atoi(arg[1]), atoi(arg[2])); 52 return uninstall(arg[0], atoi(arg[1])); /* pkgname, userid */ 72 return protect(arg[0], atoi(arg[1])); /* pkgname, gid */ 97 return delete_user_data(arg[0], atoi(arg[1])); /* pkgname, userid */ 102 return make_user_data(arg[0], atoi(arg[1]), atoi(arg[2])); /* pkgname, uid, userid */ 107 return delete_persona(atoi(arg[0])); /* userid * [all...] |
/external/webkit/Source/WebCore/loader/ |
FTPDirectoryParser.cpp | 573 result.modifiedTime.tm_mday = atoi(tokens[2]); 574 result.modifiedTime.tm_year = atoi(p+4); // NSPR wants year as XXXX 580 result.modifiedTime.tm_sec = atoi(p+3); 581 result.modifiedTime.tm_hour = atoi(tokens[3]); 582 result.modifiedTime.tm_min = atoi(p); 715 result.modifiedTime.tm_year = atoi(p+0) - 1900; 716 result.modifiedTime.tm_mon = atoi(p+5) - 1; 717 result.modifiedTime.tm_mday = atoi(p+8); 722 result.modifiedTime.tm_mon = atoi(p) - 1; 723 result.modifiedTime.tm_mday = atoi((p+pos)-5) [all...] |
/external/srec/srec/Semproc/src/ |
ExpressionEvaluator.c | 107 sum += atoi(operands[i]); 122 diff = atoi(operands[0]); 124 diff -= atoi(operands[i]);
|
/external/valgrind/main/drd/tests/ |
annotate_barrier.c | 12 #include <stdlib.h> /* atoi() */ 163 nthread = (argc > 1) ? atoi(argv[1]) : 2; 164 iterations = (argc > 2) ? atoi(argv[2]) : 3; 165 s_silent = (argc > 3) ? atoi(argv[3]) : 0;
|
pth_create_chain.c | 37 thread_count = argc > 1 ? atoi(argv[1]) : 50;
|
pth_spinlock.c | 11 #include <stdlib.h> /* atoi() */ 40 s_iterations = argc > 1 ? atoi(argv[1]) : 1000;
|
pth_detached.c | 48 const int count1 = argc > 1 ? atoi(argv[1]) : 100; 49 const int count2 = argc > 2 ? atoi(argv[2]) : 100;
|
rwlock_test.c | 68 s_num_iterations = atoi(optarg); 71 s_num_threads = atoi(optarg);
|
/system/core/toolbox/ |
sendevent.c | 71 event.type = atoi(argv[2]); 72 event.code = atoi(argv[3]); 73 event.value = atoi(argv[4]);
|
smd.c | 15 port = atoi(argv[0] + 1);
|
/external/srtp/crypto/test/ |
rand_gen.c | 104 num_octets = atoi(optarg);
|
/external/tinyalsa/ |
tinycap.c | 96 device = atoi(*argv); 99 channels = atoi(*argv); 102 rate = atoi(*argv); 105 bits = atoi(*argv);
|
/external/webkit/Source/WebKit2/WebProcess/gtk/ |
WebProcessMainGtk.cpp | 65 int socket = atoi(argv[1]);
|
/frameworks/base/cmds/bootanimation/ |
bootanimation_main.cpp | 49 int noBootAnimation = atoi(value);
|
/frameworks/base/libs/hwui/ |
Properties.h | 97 return (DebugLevel) atoi(property);
|
/frameworks/base/media/libstagefright/codecs/aacenc/SampleCode/ |
AAC_E_SAMPLES.c | 84 param->sampleRate = atoi(*argv); 90 param->nChannels = atoi(*argv); 96 param->bitRate = atoi(*argv); 102 param->adtsUsed = atoi(*argv);
|
/system/extras/tests/bionic/libstdc++/ |
test_cstdlib.cpp | 64 using ::atoi;
|
/bootable/recovery/updater/ |
updater.c | 59 int fd = atoi(argv[2]); 111 updater_info.version = atoi(version);
|
/development/tools/emulator/opengl/tests/ut_renderer/ |
RendererSurface.cpp | 68 width = atoi(env); 72 height = atoi(env);
|
/development/tools/emulator/system/camera/ |
EmulatedQemuCamera.cpp | 103 const int x = atoi(first_dim); 104 const int y = atoi(sep + 1);
|
/development/tools/jdwpspy/ |
Main.cpp | 128 int connectPort = atoi(argv[1]); 132 listenPort = atoi(argv[2]);
|
/external/bluetooth/glib/tests/ |
hash-test.c | 233 i = atoi (_key); 257 i = atoi (_key); 284 g_assert (atoi (key) == i); 287 g_assert (atoi (val) == i); 297 g_assert (atoi(key) == i); 303 g_assert (atoi (v) == i); 316 g_assert (atoi(key) == i); 319 g_assert (atoi (val) == i);
|
/external/chromium/chrome/browser/metrics/ |
metrics_response.cc | 32 state->interval = atoi(Char(attrs[i + 1])); 39 state->events = atoi(Char(attrs[i + 1]));
|
/external/openssl/apps/ |
prime.c | 89 bits=atoi(*++argv); 96 checks=atoi(*++argv);
|