Searched refs:total (Results 1 - 25 of 930) sorted by relevance

1234567891011>>

/external/chromium_org/v8/test/webkit/
H A Ddfg-put-scoped-var-backward-flow.js29 var total = 0;
31 total += num;
33 return total;
/external/chromium_org/third_party/lcov/example/methods/
H A Diterate.c8 * get the total sum. As a positive side effect, we're able to easily detect
21 int i, total; local
23 total = 0;
33 if (total + i < total)
41 total += i;
44 return total;
/external/chromium_org/third_party/mesa/src/src/glsl/tests/
H A Doptimization-test3 total=0
10 total=$((total+1))
21 echo "$pass/$total tests returned correct results"
24 if [[ $pass == $total ]]; then
/external/mesa3d/src/glsl/tests/
H A Doptimization-test3 total=0
10 total=$((total+1))
21 echo "$pass/$total tests returned correct results"
24 if [[ $pass == $total ]]; then
/external/chromium_org/net/url_request/
H A Durl_fetcher_delegate.cc10 const URLFetcher* source, int64 current, int64 total) {}
13 const URLFetcher* source, int64 current, int64 total) {}
9 OnURLFetchDownloadProgress( const URLFetcher* source, int64 current, int64 total) argument
12 OnURLFetchUploadProgress( const URLFetcher* source, int64 current, int64 total) argument
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebDOMProgressEvent.cpp39 WebDOMProgressEvent::WebDOMProgressEvent(const WebString& type, bool lengthIsComputable, unsigned long long loaded, unsigned long long total) argument
40 : WebDOMEvent(ProgressEvent::create(type, lengthIsComputable, loaded, total))
H A DWebDOMResourceProgressEvent.cpp39 WebDOMResourceProgressEvent::WebDOMResourceProgressEvent(const WebString& type, bool lengthIsComputable, unsigned long long loaded, unsigned long long total, const WebString& url) argument
42 assign(ResourceProgressEvent::create(type, lengthIsComputable, loaded, total, url));
/external/oauth/core/src/main/java/net/oauth/client/
H A DExcerptInputStream.java22 int total = 0;
24 while ((read = read(excerpt, total, LIMIT - total)) != -1 && ((total += read) < LIMIT));
25 if (total == LIMIT) {
27 System.arraycopy(ELLIPSIS, 0, excerpt, total, ELLIPSIS.length);
29 byte[] tmp = new byte[total];
30 System.arraycopy(excerpt, 0, tmp, 0, total);
/external/linux-tools-perf/perf-3.12.0/tools/perf/ui/
H A Dprogress.c5 u64 total __maybe_unused,
17 void ui_progress__update(u64 curr, u64 total, const char *title) argument
19 return progress_fns->update(curr, total, title);
H A Dprogress.h15 void ui_progress__update(u64 curr, u64 total, const char *title);
/external/chromium_org/tools/memory_inspector/memory_inspector/classification/
H A Dresults_unittest.py33 self.assertEqual(result.total.name, 'Total')
34 self.assertEqual(len(result.total.children), 3)
35 self.assertEqual(result.total.children[0].name, 'a*')
36 self.assertEqual(result.total.children[1].name, 'b*')
37 self.assertEqual(result.total.children[2].name, 'Total-other')
38 self.assertEqual(result.total.children[0].children[0].name, 'az*')
39 self.assertEqual(result.total.children[0].children[1].name, 'a*-other')
49 self.assertEqual(result.total.values, [49, 56])
50 self.assertEqual(result.total.children[0].values, [9, 12])
51 self.assertEqual(result.total
[all...]
/external/chromium_org/third_party/WebKit/Source/modules/mediasource/
H A DHTMLVideoElementMediaSource.cpp45 unsigned total = 0; local
50 total = webMediaPlayer->decodedFrameCount();
55 return VideoPlaybackQuality::create(videoElement.document(), total, dropped, corrupted);
/external/chromium_org/third_party/WebKit/Source/core/events/
H A DProgressEvent.cpp34 , total(0)
49 , m_total(initializer.total)
53 ProgressEvent::ProgressEvent(const AtomicString& type, bool lengthComputable, unsigned long long loaded, unsigned long long total) argument
57 , m_total(total)
H A DProgressEvent.h38 unsigned long long total; member in struct:blink::ProgressEventInit
48 static PassRefPtrWillBeRawPtr<ProgressEvent> create(const AtomicString& type, bool lengthComputable, unsigned long long loaded, unsigned long long total) argument
50 return adoptRefWillBeNoop(new ProgressEvent(type, lengthComputable, loaded, total));
59 unsigned long long total() const { return m_total; } function in class:blink::ProgressEvent
67 ProgressEvent(const AtomicString& type, bool lengthComputable, unsigned long long loaded, unsigned long long total);
/external/stlport/test/unit/
H A Dtimes_test.cpp32 int total = accumulate(input, input + 4, 1, multiplies<int>()); local
33 CPPUNIT_ASSERT(total==70);
/external/chromium_org/third_party/WebKit/Source/core/xml/
H A DXMLHttpRequestProgressEvent.h41 static PassRefPtrWillBeRawPtr<XMLHttpRequestProgressEvent> create(const AtomicString& type, bool lengthComputable = false, unsigned long long loaded = 0, unsigned long long total = 0)
43 return adoptRefWillBeNoop(new XMLHttpRequestProgressEvent(type, lengthComputable, loaded, total));
48 unsigned long long totalSize() const { return total(); }
57 XMLHttpRequestProgressEvent(const AtomicString& type, bool lengthComputable, unsigned long long loaded, unsigned long long total) argument
58 : ProgressEvent(type, lengthComputable, loaded, total) { }
/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/compiler-rt/test/asan/TestCases/
H A Dmmap_limit_mb.cc26 for (long total = total_mb << 20; total > 0; total -= allocation_size)
/external/linux-tools-perf/perf-3.12.0/tools/perf/ui/tui/
H A Dprogress.c7 static void tui_progress__update(u64 curr, u64 total, const char *title) argument
17 if (total == 0)
28 bar = ((SLtt_Screen_Cols - 2) * curr) / total;
/external/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/valgrind/main/exp-bbv/tests/amd64-linux/
H A Dmillion.S3 # total is 2 + 1 + 499997*2 + 3
7 xor %rcx,%rcx # not needed, pads total to 1M
8 xor %rax,%rax # not needed, pads total to 1M
/external/chromium_org/third_party/WebKit/public/web/
H A DWebDOMProgressEvent.h43 BLINK_EXPORT WebDOMProgressEvent(const WebString& type, bool lengthIsComputable, unsigned long long loaded, unsigned long long total);
/external/chromium_org/third_party/skia/src/pathops/
H A DSkAddIntersections.h16 bool CoincidenceCheck(SkTArray<SkOpContour*, true>* contourList, int total);
/external/lzma/CPP/7zip/Archive/Common/
H A DMultiStream.h30 UInt64 total = 0; local
34 s.GlobalOffset = total;
35 total += Streams[i].Size;
38 _totalLength = total;
/external/lzma/CPP/7zip/
H A DIProgress.h12 STDMETHOD(SetTotal)(UInt64 total) x; \
28 STDMETHOD(SetTotal)(const UInt64 *total) PURE;

Completed in 639 milliseconds

1234567891011>>