/external/bison/lib/ |
timevar.c | 442 a special meaning -- it's considered to be the total elapsed time, 452 struct timevar_time_def *total = &timevars[TV_TOTAL].elapsed; local 481 /* Don't print the total execution time here; that goes at the 504 (total->user == 0 ? 0 : tv->elapsed.user / total->user) * 100); 511 (total->sys == 0 ? 0 : tv->elapsed.sys / total->sys) * 100); 518 (total->wall == 0 ? 0 : tv->elapsed.wall / total->wall) * 100); 524 /* Print total time. * [all...] |
/external/chromium/base/ |
observer_list_unittest.cc | 28 explicit Adder(int scaler) : total(0), scaler_(scaler) {} 30 total += x * scaler_; 33 int total; member in class:__anon3678::Adder 192 EXPECT_EQ(a.total, 20); 193 EXPECT_EQ(b.total, -20); 194 EXPECT_EQ(c.total, 0); 195 EXPECT_EQ(d.total, -10); 222 EXPECT_EQ(a.total, 20); 223 EXPECT_EQ(b.total, -20); 224 EXPECT_EQ(c.total, 0) [all...] |
/external/smack/src/org/apache/harmony/javax/security/auth/login/ |
LoginContext.java | 264 int[] total = new int[4]; local 273 ++total[module.getFlag()]; 290 ++total[REQUIRED]; 293 ++total[module.getFlag()]; 303 // Let's decide whether we have either overall success or a total failure 309 * Use 'logged[xx] != total[xx]' instead. This is because some modules 312 * the total[]. 316 if (logged[REQUIRED] != total[REQUIRED] || logged[REQUISITE] != total[REQUISITE]) { 319 if (total[REQUIRED] == 0 && total[REQUISITE] == 0) 424 int total = 0; local [all...] |
/frameworks/base/services/java/com/android/server/ |
DiskStatsService.java | 92 long total = statfs.getBlockCount(); local 93 if (bsize <= 0 || total <= 0) { 95 "Invalid stat: bsize=" + bsize + " avail=" + avail + " total=" + total); 102 pw.print(total * bsize / 1024); 103 pw.print("K total = "); 104 pw.print(avail * 100 / total);
|
/tools/external/fat32lib/src/main/java/de/waldheinz/fs/util/ |
RamDisk.java | 61 int total = 0; local 64 total += read; 69 if (total < DEFAULT_SECTOR_SIZE) throw new IOException( 70 "read only " + total + " bytes"); //NOI18N 72 final ByteBuffer bb = ByteBuffer.wrap(bos.toByteArray(), 0, total);
|
/external/qemu/slirp/ |
if.c | 55 int total; 63 total = ret; 64 while (n > total) { 65 ret = send(fd, bptr+total, n-total,0); 68 total += ret; 70 return total;
|
/external/qemu/slirp-android/ |
if.c | 55 int total; 63 total = ret; 64 while (n > total) { 65 ret = socket_send(fd, bptr+total, n-total); 68 total += ret; 70 return total;
|
/external/webrtc/src/common_audio/vad/ |
vad_core.c | 131 inst->total[0] = TOTAL_10MS_Q; 132 inst->total[1] = TOTAL_20MS_Q; 133 inst->total[2] = TOTAL_30MS_Q; 148 inst->total[0] = TOTAL_10MS_LBR; 149 inst->total[1] = TOTAL_20MS_LBR; 150 inst->total[2] = TOTAL_30MS_LBR; 165 inst->total[0] = TOTAL_10MS_AGG; 166 inst->total[1] = TOTAL_20MS_AGG; 167 inst->total[2] = TOTAL_30MS_AGG; 182 inst->total[0] = TOTAL_10MS_VAG [all...] |
/external/qemu/ |
qemu-io.c | 103 int count, int total, int cnt, int Cflag) 109 cvtstr((double)total, s1, sizeof(s1)); 110 cvtstr(tdiv((double)total, *t), s2, sizeof(s2)); 112 op, total, count, offset); 117 total, cnt, ts, 118 tdiv((double)total, *t), 176 static int do_read(char *buf, int64_t offset, int count, int *total) 183 *total = count; 187 static int do_write(char *buf, int64_t offset, int count, int *total) 194 *total = count 359 int total = 0; local 537 int total = 0; local 663 int total = 0; local 793 int total = 0; local 897 int total = 0; local [all...] |
/external/v8/test/mjsunit/compiler/ |
regress-8.js | 53 LA+(a.Un+(zE+(Fp+(LA+(a.Im+(zE+(AE+(LA+(a.total+Gob))))))))), 58 if(a.total>=2E6) { 63 if(a.total>=2E5) { 68 if(a.total>=2E4) { 73 if(a.total>=2E3) { 78 if(a.total>=200) { 85 LA+(a.Un+(zE+(Fp+(LA+(a.Im+(zE+(Mob+(LA+(a.total+zE))))))))), 101 LA+(a.Un+(zE+(Fp+(LA+(a.Im+(zE+(AE+(LA+(a.total+zE))))))))), 109 Nob(2, { Un: "" , Im: "" , total: 42});
|
/external/valgrind/main/massif/tests/ |
basic2.post.exp | 36 n time(B) total(B) useful-heap(B) extra-heap(B) stacks(B) 42 n time(B) total(B) useful-heap(B) extra-heap(B) stacks(B) 49 n time(B) total(B) useful-heap(B) extra-heap(B) stacks(B) 56 n time(B) total(B) useful-heap(B) extra-heap(B) stacks(B) 63 n time(B) total(B) useful-heap(B) extra-heap(B) stacks(B) 70 n time(B) total(B) useful-heap(B) extra-heap(B) stacks(B) 77 n time(B) total(B) useful-heap(B) extra-heap(B) stacks(B) 84 n time(B) total(B) useful-heap(B) extra-heap(B) stacks(B) 91 n time(B) total(B) useful-heap(B) extra-heap(B) stacks(B)
|
/external/opencv/cxcore/src/ |
cxdatastructs.cpp | 530 int count, total = seq->total; local 532 if( (unsigned)index >= (unsigned)total ) 534 index += index < 0 ? total : 0; 535 index -= index >= total ? total : 0; 536 if( (unsigned)index >= (unsigned)total ) 541 if( index + index <= total ) 554 total -= block->count; 556 while( index < total ); 611 int total = seq->total; local 645 int elem_size, total; local 996 int total = 0; local 1222 int elem_size, count, total; local 1464 int total; local 1589 int total, front = 0; local 1930 int total, length; local 2004 int i, elem_size, total, from_total; local 2459 int elem_size, i, j, total; local 3363 int i, total, elem_size; local 3399 int total, elem_size, index; local [all...] |
/external/opencv/cvaux/src/ |
cvhmm1d.cpp | 159 int total = num_obs.height * num_obs.width; 166 obs->obs = (float*)icvAlloc( total * obs_size * sizeof(float) ); 168 obs->state = (int*)icvAlloc( 2 * total * sizeof(int) ); 169 obs->mix = (int*)icvAlloc( total * sizeof(int) ); 333 int total = hmm->num_states; 337 num_samples = (int*)icvAlloc( total * sizeof(int) ); 340 counter = (int*)icvAlloc( total * sizeof(int) ); 342 samples = (CvVect32f**)icvAlloc( total * sizeof(CvVect32f*) ); 343 samples_mix = (int***)icvAlloc( total * sizeof(int**) ); 346 memset( num_samples, 0 , total*sizeof(int) ) [all...] |
cvsubdiv2.cpp | 47 int i, j, total = subdiv->edges->total; local 57 for( i = 0; i < total; i++ ) 166 int i, total = subdiv->edges->total; local 171 for( i = 0; i < total; i++ )
|
/external/e2fsprogs/util/ |
copy_sparse.c | 67 int got, total = 0; local 75 return total ? total : -1; 79 return total; 84 total += got; 87 return total;
|
/frameworks/av/media/libnbaio/ |
NBAIO.cpp | 141 ssize_t NBAIO_Sink::writeVia(writeVia_t via, size_t total, void *user, size_t block) 155 while (accumulator < total) { 156 size_t count = total - accumulator; 177 ssize_t NBAIO_Source::readVia(readVia_t via, size_t total, void *user, 192 while (accumulator < total) { 193 size_t count = total - accumulator;
|
/sdk/emulator/qtools/ |
profile_trace.cpp | 101 uint64_t total = 0; local 104 total += sym->elapsed; 107 double secs = 1.0 * total / kMHz; 108 printf("Total seconds: %.2f, total cycles: %lld, MHz: %d\n\n", 109 secs, total, kMHz / kMillion); 118 double per = 100.0 * sym->elapsed / total; 119 double sum_per = 100.0 * sum / total;
|
/dalvik/dx/src/com/android/dx/rop/code/ |
DexTranslationAdvice.java | 110 * Calculates the total rop width of the list of SSA registers 117 int total = 0; local 120 total += sources.get(i).getCategory(); 123 return total;
|
/external/dexmaker/src/dx/java/com/android/dx/rop/code/ |
DexTranslationAdvice.java | 110 * Calculates the total rop width of the list of SSA registers 117 int total = 0; local 120 total += sources.get(i).getCategory(); 123 return total;
|
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/noise/fractal/ |
FractalSum.java | 71 float total = 0;
local 74 total += this.basis.value(this.scale * x * f, this.scale * y * f, this.scale * z * f) * a;
77 return ShaderUtils.clamp(total, -1, 1);
|
/external/skia/gm/ |
verttext.cpp | 48 SkScalar total = paint.measureText(gText, gLen); local 54 paint.isVerticalText() ? x : x + total, 55 paint.isVerticalText() ? y + total : y,
|
/external/webkit/Source/WebCore/xml/ |
XMLHttpRequestProgressEventThrottle.cpp | 50 void XMLHttpRequestProgressEventThrottle::dispatchProgressEvent(bool lengthComputable, unsigned long long loaded, unsigned long long total) 57 // We should not have any pending loaded & total information from a previous run. 61 dispatchEvent(XMLHttpRequestProgressEvent::create(eventNames().progressEvent, lengthComputable, loaded, total)); 69 m_total = total;
|
/packages/apps/ContactsCommon/src/com/android/contacts/common/util/ |
StopWatch.java | 56 * Stop it and log the result, if the total time >= {@code timeThresholdToLog}. 65 final long total = stop - start; local 66 if (total < timeThresholdToLog) return; 71 sb.append(total);
|
/bionic/libc/kernel/common/linux/ |
smb.h | 40 __u16 total; member in struct:smb_dskattr
|
/bionic/libc/stdio/ |
fread.c | 53 size_t total; local 65 total = resid; 145 return ((total - resid) / size); 165 return ((total - resid) / size);
|