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

1 2 3 4 5 6 7 8 91011>>

  /bionic/libc/stdlib/
atoi.c 30 int atoi(const char* s) function
  /external/webkit/Source/WebKit/android/benchmark/
main.cpp 48 width = atoi(optarg);
49 height = atoi(x + 1);
53 reloadCount = atoi(optarg);
  /external/quake/quake/src/QW/client/
buildnum.c 54 d += atoi( &buildDate[4] ) - 1;
56 y = atoi( &buildDate[7] ) - 1900;
snd_linux.c 79 if (s) shm->samplebits = atoi(s);
81 shm->samplebits = atoi(com_argv[i+1]);
90 if (s) shm->speed = atoi(s);
92 shm->speed = atoi(com_argv[i+1]);
101 if (s) shm->channels = atoi(s);
  /system/core/toolbox/
kill.c 17 sig = atoi(argv[0] + 1);
23 int pid = atoi(argv[0]);
ps.c 85 ppid = atoi(nexttok(&ptr));
88 tty = atoi(nexttok(&ptr));
97 utime = atoi(nexttok(&ptr));
98 stime = atoi(nexttok(&ptr));
105 prio = atoi(nexttok(&ptr));
106 nice = atoi(nexttok(&ptr));
126 psr = atoi(nexttok(&ptr)); // processor
127 rtprio = atoi(nexttok(&ptr)); // rt_priority
128 sched = atoi(nexttok(&ptr)); // scheduling policy
130 tty = atoi(nexttok(&ptr))
    [all...]
ionice.c 21 if (!(pid = atoi(argv[1]))) {
48 ioprio = atoi(argv[3]);
renice.c 100 print_prio(atoi(argv[1]));
107 prio = atoi(argv[0]);
117 pid = atoi(argv[0]);
  /frameworks/base/core/jni/android/graphics/
RtlProperties.h 43 return (RtlDebugLevel) atoi(property);
  /external/icu4c/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 100 int major = atoi(evt->findParam("MAJOR"));
101 int minor = atoi(evt->findParam("MINOR"));
140 mDiskMajor = atoi(evt->findParam("MAJOR"));
141 mDiskMinor = atoi(evt->findParam("MINOR"));
145 mDiskNumParts = atoi(tmp);
180 int major = atoi(evt->findParam("MAJOR"));
181 int minor = atoi(evt->findParam("MINOR"));
188 part_num = atoi(tmp);
236 int major = atoi(evt->findParam("MAJOR"));
237 int minor = atoi(evt->findParam("MINOR"))
    [all...]
  /external/wpa_supplicant_8/hostapd/
config_file.c 174 vlan_id = atoi(pos);
676 list[count++] = atoi(pos);
731 i = atoi(value);
789 queue->aifs = atoi(val);
796 queue->cwmin = atoi(val);
803 queue->cwmax = atoi(val);
849 v = atoi(val);
856 v = atoi(val);
863 v = atoi(val);
870 v = atoi(val)
    [all...]
  /device/moto/wingray/taudio/
tctl.c 38 output = atoi(optarg);
44 input = atoi(optarg);
50 volume = atoi(optarg);
55 in_rate = atoi(optarg);
58 in_channels = atoi(optarg);
62 in_volume = atoi(optarg);
67 use_dma = atoi(optarg);
70 record = atoi(optarg);
  /external/ppp/pppd/plugins/radius/
util.c 48 tm->tm_mday = atoi (&valstr[4]);
51 tm->tm_year = atoi (&valstr[7]) - 1900;
  /external/valgrind/main/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;
pth_barrier.c 103 nthread = (argc > 1) ? atoi(argv[1]) : 2;
104 iterations = (argc > 2) ? atoi(argv[2]) : 3;
105 s_silent = (argc > 3) ? atoi(argv[3]) : 0;
omp_prime.c 55 num_threads = atoi(optarg);
71 n = atoi(argv[optind]);
pth_detached_sem.c 43 const int count1 = argc > 1 ? atoi(argv[1]) : 100;
44 const int count2 = argc > 2 ? atoi(argv[2]) : 100;
  /system/core/nexus/
SupplicantStateChangeEvent.cpp 35 mState = atoi(p + strlen("state=") + 1);
  /system/core/sh/
mystring.c 116 return atoi(s);
  /frameworks/base/cmds/stagefright/
recordvideo.cpp 172 bitRateBps = atoi(optarg);
178 colorFormat = translateColorToOmxEnumValue(atoi(optarg));
187 frameRateFps = atoi(optarg);
193 iFramesIntervalSeconds = atoi(optarg);
199 nFrames = atoi(optarg);
205 width = atoi(optarg);
211 height = atoi(optarg);
217 level = atoi(optarg);
223 profile = atoi(optarg);
229 codec = atoi(optarg)
    [all...]
  /frameworks/compile/libbcc/tests/data/src/
bellard.otccex.c 94 n = atoi(*(int *)(argv + 4));
97 base = atoi(*(int *)(argv + 8));
  /hardware/ril/rild/
radiooptions.c 59 const int option = atoi(argv[1]);
71 const int option = atoi(argv[1]);
  /sdk/emulator/qtools/
parse_options.cpp 68 int bitnum = atoi(optarg);
87 int bitnum = atoi(optarg);
  /system/extras/tests/cpueater/
daemonize.c 59 delay = atoi(*argv);
61 delay = atoi(*++argv);

Completed in 1408 milliseconds

1 2 3 4 5 6 7 8 91011>>