Searched refs:total (Results 76 - 100 of 930) sorted by relevance

1234567891011>>

/external/libvpx/libvpx/third_party/libwebm/
H A Dmkvreader.cpp95 int MkvReader::Length(long long* total, long long* available) argument
100 if (total)
101 *total = m_length;
/external/lldb/test/python_api/value/linked_list/
H A Dmain.cpp36 int total = 0; local
40 ++total;
43 printf("We have a total number of %d tasks\n", total);
/external/oprofile/libutil++/
H A Dutility.h86 * @param total
88 * return total == 0 ? 1.0 : (count / total);
90 inline double op_ratio(double count, double total) argument
92 return total == 0 ? 0.0 : (count / total);
/external/skia/tests/
H A DAtomicTest.cpp35 int32_t total = base; local
38 total += gAdds[i].valueToAdd * gAdds[i].timesToAdd;
52 REPORTER_ASSERT(reporter, total == base);
/external/zlib/src/contrib/dotzlib/DotZLib/
H A DInflater.cs60 int total = count;
64 while (err >= 0 && inputIndex < total)
66 copyInput(data, inputIndex, Math.Min(total - inputIndex, kBufferSize));
/external/bison/lib/
H A Dtimevar.c442 a special meaning -- it's considered to be the total elapsed time,
452 struct timevar_time_def *total = &timevars[TV_TOTAL].elapsed; local
481 /* Don't print the total execution time here; that goes at the
504 (total->user == 0 ? 0 : tv->elapsed.user / total->user) * 100);
511 (total->sys == 0 ? 0 : tv->elapsed.sys / total->sys) * 100);
518 (total->wall == 0 ? 0 : tv->elapsed.wall / total->wall) * 100);
524 /* Print total tim
[all...]
/external/chromium_org/tools/telemetry/telemetry/timeline/
H A Dcounter.py98 total = 0
100 total += self.samples[i * self.num_series + j]
101 self.totals.append(total)
102 if max_total is None or total > max_total:
103 max_total = total
/external/smack/src/org/apache/harmony/javax/security/auth/login/
H A DLoginContext.java264 int[] total = new int[4];
273 ++total[module.getFlag()];
290 ++total[REQUIRED];
293 ++total[module.getFlag()];
303 // Let's decide whether we have either overall success or a total failure
309 * Use 'logged[xx] != total[xx]' instead. This is because some modules
312 * the total[].
316 if (logged[REQUIRED] != total[REQUIRED] || logged[REQUISITE] != total[REQUISITE]) {
319 if (total[REQUIRE
[all...]
/external/chromium_org/base/process/
H A Dprocess_metrics_unittest.cc146 EXPECT_TRUE(meminfo.total == 3981504);
162 EXPECT_TRUE(meminfo.total == 255908);
279 EXPECT_GT(info.total, 0);
288 // All the values should be less than the total amount of memory.
289 EXPECT_LT(info.free, info.total);
290 EXPECT_LT(info.buffers, info.total);
291 EXPECT_LT(info.cached, info.total);
292 EXPECT_LT(info.active_anon, info.total);
293 EXPECT_LT(info.inactive_anon, info.total);
294 EXPECT_LT(info.active_file, info.total);
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/network/
H A DRequestTimingView.js110 bar.style.right = Math.floor(scale * (total - end)) + "px";
114 if (total - end < start)
115 label.style.right = (scale * (total - end)) + "px";
155 addRow(WebInspector.UIString("Content Download"), "receiving", (request.responseReceivedTime - timing.requestTime) * 1000, total);
167 addRow(WebInspector.UIString("Content Download"), "receiving", (request.responseReceivedTime - timing.requestTime) * 1000, total);
173 var total = (endTime - timing.requestTime) * 1000;
175 var scale = chartWidth / total;
/external/qemu/slirp/
H A Dif.c55 int total;
63 total = ret;
64 while (n > total) {
65 ret = send(fd, bptr+total, n-total,0);
68 total += ret;
70 return total;
/external/qemu/slirp-android/
H A Dif.c55 int total;
63 total = ret;
64 while (n > total) {
65 ret = socket_send(fd, bptr+total, n-total);
68 total += ret;
70 return total;
/external/webrtc/src/common_audio/vad/
H A Dvad_core.c131 inst->total[0] = TOTAL_10MS_Q;
132 inst->total[1] = TOTAL_20MS_Q;
133 inst->total[2] = TOTAL_30MS_Q;
148 inst->total[0] = TOTAL_10MS_LBR;
149 inst->total[1] = TOTAL_20MS_LBR;
150 inst->total[2] = TOTAL_30MS_LBR;
165 inst->total[0] = TOTAL_10MS_AGG;
166 inst->total[1] = TOTAL_20MS_AGG;
167 inst->total[2] = TOTAL_30MS_AGG;
182 inst->total[
[all...]
/external/valgrind/main/massif/tests/
H A Dbasic2.post.exp36 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/linux-tools-perf/perf-3.12.0/tools/perf/
H A Dbuiltin-stat.c582 static void print_noise_pct(double total, double avg) argument
584 double pct = rel_stddev_stats(total, avg);
689 double total, ratio = 0.0; local
692 total = avg_stats(&runtime_cycles_stats[cpu]);
694 if (total)
695 ratio = avg / total * 100.0;
708 double total, ratio = 0.0; local
711 total = avg_stats(&runtime_cycles_stats[cpu]);
713 if (total)
714 ratio = avg / total * 100.
727 double total, ratio = 0.0; local
746 double total, ratio = 0.0; local
765 double total, ratio = 0.0; local
784 double total, ratio = 0.0; local
803 double total, ratio = 0.0; local
822 double total, ratio = 0.0; local
839 double total, ratio = 0.0; local
[all...]
/external/opencv/cxcore/src/
H A Dcxdatastructs.cpp530 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
685 cvMakeSeqHeaderForArray( int seq_flags, int header_size, int elem_size, void *array, int total, CvSeq *seq, CvSeqBlock * block ) argument
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/
H A Dcvhmm1d.cpp159 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*sizeo
[all...]
H A Dcvsubdiv2.cpp47 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/chromium_org/third_party/openmax_dl/dl/sp/src/test/
H A Dtest_util_fft.c190 int total; local
205 total = forward_results.test_count_ + inverse_results.test_count_;
209 if (total) {
214 total,
215 (100.0 * (total - failed)) / total);
/external/chromium_org/ui/webui/resources/js/cr/ui/table/
H A Dtable_column_model.js142 * The total width of the columns.
146 var total = 0;
148 total += this.columns_[i].width;
150 return total;
/external/e2fsprogs/util/
H A Dcopy_sparse.c67 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/
H A DClassHeaderReader.java153 int total = 0;
154 while (total < len) {
155 int result = in.read(b, off + total, len - total);
158 total += result;
160 return total;
/external/chromium_org/third_party/WebKit/Source/platform/
H A DPODFreeListArena.h105 int total = 0; local
107 total++;
109 return total;
/external/chromium_org/third_party/skia/gm/
H A Dverttext.cpp64 SkScalar total = paint.measureText(gText, gLen); local
70 paint.isVerticalText() ? x : x + total,
71 paint.isVerticalText() ? y + total : y,
/external/chromium_org/third_party/skia/src/core/
H A DSkChecksum.h34 static inline uintptr_t Mash(uintptr_t total, uintptr_t value) { argument
35 return ((total >> ROTR) | (total << ROTL)) ^ value;

Completed in 3377 milliseconds

1234567891011>>