Searched defs:total (Results 51 - 75 of 470) sorted by relevance

1234567891011>>

/external/fio/t/
H A Dlfsr-test.c37 double total, mean; local
115 total = (end.tv_sec - start.tv_sec) * pow(10,9) +
117 mean = total / fl->num_vals;
123 printf("Elapsed: %lf s\n", total / pow(10,9));
/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/type/
H A Dmain.cpp36 int total = 0; local
40 ++total;
43 printf("We have a total number of %d tasks\n", total);
/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/skia/experimental/PdfViewer/src/
H A DSkPdfDiffEncoder.cpp70 int total = 0; local
72 total++;
98 str.printf("Number of clips in stack: %i", total);
/external/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/base/
H A Dsys_info_win.cc60 ULARGE_INTEGER available, total, free; local
61 if (!GetDiskFreeSpaceExW(path.value().c_str(), &available, &total, &free)) {
/external/chromium_org/base/threading/
H A Dsimple_thread_unittest.cc60 int total, WaitableEvent* event)
61 : seq_(seq), total_(total), event_(event) { }
59 VerifyPoolRunner(AtomicSequenceNumber* seq, int total, WaitableEvent* event) argument
/external/chromium_org/chrome/browser/bitmap_fetcher/
H A Dbitmap_fetcher.cc61 int64 total) {
59 OnURLFetchDownloadProgress(const net::URLFetcher* source, int64 current, int64 total) argument
/external/chromium_org/chrome/browser/extensions/api/image_writer_private/
H A Dwrite_from_url_operation.cc105 int64 total) {
112 int64 total) {
119 int progress = (kProgressComplete * current) / total;
102 OnURLFetchUploadProgress( const net::URLFetcher* source, int64 current, int64 total) argument
109 OnURLFetchDownloadProgress( const net::URLFetcher* source, int64 current, int64 total) argument
/external/chromium_org/chrome/browser/history/
H A Ddownload_row.cc31 int64 total,
50 total_bytes(total),
19 DownloadRow( const base::FilePath& current_path, const base::FilePath& target_path, const std::vector<GURL>& url_chain, const GURL& referrer, const std::string& mime_type, const std::string& original_mime_type, const base::Time& start, const base::Time& end, const std::string& etag, const std::string& last_modified, int64 received, int64 total, content::DownloadItem::DownloadState download_state, content::DownloadDangerType danger_type, content::DownloadInterruptReason interrupt_reason, uint32 id, bool download_opened, const std::string& ext_id, const std::string& ext_name) argument
/external/chromium_org/chrome/browser/safe_browsing/
H A Dtwo_phase_uploader_unittest.cc27 void ProgressCallback(int64 current, int64 total) {} argument
/external/chromium_org/chrome/common/media_galleries/
H A Dpmp_test_util.cc48 std::vector<char> total; local
50 std::copy(a.begin(), a.end(), std::back_inserter(total));
51 std::copy(b.begin(), b.end(), std::back_inserter(total));
53 return total;
/external/chromium_org/net/base/
H A Dprioritized_dispatcher.cc101 size_t total = 0; local
103 total += limits.reserved_slots[i];
104 max_running_jobs_[i] = total;
107 DCHECK_LE(total, limits.total_jobs) << "sum(reserved_slots) <= total_jobs";
108 size_t spare = limits.total_jobs - total;
/external/chromium_org/ppapi/cpp/private/
H A Dfind_private.cc72 void Find_Private::NumberOfFindResultsChanged(int32_t total, argument
76 associated_instance_.pp_instance(), total, PP_FromBool(final_result));
/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/WebKit/Source/wtf/text/
H A DStringConcatenate.h293 inline void sumWithOverflow(unsigned& total, unsigned addend, bool& overflow) argument
295 unsigned oldTotal = total;
296 total = oldTotal + addend;
297 if (total < oldTotal)
/external/chromium_org/third_party/icu/source/test/perf/usetperf/
H A Dusetperf.cpp47 int32_t total; member in class:CmdOp
51 total = 0;
56 ++total;
61 return total;
/external/chromium_org/third_party/skia/debugger/
H A DSkDebugger.cpp87 int total = 0; local
115 total += counts[i];
140 totalStr.appendScalar(SkDoubleToScalar(total));
/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;
/external/chromium_org/third_party/skia/src/pathops/
H A DSkAddIntersections.cpp437 bool CoincidenceCheck(SkTArray<SkOpContour*, true>* contourList, int total) { argument
/external/chromium_org/third_party/skia/src/views/animated/
H A DSkScrollBarView.cpp53 void SkScrollBarView::setTotal(unsigned total) argument
55 if ((int)total < 0)
56 total = 0;
58 if (fTotalLength != total)
60 fTotalLength = total;
70 if (dom.findS32(node, "total", &value))
122 int total = fTotalLength; local
127 if (total <= 0 || shown <= 0 || shown >= total) // no bar to show
129 total
[all...]
/external/chromium_org/third_party/webrtc/common_audio/vad/
H A Dvad_core.h52 int16_t total[3]; member in struct:VadInstT_
/external/chromium_org/v8/src/
H A Druntime-profiler.cc91 int typeinfo, generic, total, type_percentage, generic_percentage; local
92 GetICCounts(function->shared()->code(), &typeinfo, &generic, &total,
94 PrintF(", ICs with typeinfo: %d/%d (%d%%)", typeinfo, total,
96 PrintF(", generic ICs: %d/%d (%d%%)", generic, total, generic_percentage);
238 int typeinfo, generic, total, type_percentage, generic_percentage; local
239 GetICCounts(shared_code, &typeinfo, &generic, &total, &type_percentage,
253 PrintF(", not enough type info: %d/%d (%d%%)]\n", typeinfo, total,
261 int typeinfo, generic, total, type_percentage, generic_percentage; local
262 GetICCounts(shared_code, &typeinfo, &generic, &total, &type_percentage,
/external/chromium_org/v8/test/cctest/
H A Dtest-fast-dtoa.cc234 int total = 0; local
241 total++;
251 CHECK_GT(succeeded*1.0/total, 0.99);
263 int total = 0; local
274 total++;
289 CHECK_GT(succeeded*1.0/total, 0.85);

Completed in 4555 milliseconds

1234567891011>>