HomeSort by relevance Sort by last modified time
    Searched refs:atoi (Results 1 - 25 of 487) 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/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]);
ionice.c 21 if (!(pid = atoi(argv[1]))) {
48 ioprio = atoi(argv[3]);
ps.c 84 ppid = atoi(nexttok(&ptr));
87 tty = atoi(nexttok(&ptr));
96 utime = atoi(nexttok(&ptr));
97 stime = atoi(nexttok(&ptr));
104 prio = atoi(nexttok(&ptr));
105 nice = atoi(nexttok(&ptr));
126 rtprio = atoi(nexttok(&ptr)); // rt_priority
127 sched = atoi(nexttok(&ptr)); // scheduling policy
129 tty = atoi(nexttok(&ptr));
182 int tid = atoi(de->d_name)
    [all...]
renice.c 100 print_prio(atoi(argv[1]));
107 prio = atoi(argv[0]);
117 pid = atoi(argv[0]);
sendevent.c 71 event.type = atoi(argv[2]);
72 event.code = atoi(argv[3]);
73 event.value = atoi(argv[4]);
  /external/opencore/oscl/oscl/osclbase/src/
oscl_time.cpp 124 year = atoi(buf);
128 mon = atoi(buf);
132 day = atoi(buf);
134 hour = atoi(buf);
136 min = atoi(buf);
138 sec = atoi(buf);
169 day = atoi(*(ptr + 8) == ' ' ? (ptr + 9) : (ptr + 8));
170 hour = atoi(ptr + 11);
171 min = atoi(ptr + 14);
172 sec = atoi(ptr + 17)
    [all...]
  /system/vold/
DirectVolume.cpp 87 int major = atoi(evt->findParam("MAJOR"));
88 int minor = atoi(evt->findParam("MINOR"));
127 mDiskMajor = atoi(evt->findParam("MAJOR"));
128 mDiskMinor = atoi(evt->findParam("MINOR"));
132 mDiskNumParts = atoi(tmp);
167 int major = atoi(evt->findParam("MAJOR"));
168 int minor = atoi(evt->findParam("MINOR"));
175 part_num = atoi(tmp);
210 int major = atoi(evt->findParam("MAJOR"));
211 int minor = atoi(evt->findParam("MINOR"))
    [all...]
  /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]);
  /external/ppp/pppd/plugins/radius/
util.c 48 tm->tm_mday = atoi (&valstr[4]);
51 tm->tm_year = atoi (&valstr[7]) - 1900;
  /system/core/nexus/
SupplicantStateChangeEvent.cpp 35 mState = atoi(p + strlen("state=") + 1);
  /system/core/sh/
mystring.c 116 return atoi(s);
  /external/iptables/extensions/
libipt_ULOG.c 89 group_d = atoi(optarg);
128 if (atoi(optarg) < 0)
134 loginfo->copy_range = atoi(optarg);
142 if (atoi(optarg) < 1)
145 if (atoi(optarg) > ULOG_MAX_QLEN)
151 loginfo->qthreshold = atoi(optarg);
  /frameworks/base/media/libmedia/
MediaProfiles.cpp 150 atoi(atts[3]), atoi(atts[5]), atoi(atts[7]), atoi(atts[9]));
172 atoi(atts[3]), atoi(atts[5]), atoi(atts[7]));
232 atoi(atts[5]), atoi(atts[7]), atoi(atts[9]), atoi(atts[11]), atoi(atts[13])
    [all...]
  /dalvik/vm/alloc/
Float12.h 97 unsigned int min = atoi(argv[1]);
98 unsigned int max = atoi(argv[2]);
  /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/core/libacc/tests/data/
bellard.otccex.c 94 n = atoi(*(int *)(argv + 4));
97 base = atoi(*(int *)(argv + 8));
  /system/extras/tests/cpueater/
daemonize.c 59 delay = atoi(*argv);
61 delay = atoi(*++argv);
  /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);
  /external/webkit/WebCore/loader/
FTPDirectoryParser.cpp 569 result.modifiedTime.tm_mday = atoi(tokens[2]);
570 result.modifiedTime.tm_year = atoi(p+4); // NSPR wants year as XXXX
576 result.modifiedTime.tm_sec = atoi(p+3);
577 result.modifiedTime.tm_hour = atoi(tokens[3]);
578 result.modifiedTime.tm_min = atoi(p);
711 result.modifiedTime.tm_year = atoi(p+0) - 1900;
712 result.modifiedTime.tm_mon = atoi(p+5) - 1;
713 result.modifiedTime.tm_mday = atoi(p+8);
718 result.modifiedTime.tm_mon = atoi(p) - 1;
719 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]);

Completed in 1185 milliseconds

1 2 3 4 5 6 7 8 91011>>