HomeSort by relevance Sort by last modified time
    Searched refs:total (Results 326 - 350 of 1239) sorted by null

<<11121314151617181920>>

  /external/valgrind/gdbserver_tests/
mcsigpass.stderr.exp 12 total heap usage: 0 allocs, 0 frees, 0 bytes allocated
mcwatchpoints.stderr.exp 19 total heap usage: 1 allocs, 1 frees, 50,000 bytes allocated
  /external/valgrind/massif/tests/
peak2.post.exp 36 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(B) useful-heap(B) extra-heap(B) stacks(B
    [all...]
peak.post.exp 36 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(B) useful-heap(B) extra-heap(B) stacks(B
    [all...]
  /external/valgrind/memcheck/tests/
demangle.stderr.exp 10 total heap usage: 3 allocs, 0 frees, 6 bytes allocated
partiallydefinedeq.stderr.exp 13 total heap usage: ... allocs, ... frees, ... bytes allocated
  /frameworks/av/include/media/nbaio/
NBAIO.h 186 // total Estimate of the number of frames the provider has available. This is an estimate,
192 // > 0 Total number of frames successfully transferred prior to first error.
211 virtual ssize_t writeVia(writeVia_t via, size_t total, void *user, size_t block = 0);
228 // Returns NO_ERROR if a timestamp is available. The timestamp includes the total number
291 // total Estimate of the number of frames the consumer desires. This is an estimate,
299 // > 0 Total number of frames successfully transferred prior to first error.
318 virtual ssize_t readVia(readVia_t via, size_t total, void *user,
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/third_party/libwebm/
mkvparser.cpp 40 // long long total, available;
41 // status = pReader->Length(&total, &available);
43 // assert((total < 0) || (available <= total));
111 long long total, available; local
113 int status = pReader->Length(&total, &available);
115 assert((total < 0) || (available <= total));
377 long long total, available; local
379 const long status = pReader->Length(&total, &available)
425 long long total, available; local
506 long long total, available; local
748 long long total, available; local
872 long long total, available; local
1093 long long total, avail; local
2092 long long total, avail; local
3244 long long total, avail; local
3521 long long total, avail; local
3636 long long total, avail; local
    [all...]
  /libcore/luni/src/test/java/libcore/java/net/
SocketTest.java 311 int total = 0; local
313 while (total < data.length) {
314 total += in.read(readBuffer);
411 int total = 0; local
412 while (total < receiveByteCount) {
413 total += in.read(result, total, result.length - total);
  /external/bison/lib/
bitset_stats.c 111 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/
md5.c 60 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[0] < len
    [all...]
sha1.c 60 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[0] < len
    [all...]
  /external/libvncserver/common/
md5.c 75 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[0] < len
    [all...]
md5.h 89 md5_uint32 total[2]; member in struct:md5_ctx
  /external/webp/src/enc/
frame.c 109 static int CalcSkipProba(uint64_t nb, uint64_t total) {
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) {
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, int proba)
157 const int total = (stats >> 16) & 0xffff; local
187 const int total = a + b; local
    [all...]
  /build/tools/releasetools/
rangelib.py 197 """Returns the total size of the RangeSet (ie, how many integers
204 total = 0
207 total += p
209 total -= p
210 return total
  /cts/tools/tradefed-host/src/com/android/cts/tradefed/result/
TestSuite.java 231 int total = 0; local
233 total += suite.countTests(status);
236 total += testCase.countTests(status);
238 return total;
  /development/scripts/
compare-installed-size.py 81 total = 0
  /external/harfbuzz_ng/src/
gen-indic-table.py 132 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/
jamotest.cpp 398 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/
TestRenderToMemory.java 93 private long total; field in class:TestRenderToMemory.ImageDisplay
114 total += dt;
118 if (total > 1000){
120 total = 0;
  /external/libmtp/examples/
pathutils.c 116 int progress (const uint64_t sent, const uint64_t total, void const * const data)
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/
rate.h 94 @param total Number of bands
96 @return Total number of bits allocated
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/
ExtractCallbackConsole.h 28 STDMETHOD(SetTotal)(UInt64 total);
  /external/mesa3d/src/gallium/tests/unit/
translate_test.c 66 unsigned total = 0; local
314 ++total;
322 printf("%u/%u tests passed for translate_%s\n", passed, total, argv[1]);
323 return passed != total;

Completed in 1937 milliseconds

<<11121314151617181920>>