Searched refs:total (Results 176 - 200 of 551) sorted by relevance

1234567891011>>

/external/opencv/cvaux/src/
H A Dextendededges.cpp141 for( i = 0; i < current->total; i++ )
154 for( i = 0; i < current->total; i++ )
234 for( int i = 0; i < current->total; i++ )
/external/skia/tools/lua/
H A Dcount_effects.lua43 io.write("total paints ", total_paints, " ", tostr(effects), "\n");
/external/toybox/toys/pending/
H A Dtop.c60 unsigned long long total; member in struct:cpu_info
86 static struct cpu_info old_cpu[10], new_cpu[10]; //1 total, 8 cores, 1 null
464 long unsigned total, meminfo_cached, anon, meminfo_mapped, local
493 sprintf(toybuf, "Mem total:%lu anon:%lu map:%lu free:%lu",
503 sprintf(toybuf, "Swap total:%lu free:%lu",swapT, swapF);
512 for (k = 1; new_cpu[k].total; k++) {
519 total = (new_cpu[k].total) - (old_cpu[k].total);
520 if (!total) tota
[all...]
/external/valgrind/gdbserver_tests/
H A Dmcsignopass.stderr.exp12 total heap usage: 0 allocs, 0 frees, 0 bytes allocated
H A Dmcsigpass.stderr.exp12 total heap usage: 0 allocs, 0 frees, 0 bytes allocated
H A Dmcwatchpoints.stderr.exp19 total heap usage: 1 allocs, 1 frees, 50,000 bytes allocated
/external/valgrind/massif/tests/
H A Dpeak2.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)
60 n time(B) total(B) useful-heap(B) extra-heap(B) stacks(B)
72 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)
96 n time(B) total(B) useful-heap(B) extra-heap(B) stacks(B)
108 n time(B) total(B) useful-heap(B) extra-heap(B) stacks(B)
120 n time(B) total(B) useful-heap(B) extra-heap(B) stacks(B)
132 n time(B) total(B) useful-heap(B) extra-heap(B) stacks(B)
144 n time(B) total(
[all...]
H A Dpeak.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)
60 n time(B) total(B) useful-heap(B) extra-heap(B) stacks(B)
72 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)
96 n time(B) total(B) useful-heap(B) extra-heap(B) stacks(B)
108 n time(B) total(B) useful-heap(B) extra-heap(B) stacks(B)
120 n time(B) total(B) useful-heap(B) extra-heap(B) stacks(B)
132 n time(B) total(B) useful-heap(B) extra-heap(B) stacks(B)
144 n time(B) total(
[all...]
/external/valgrind/memcheck/tests/
H A Ddemangle.stderr.exp10 total heap usage: 3 allocs, 0 frees, 6 bytes allocated
H A Dpartiallydefinedeq.stderr.exp13 total heap usage: ... allocs, ... frees, ... bytes allocated
/external/bison/lib/
H A Dbitset_stats.c111 unsigned int total; local
113 total = 0;
115 total += bins[i];
117 if (!total)
125 (100.0 * bins[i]) / total);
135 unsigned int total; local
138 total = 0;
140 total += bins[i];
142 if (!total)
156 max_width, i, bins[i], 100.0 * bins[i] / total);
[all...]
/external/elfutils/src/lib/
H A Dmd5.c60 ctx->total[0] = ctx->total[1] = 0;
107 ctx->total[0] += bytes;
108 if (ctx->total[0] < bytes)
109 ++ctx->total[1];
115 const uint64_t bit_length = ((ctx->total[0] << 3)
116 + ((uint64_t) ((ctx->total[1] << 3) |
117 (ctx->total[0] >> 29)) << 32));
316 ctx->total[0] += len;
317 if (ctx->total[
[all...]
H A Dsha1.c60 ctx->total[0] = ctx->total[1] = 0;
105 ctx->total[0] += bytes;
106 if (ctx->total[0] < bytes)
107 ++ctx->total[1];
113 const uint64_t bit_length = ((ctx->total[0] << 3)
114 + ((uint64_t) ((ctx->total[1] << 3) |
115 (ctx->total[0] >> 29)) << 32));
242 ctx->total[0] += len;
243 if (ctx->total[
[all...]
/external/libvncserver/common/
H A Dmd5.c75 ctx->total[0] = ctx->total[1] = 0;
112 ctx->total[0] += bytes;
113 if (ctx->total[0] < bytes)
114 ++ctx->total[1];
120 *(md5_uint32 *) &ctx->buffer[bytes + pad] = SWAP (ctx->total[0] << 3);
121 *(md5_uint32 *) &ctx->buffer[bytes + pad + 4] = SWAP ((ctx->total[1] << 3) |
122 (ctx->total[0] >> 29));
314 ctx->total[0] += len;
315 if (ctx->total[
[all...]
H A Dmd5.h89 md5_uint32 total[2]; member in struct:md5_ctx
/external/webp/src/enc/
H A Dframe.c109 static int CalcSkipProba(uint64_t nb, uint64_t total) { argument
110 return (int)(total ? (total - nb) * 255 / total : 255);
131 // Return the total bit-cost for coding the probability updates.
132 static int CalcTokenProba(int nb, int total) { argument
133 assert(nb <= total);
134 return nb ? (255 - nb * 255 / total) : 255;
137 // Cost of coding 'nb' 1's and 'total-nb' 0's using 'proba' probability.
138 static int BranchCost(int nb, int total, in argument
157 const int total = (stats >> 16) & 0xffff; local
187 const int total = a + b; local
[all...]
/external/harfbuzz_ng/src/
H A Dgen-indic-table.py132 total = 0 variable
136 global total, used, last_block
153 total += end - start + 1
197 occupancy = used * 100. / total
/external/icu/icu4c/source/test/intltest/
H A Djamotest.cpp398 int32_t total = 0; local
402 ++total;
431 errln((UnicodeString)"Test word failures: " + errors + " out of " + total);
433 logln((UnicodeString)"All " + total + " test words passed");
/external/jmonkeyengine/engine/src/test/jme3test/post/
H A DTestRenderToMemory.java93 private long total; field in class:TestRenderToMemory.ImageDisplay
114 total += dt;
118 if (total > 1000){
120 total = 0;
/external/libmtp/examples/
H A Dpathutils.c116 int progress (const uint64_t sent, const uint64_t total, void const * const data) argument
118 int percent = (sent*100)/total;
120 printf("Progress: %I64u of %I64u (%d%%)\r", sent, total, percent);
122 printf("Progress: %llu of %llu (%d%%)\r", sent, total, percent);
/external/libopus/celt/
H A Drate.h94 @param total Number of bands
99 opus_int32 total, opus_int32 *balance, int *pulses, int *ebits, int *fine_priority, int C, int LM, ec_ctx *ec, int encode, int prev, int signalBandwidth);
/external/lzma/CPP/7zip/UI/Console/
H A DExtractCallbackConsole.h28 STDMETHOD(SetTotal)(UInt64 total);
/external/mesa3d/src/gallium/tests/unit/
H A Dtranslate_test.c66 unsigned total = 0; local
314 ++total;
322 printf("%u/%u tests passed for translate_%s\n", passed, total, argv[1]);
323 return passed != total;
/external/netperf/
H A Dhist.h56 int total; member in struct:histogram_struct
/external/okhttp/benchmarks/src/main/java/com/squareup/okhttp/benchmarks/
H A DNettyHttpClient.java139 int total; field in class:NettyHttpClient.HttpChannel
148 total = 0;
182 total += toRead;
188 total, TimeUnit.NANOSECONDS.toMillis(finish - start)));

Completed in 1344 milliseconds

1234567891011>>