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

1 2 3 4 5 6 7 891011>>

  /libcore/ojluni/src/main/java/sun/security/provider/certpath/
OCSP.java 248 int total = 0; local
249 while (total < contentLength) {
250 int count = in.read(response, total, response.length - total);
254 total += count;
255 if (total >= response.length && total < contentLength) {
256 response = Arrays.copyOf(response, total * 2);
259 response = Arrays.copyOf(response, total);
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
SelectionManager.java 157 int total = set.getMediaItemCount(); local
161 while (index < total) {
162 int count = index + batch < total
164 : total - index;
186 int total = getTotalCount(); local
187 for (int i = 0; i < total; i++) {
220 int total = getTotalCount(); local
222 while (index < total) {
223 int count = Math.min(total - index, MediaSet.MEDIAITEM_BATCH_FETCH_COUNT);
  /external/opencv/cvaux/src/
cvclique.cpp 95 for( int i = 0; i < graph->total; i++ )
108 for( int i = 0; i < graph->total; i++ )
110 for( int j = 0; j < graph->total; j++ )
114 //memset( connected[i], 0, sizeof(int)*graph->total );
137 finder->vertex_weights = (float*)malloc( sizeof(float)*(graph->total+1));
138 finder->cur_weight = (float*)malloc( sizeof(float)*(graph->total+1));
139 finder->cand_weight = (float*)malloc( sizeof(float)*(graph->total+1));
143 for( i = 0 ; i < graph->total; i++ )
158 finder->edge_weights = (float*)malloc( sizeof(float)*(graph->total)*(graph->total));
    [all...]
  /frameworks/base/tests/JankBench/scripts/external/
statistics.py 125 If optional argument ``start`` is given, it is added to the total.
167 total = partials[None]
168 assert not _isfinite(total)
172 total = sum(Fraction(n, d) for d, n in sorted(partials.items()))
173 return (T, total, count)
331 T, total, count = _sum(data)
333 return _convert(total/n, T)
503 T, total, count = _sum((x-c)**2 for x in data)
508 total -= total2**2/len(data)
509 assert not total < 0, 'negative sum of square deviations: %f' % tota
    [all...]
  /art/tools/ahat/src/main/com/android/ahat/
HeapTable.java 72 subcols.add(new Column("Total", Column.Align.RIGHT, showTotal));
86 long total = 0; local
91 total += size;
96 vals.add(DocString.size(total, elem.isPlaceHolder()));
97 vals.add(DocString.delta(elem.isPlaceHolder(), base.isPlaceHolder(), total, basetotal)); local
126 long total = 0; local
131 total += size;
136 vals.add(DocString.size(total, false));
137 vals.add(DocString.delta(false, false, total, basetotal));
  /external/brotli/c/enc/
bit_cost.h 22 size_t size, size_t *total) {
40 *total = sum;
  /external/dng_sdk/source/
dng_abort_sniffer.h 137 /// \param fract Percentage of total processing this task is expected to
174 /// \param fract Percentage of total processing this task is expected
214 /// \param total Total size of task in same arbitrary integer units as done.
217 uint32 total)
220 (real64) total);
  /external/eigen/unsupported/test/
cxx11_runqueue.cpp 164 std::atomic<int> total(0);
166 threads.emplace_back(new std::thread([&q, &total]() {
185 total += sum;
188 threads.emplace_back(new std::thread([&q, &total]() {
198 total += sum;
200 threads.emplace_back(new std::thread([&q, &total]() {
222 total -= sum;
227 VERIFY(total.load() == 0);
  /external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/html/table/
LabelColumn.java 36 final ICoverageNode total) {
40 public void footer(final HTMLElement td, final ICoverageNode total,
43 td.text("Total");
  /external/skia/tools/lua/
scrape.lua 21 local total = {} -- accumulate() stores its data in here
51 local n = total[t.verb] or 0
52 total[t.verb] = n + 1
78 io.write("\n{ ", tostr(total), " }\n")
  /external/skqp/tools/lua/
scrape.lua 21 local total = {} -- accumulate() stores its data in here
51 local n = total[t.verb] or 0
52 total[t.verb] = n + 1
78 io.write("\n{ ", tostr(total), " }\n")
  /external/toolchain-utils/mem_tests/
mem_groups.py 39 total = sum(group_totals) * 1.0 variable
40 to_join = [half_entry[0]] + [value / total for value in group_totals]
  /external/valgrind/exp-bbv/tests/x86/
million.S 5 # total is 1 + 1 + 499997*2 + 4
9 xor %ecx,%ecx # not needed, pads total to 1M
  /external/valgrind/massif/tests/
no-stack-no-heap.post.exp 36 n time(B) total(B) useful-heap(B) extra-heap(B) stacks(B)
null.post.exp 36 n time(B) total(B) useful-heap(B) extra-heap(B) stacks(B)
  /external/valgrind/memcheck/tests/
brk2.stderr.exp 5 total heap usage: ... allocs, ... frees, ... bytes allocated
bug287260.stderr.exp 6 total heap usage: 0 allocs, 0 frees, 0 bytes allocated
erringfds.stderr.exp 6 total heap usage: ... allocs, ... frees, ... bytes allocated
leak-autofreepool-2.stderr.exp 5 total heap usage: ... allocs, ... frees, ... bytes allocated
leak-autofreepool-6.stderr.exp 5 total heap usage: ... allocs, ... frees, ... bytes allocated
leak-pool-0.stderr.exp 5 total heap usage: ... allocs, ... frees, ... bytes allocated
leak-pool-1.stderr.exp 5 total heap usage: ... allocs, ... frees, ... bytes allocated
leak-pool-2.stderr.exp 5 total heap usage: ... allocs, ... frees, ... bytes allocated
leak-pool-3.stderr.exp 5 total heap usage: ... allocs, ... frees, ... bytes allocated
leak-pool-4.stderr.exp 5 total heap usage: ... allocs, ... frees, ... bytes allocated

Completed in 404 milliseconds

1 2 3 4 5 6 7 891011>>