Searched refs:total (Results 226 - 250 of 930) sorted by relevance

1234567891011>>

/external/libnfc-nci/halimpl/bcm2079x/gki/common/
H A Dgki_debug.c63 i, p->size, p->cur_cnt, p->max_cnt, p->total);
68 i, p->size, p->cur_cnt, p->max_cnt, p->total);
92 GKI_TRACE_5("pool:%4u free %4u cur %3u max %3u total%3u", i, gki_cb.com.freeq[i].size,
93 gki_cb.com.freeq[i].cur_cnt, gki_cb.com.freeq[i].max_cnt, gki_cb.com.freeq[i].total);
181 maxbuffs = gki_cb.com.freeq[pool].total;
183 print("Buffer Pool[%u] size=%u cur_cnt=%u max_cnt=%u total=%u\n",
185 gki_cb.com.freeq[pool].cur_cnt, gki_cb.com.freeq[pool].max_cnt, gki_cb.com.freeq[pool].total);
226 num_bufs = gki_cb.com.freeq[pool_id].total;
/external/libnfc-nci/src/gki/common/
H A Dgki_debug.c63 i, p->size, p->cur_cnt, p->max_cnt, p->total);
68 i, p->size, p->cur_cnt, p->max_cnt, p->total);
92 GKI_TRACE_5("pool:%4u free %4u cur %3u max %3u total%3u", i, gki_cb.com.freeq[i].size,
93 gki_cb.com.freeq[i].cur_cnt, gki_cb.com.freeq[i].max_cnt, gki_cb.com.freeq[i].total);
181 maxbuffs = gki_cb.com.freeq[pool].total;
183 print("Buffer Pool[%u] size=%u cur_cnt=%u max_cnt=%u total=%u\n",
185 gki_cb.com.freeq[pool].cur_cnt, gki_cb.com.freeq[pool].max_cnt, gki_cb.com.freeq[pool].total);
226 num_bufs = gki_cb.com.freeq[pool_id].total;
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
H A DConnectionPool.java210 /** Returns total number of connections in the pool. */
215 /** Returns total number of spdy connections in the pool. */
217 int total = 0;
219 if (connection.isSpdy()) total++;
221 return total;
224 /** Returns total number of http connections in the pool. */
226 int total = 0;
228 if (!connection.isSpdy()) total++;
230 return total;
/external/pixman/pixman/
H A Dpixman-filter.c244 double total; local
254 total = 0;
275 total += c;
281 total = 1 / total;
285 pixman_fixed_t t = (*p) * total + 0.5;
/external/valgrind/main/massif/tests/
H A Dcustom_alloc.post.exp36 n time(B) total(B) useful-heap(B) extra-heap(B) stacks(B)
46 n time(B) total(B) useful-heap(B) extra-heap(B) stacks(B)
58 n time(B) total(B) useful-heap(B) extra-heap(B) stacks(B)
H A Drealloc.post.exp36 n time(B) total(B) useful-heap(B) extra-heap(B) stacks(B)
48 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)
H A Dzero1.post.exp36 n time(B) total(B) useful-heap(B) extra-heap(B) stacks(B)
52 n time(B) total(B) useful-heap(B) extra-heap(B) stacks(B)
68 n time(B) total(B) useful-heap(B) extra-heap(B) stacks(B)
H A Dzero2.post.exp36 n time(B) total(B) useful-heap(B) extra-heap(B) stacks(B)
52 n time(B) total(B) useful-heap(B) extra-heap(B) stacks(B)
68 n time(B) total(B) useful-heap(B) extra-heap(B) stacks(B)
H A Dignoring.post.exp36 n time(B) total(B) useful-heap(B) extra-heap(B) stacks(B)
44 n time(B) total(B) useful-heap(B) extra-heap(B) stacks(B)
54 n time(B) total(B) useful-heap(B) extra-heap(B) stacks(B)
67 n time(B) total(B) useful-heap(B) extra-heap(B) stacks(B)
95 n time(B) total(B) useful-heap(B) extra-heap(B) stacks(B)
110 n time(B) total(B) useful-heap(B) extra-heap(B) stacks(B)
125 n time(B) total(B) useful-heap(B) extra-heap(B) stacks(B)
140 n time(B) total(B) useful-heap(B) extra-heap(B) stacks(B)
155 n time(B) total(B) useful-heap(B) extra-heap(B) stacks(B)
171 n time(B) total(
[all...]
/external/chromium_org/ui/file_manager/gallery/js/image_editor/
H A Dfilter.js294 var total = 0;
301 total++;
307 if (total == 0) return { r: 0, g: 0, b: 0 };
308 return { r: r / total, g: g / total, b: b / total };
322 var total = 0;
338 total += weight;
345 if (total == 0) return { r: 0, g: 0, b: 0 };
346 return { r: r / total,
[all...]
/external/elfutils/0.153/src/
H A Dsize.c83 { "totals", 't', NULL, 0, N_("Display the total sizes (bsd only)"), 0 },
113 /* Show total size. */
158 /* True if total sizes should be printed. */
160 /* To print the total sizes in a reasonable format remember the higest
204 /* Print the total sizes but only if the output format is BSD and at
461 GElf_Off total = 0; local
475 total += shdr->sh_size;
481 digits - 2, total);
484 digits - 2, total);
487 digits - 2, total);
510 GElf_Off total = 0; local
627 GElf_Off total = 0; local
[all...]
/external/blktrace/btt/
H A Doutput.c71 ap->avg = BIT_TIME(ap->total) / (double)ap->n;
103 ap->avg = BIT_TIME(ap->total) / (double)ap->n;
165 unsigned long long nq, nd, blkmin, blkmax, total; member in struct:__anon395
185 blks_avg = (double)dip->avgs.blks.total / d2c_n;
195 (unsigned long long)dip->avgs.blks.total);
207 (unsigned long long)dip->avgs.blks.total);
217 merge_data.total += dip->avgs.blks.total;
238 merge_data.total / merge_data.nd,
239 merge_data.blkmax, merge_data.total);
245 __u64 total; member in struct:__ohead_data
[all...]
/external/pcre/dist/
H A Dpcre_jit_test.c1122 int total = 0; local
1201 total++;
1434 return_value8[0], return_value8[1], total, current->pattern, current->input);
1441 return_value16[0], return_value16[1], total, current->pattern, current->input);
1448 return_value32[0], return_value32[1], total, current->pattern, current->input);
1456 total, current->pattern, current->input);
1464 total, current->pattern, current->input);
1472 total, current->pattern, current->input);
1516 total, current->pattern, current->input);
1524 total, curren
[all...]
/external/chromium_org/third_party/angle/src/libEGL/
H A DConfig.cpp154 // Sorting rule #3: by larger total number of color bits, not considering
174 EGLint total = 0; local
176 if (mWantRed) total += config.mRedSize;
177 if (mWantGreen) total += config.mGreenSize;
178 if (mWantBlue) total += config.mBlueSize;
179 if (mWantAlpha) total += config.mAlphaSize;
180 if (mWantLuminance) total += config.mLuminanceSize;
182 return total;
204 // By larger total number of color bits, only considering those that are requested to be > 0.
228 // but the same total
[all...]
/external/chromium_org/third_party/icu/source/samples/ucnv/
H A Dconvsamp.cpp302 uint32_t letters=0, total=0; local
360 total++;
365 printf("%d letters out of %d total UChars.\n", letters, total);
398 uint32_t letters=0, total=0; local
449 fprintf(stderr, "%s @ %d\n", u_errorName(status), total);
454 total++;
481 printf("%d letters out of %d total UChars.\n", letters, total);
881 uint32_t inbytes=0, total local
987 uint32_t inchars=0, total=0; local
[all...]
/external/icu/icu4c/source/samples/ucnv/
H A Dconvsamp.cpp302 uint32_t letters=0, total=0; local
360 total++;
365 printf("%d letters out of %d total UChars.\n", letters, total);
398 uint32_t letters=0, total=0; local
449 fprintf(stderr, "%s @ %d\n", u_errorName(status), total);
454 total++;
481 printf("%d letters out of %d total UChars.\n", letters, total);
881 uint32_t inbytes=0, total local
987 uint32_t inchars=0, total=0; local
[all...]
/external/linux-tools-perf/perf-3.12.0/tools/perf/ui/gtk/
H A Dhists.c51 u64 total = pair->hists->stats.total_period; local
66 percent = 100.0 * period / total;
136 GtkTreeIter *parent, int col, u64 total)
152 percent = 100.0 * hits / total;
181 child_total = total;
316 u64 total; local
319 total = h->stat.period;
321 total = hists->stats.total_period;
324 sym_col, total);
135 perf_gtk__add_callchain(struct rb_root *root, GtkTreeStore *store, GtkTreeIter *parent, int col, u64 total) argument
/external/chromium_org/third_party/boringssl/src/crypto/perlasm/
H A Dcbc.pl312 $total=16+4;
313 $total+=4 if ($p1 > 0);
314 $total+=4 if ($p2 > 0);
315 $total+=4 if ($p3 > 0);
316 &add("esp",$total);
/external/chromium_org/third_party/sqlite/src/tool/
H A Dspaceanal.tcl274 statline {Percentage of total database} $total_pages_percent
348 # free_pgcnt: Free pages calculated as (<total pages> - <in-use pages>)
358 # user_percent: $user_payload as a percentage of total file size.
464 the total number of pages in the file.
470 divided by the total number of pages in the file.
484 The total number of indices in the database.
497 The total amount of disk space used by the entire database files.
501 The total number of bytes of user payload stored in the database. The
504 divided by the total file size.
506 Percentage of total databas
[all...]
/external/chromium_org/tools/
H A Disolate_driver.py88 total = 1
94 total += load_ninja_recursively(build_dir, rel_path, build_steps)
98 return total
104 total = load_ninja_recursively(build_dir, 'build.ninja', build_steps)
105 logging.info('Loaded %d ninja files, %d build steps', total, len(build_steps))
/external/iproute2/netem/
H A Dmaketable.c123 cumulativedist(int *table, int limit, int *total) argument
131 *total = accum;
204 int total; local
227 cumulativedist(table, DISTTABLESIZE, &total);
228 inverse = inverttable(table, TABLESIZE, DISTTABLESIZE, total);
/external/openssl/crypto/perlasm/
H A Dcbc.pl312 $total=16+4;
313 $total+=4 if ($p1 > 0);
314 $total+=4 if ($p2 > 0);
315 $total+=4 if ($p3 > 0);
316 &add("esp",$total);
/external/qemu/util/
H A Doslib-posix.c118 size_t total = size + align - getpagesize(); local
119 void *ptr = mmap(0, total, PROT_READ | PROT_WRITE,
128 total -= offset;
133 if (total > size) {
134 munmap(ptr + size, total - size);
/external/skia/tests/
H A Dskia_test.cpp70 explicit DebugfReporter(int total) : fDone(0), fTotal(total) {} argument
178 int total = 0; local
188 total++;
200 for (int i = 0; i < total; i++) {
/external/srec/tools/cmd/
H A Dsrecres2utd.pl127 $results{total} ||= 1;
128 $rr = $results{correct}/$results{total} * 100;
130 print sprintf("%-45s RR %4.1f %d/%d (%d oovs)\n", $base, $rr, $results{correct}, $results{total}, $results{numoovs});
156 $results->{total}++;
160 $results->{total}++;

Completed in 495 milliseconds

1234567891011>>