/external/oprofile/libpopt/ |
findme.c | 17 char * start, * chptr; local 32 chptr = NULL; 35 if ((chptr = strchr(start, ':'))) 36 *chptr = '\0'; 42 if (chptr) 43 start = chptr + 1;
|
poptconfig.c | 98 const char * file, * chptr, * end; local 129 chptr = file; 131 /*@-infloops@*/ /* LCL: can't detect chptr++ */ 132 while (chptr < end) { 133 switch (*chptr) { 140 chptr++; 143 *dst++ = *chptr++; 144 if (chptr < end) { 145 if (*chptr == '\n') 146 dst--, chptr++; [all...] |
/system/extras/tests/wifi/stress/ |
wifiLoadScanAssoc.c | 130 char *chptr; local 143 delayMin = strtod(optarg, &chptr); 144 if ((*chptr != '\0') || (delayMin < 0.0)) { 152 delayMax = strtod(optarg, &chptr); 153 if ((*chptr != '\0') || (delayMax < 0.0)) { 161 duration = strtod(optarg, &chptr); 162 if ((*chptr != '\0') || (duration < 0.0)) { 180 startPass = strtoul(optarg, &chptr, 10); 181 if (*chptr != '\0') { 199 endPass = strtoul(optarg, &chptr, 10) [all...] |
/frameworks/native/opengl/tests/hwc/ |
hwcStress.cpp | 243 char *chptr; local 254 perSetDelay = strtod(optarg, &chptr); 255 if ((*chptr != '\0') || (perSetDelay < 0.0)) { 265 endDelay = strtod(optarg, &chptr); 266 if ((*chptr != '\0') || (endDelay < 0.0)) { 274 duration = strtod(optarg, &chptr); 275 if ((*chptr != '\0') || (duration < 0.0)) { 283 numSet = strtoul(optarg, &chptr, 10); 284 if (*chptr != '\0') { 299 startPass = strtoul(optarg, &chptr, 10) [all...] |
hwcColorEquiv.cpp | 169 char *chptr; local 186 endDelay = strtod(optarg, &chptr); 187 if ((*chptr != '\0') || (endDelay < 0.0)) {
|
hwcRects.cpp | 207 char *chptr; local 218 endDelay = strtod(optarg, &chptr); 219 if ((*chptr != '\0') || (endDelay < 0.0)) {
|
hwcCommit.cpp | 342 char *chptr; local [all...] |
/system/extras/tests/binder/benchmarks/ |
binderAddInts.cpp | 115 char *chptr; // character pointer for command-line parsing local 121 int cpu = strtoul(optarg, &chptr, 10); 122 if (*chptr != '\0') { 141 options.iterations = strtoul(optarg, &chptr, 10); 142 if (*chptr != '\0') { 154 options.iterDelay = strtod(optarg, &chptr); 155 if ((*chptr != '\0') || (options.iterDelay < 0.0)) {
|
/external/e2fsprogs/ext2ed/ |
main.c | 268 char * chptr = foo; local 279 if (chptr > foo) { 281 chptr--; 289 *chptr++ = ch; 294 *chptr = '\0';
|
/external/libvorbis/lib/ |
codebook.c | 448 int chptr=0; local 456 a[chptr++][i]+=t[j]; 457 if(chptr==ch){ 458 chptr=0;
|
/external/tremolo/Tremolo/ |
dpen.s | 407 MOV r10,r1 @ r10= 0xa[chptr] chptr=0 419 @ r10= 0xa[chptr] 432 LDR r2, [r10],#4 @ r2 = a[chptr++] 434 CMP r10,r8 @ if (chptr == ch) 435 SUBEQ r10,r10,r6, LSL #2 @ chptr = 0 436 LDR r14,[r2, r11,LSL #2]! @ r2 = 0xa[chptr++][i] r14=[r12] 440 ADD r12,r12,r14 @ r12= a[chptr++][i]+ v[j] 441 STR r12,[r2] @ r12= a[chptr++][i]+=v[j]
|
codebook.c | 884 int chptr=0; local 890 a[chptr++][i]+=v[j]; 891 if(chptr==ch){ 892 chptr=0;
|