HomeSort by relevance Sort by last modified time
    Searched refs:total (Results 151 - 175 of 2504) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/html/table/
Table.java 77 * @param total
88 final List<? extends ITableItem> items, final ICoverageNode total,
94 header(table, sortedItems, total);
95 footer(table, total, resources, base);
100 final List<? extends ITableItem> items, final ICoverageNode total)
104 c.init(tr, items, total);
108 private void footer(final HTMLElement table, final ICoverageNode total,
113 c.footer(tr, total, resources, base);
163 final ICoverageNode total) throws IOException {
164 visible = renderer.init(items, total);
178 renderer.footer(tr.td(style), total, resources, base); local
    [all...]
  /external/toybox/toys/net/
ftpget.c 59 int i, total = 0; local
62 while (total<len && (i = xread(fd, buf, len-total))) {
63 total += i;
64 if (buf[total-1] == '\n') break;
66 if (total>=len) error_exit("overflow");
67 while (total--)
68 if (buf[total]=='\r' || buf[total]=='\n') buf[total] = 0
    [all...]
  /external/ltp/testcases/commands/df/
df01.sh 125 local total=$(stat -f mntpoint --printf=%c)
127 local used=$((total-free))
129 local total=$(stat -f mntpoint --printf=%b)
131 local used=$((total-free))
133 total=$(($total * $bsize / 1024))
137 grep ${TST_DEVICE} output | grep -q "${total}.*${used}"
  /external/ltp/testcases/kernel/io/direct_io/
diotest4.c 76 int TST_TOTAL = 17; /* Total number of test conditions */
197 int i, l_fail = 0, fail_count = 0, total = 0; local
258 total++;
282 total++;
304 total++;
312 total++;
328 total++;
336 total++;
352 total++;
374 total++
    [all...]
  /external/valgrind/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/vixl/test/
test-invalset.cc 227 size_t total = 0; local
229 total += it->val_;
233 VIXL_CHECK(total == expected_total);
243 total = 0;
245 total += it->val_;
249 VIXL_CHECK(total == expected_total);
272 total = 0;
274 total += it->val_;
278 VIXL_CHECK(total == expected_total);
296 size_t total = 0 local
    [all...]
  /frameworks/av/media/img_utils/include/img_utils/
TiffEntryImpl.h 97 uint32_t total = getActualSize();
98 WORD_ALIGN(total)
99 return (total <= OFFSET_SIZE) ? 0 : total;
104 uint32_t total = sizeof(T) * mCount;
107 total <<= 1;
109 return total;
196 uint32_t total = 0; local
198 total += mData[i]->getSize();
200 return total;
    [all...]
  /frameworks/support/gridlayout/src/androidTest/java/androidx/gridlayout/widget/
GridLayoutTest.java 82 int total = mGridView.getWidth(); local
85 assertTrue("test sanity", total > 0);
95 int total = mGridView.getWidth(); local
98 assertTrue("test sanity", total > 0);
108 int total = mGridView.getWidth(); local
111 assertTrue("test sanity", total > 0);
125 assertEquals(total, left);
133 int total = mGridView.getHeight(); local
136 assertTrue("test sanity", total > 0);
138 assertTrue("total height should be smaller than what it could be"
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/zip/
GZIPInputStreamTest.java 178 int total; local
180 total = 0;
182 total += result;
186 assertEquals("Incorrectly decompressed", test.length, total);
189 total = 0;
191 total += result;
195 assertEquals("Incorrectly decompressed", test.length, total);
198 total = 0;
200 total += result;
204 assertEquals("Incorrectly decompressed", test.length, total);
    [all...]
  /external/python/cpython3/Lib/
statistics.py 111 If optional argument ``start`` is given, it is added to the total.
154 total = partials[None]
155 assert not _isfinite(total)
159 total = sum(Fraction(n, d) for d, n in sorted(partials.items()))
160 return (T, total, count)
312 T, total, count = _sum(data)
314 return _convert(total/n, T)
356 T, total, count = _sum(1/x for x in _fail_neg(data, errmsg))
360 return _convert(n/total, T)
536 T, total, count = _sum((x-c)**2 for x in data
    [all...]
  /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/autotest/client/site_tests/power_SuspendStress/
power_SuspendStress.py 22 @param duration: total run time of the test
104 total = len(self._suspender.failures)
105 iterations = len(self._suspender.successes) + total
112 if total == kernel + timeout:
115 (total, iterations, timeout, kernel))
116 if total == 1:
122 (total, iterations, timeout, kernel, firmware, spurious))
  /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;
  /external/jarjar/src/main/com/tonicsystems/jarjar/util/
ClassHeaderReader.java 153 int total = 0; local
154 while (total < len) {
155 int result = in.read(b, off + total, len - total);
158 total += result;
160 return total;
  /external/libevent/test/
bench_httpclient.c 181 struct timeval start, end, total; local
206 evutil_timersub(&end, &start, &total);
216 (total.tv_sec+ ((double)total.tv_usec)/1000000.0);
230 (int)total.tv_sec, (int)total.tv_usec,
  /frameworks/av/media/libnbaio/
NBAIO.cpp 64 ssize_t NBAIO_Sink::writeVia(writeVia_t via, size_t total, void *user, size_t block)
78 while (accumulator < total) {
79 size_t count = total - accumulator;
100 ssize_t NBAIO_Source::readVia(readVia_t via, size_t total, void *user, size_t block)
114 while (accumulator < total) {
115 size_t count = total - accumulator;
  /libcore/luni/src/test/java/libcore/java/util/zip/
DeflaterOutputStreamTest.java 149 int total = 0; local
151 int n = iis.read(input, total, input.length - total);
155 total += n;
156 if (total == input.length) {
165 assertEquals(output.length, total);
  /prebuilts/go/darwin-x86/src/cmd/cover/
func.go 31 // total: (statements) 91.9%
55 var total, covered int64
70 total += t
74 fmt.Fprintf(tabber, "total:\t(statements)\t%.1f%%\n", percent(covered, total))
138 var covered, total int64
149 total += int64(b.NumStmt)
154 return covered, total
167 func percent(covered, total int64) float64 {
168 if total == 0
    [all...]
  /prebuilts/go/linux-x86/src/cmd/cover/
func.go 31 // total: (statements) 91.9%
55 var total, covered int64
70 total += t
74 fmt.Fprintf(tabber, "total:\t(statements)\t%.1f%%\n", percent(covered, total))
138 var covered, total int64
149 total += int64(b.NumStmt)
154 return covered, total
167 func percent(covered, total int64) float64 {
168 if total == 0
    [all...]
  /system/extras/boottime_tools/io_analysis/
check_verity.py 109 io, verity, total, blocks = get_average_and_std_dev(l)
111 verity[0], verity[1], verity[2], "total:", total[0], total[1], total[2]
112 return io, verity, total, blocks
115 print "Numbers: average (us), stddev (us), total (us)"
116 io, verity, total, blocks = self.dump_list ("total,", self.reads)
121 "Verity:", verity_latency_per_1024KB, "Total:", total_latency_per_1024K
    [all...]
  /bionic/libc/bionic/
malloc_info.cpp 77 size_t total = 0; local
85 total += mi.ordblks;
88 Elem(fp, "bins-total").contents("%zu", total);
  /cts/tools/cts-api-coverage/src/com/android/cts/apicoverage/
ApiPackage.java 63 int total = 0; local
65 total += apiClass.getTotalMethods();
67 return total;
  /dalvik/dx/src/com/android/dx/rop/code/
DexTranslationAdvice.java 112 * Calculates the total rop width of the list of SSA registers
119 int total = 0; local
122 total += sources.get(i).getCategory();
125 return total;

Completed in 384 milliseconds

1 2 3 4 5 67 8 91011>>