Searched refs:total (Results 51 - 75 of 930) sorted by relevance

1234567891011>>

/external/chromium_org/chrome/browser/ui/cocoa/find_bar/
H A Dfind_bar_text_field_cell.h20 - (void)setActiveMatch:(NSInteger)current of:(NSInteger)total;
/external/chromium_org/ppapi/c/private/
H A Dppb_find_private.h60 int32_t total,
/external/chromium_org/third_party/WebKit/public/web/
H A DWebDOMResourceProgressEvent.h43 BLINK_EXPORT WebDOMResourceProgressEvent(const WebString& type, bool lengthIsComputable, unsigned long long loaded, unsigned long long total, const WebString& url);
/external/chromium_org/third_party/blanketjs/src/
H A Dqunit_adapter.js21 QUnit.done=function(failures, total) {
31 blanket.noConflict().onTestDone(details.total,details.passed);
50 QUnit.done(function(failures, total) {
60 blanket.noConflict().onTestDone(details.total,details.passed);
/external/chromium_org/third_party/libvpx/source/libvpx/third_party/libwebm/
H A Dmkvreader.hpp27 virtual int Length(long long* total, long long* available);
H A Dmkvreader.cpp86 int MkvReader::Length(long long* total, long long* available) { argument
90 if (total)
91 *total = m_length;
/external/libvpx/libvpx/third_party/libwebm/
H A Dmkvreader.hpp31 virtual int Length(long long* total, long long* available);
/external/linux-tools-perf/perf-3.12.0/tools/perf/ui/gtk/
H A Dprogress.c10 static void gtk_progress_update(u64 curr, u64 total, const char *title) argument
12 double fraction = total ? 1.0 * curr / total : 0.0;
35 snprintf(buf, sizeof(buf), "%"PRIu64" / %"PRIu64, curr, total);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/paddings/
H A DPaddedBufferedBlockCipher.java96 int total = len + bufOff;
97 int leftOver = total % buf.length;
103 return total + buf.length;
106 return total;
109 return total - leftOver + buf.length;
123 int total = len + bufOff;
124 int leftOver = total % buf.length;
128 return total - buf.length;
131 return total - leftOver;
/external/chromium_org/v8/test/mjsunit/compiler/
H A Dload-elimination-global.js95 var total = v;
98 total = a.x;
101 return total;
107 var total = v;
110 total = a.x; // a.x not affected by loop
115 total = a.x; // a.x not affected by loop
119 total = a.x;
124 total = a.x; // a.x not affected by loop
128 return total;
H A Dregress-8.js53 LA+(a.Un+(zE+(Fp+(LA+(a.Im+(zE+(AE+(LA+(a.total+Gob))))))))),
58 if(a.total>=2E6) {
63 if(a.total>=2E5) {
68 if(a.total>=2E4) {
73 if(a.total>=2E3) {
78 if(a.total>=200) {
85 LA+(a.Un+(zE+(Fp+(LA+(a.Im+(zE+(Mob+(LA+(a.total+zE))))))))),
101 LA+(a.Un+(zE+(Fp+(LA+(a.Im+(zE+(AE+(LA+(a.total+zE))))))))),
109 Nob(2, { Un: "" , Im: "" , total: 42});
/external/openssl/crypto/lhash/
H A Dlh_stats.c117 unsigned long total=0,n_used=0; local
126 total+=num;
130 fprintf(out,"%lu items\n",total);
133 (int)(total/lh->num_nodes),
134 (int)((total%lh->num_nodes)*100/lh->num_nodes),
135 (int)(total/n_used),
136 (int)((total%n_used)*100/n_used));
226 unsigned long total=0,n_used=0; local
235 total+=num;
239 BIO_printf(out,"%lu items\n",total);
[all...]
/external/chromium_org/ppapi/api/private/
H A Dppb_find_private.idl47 [in] int32_t total,
/external/chromium_org/ppapi/thunk/
H A Dppb_find_private_thunk.cc27 int32_t total,
33 enter.functions()->NumberOfFindResultsChanged(instance, total, final_result);
26 NumberOfFindResultsChanged(PP_Instance instance, int32_t total, PP_Bool final_result) argument
/external/chromium_org/third_party/skia/bench/
H A DMemoryBench.cpp36 size_t total = fMinSize * 64; variable
43 while (size < total) {
/external/chromium_org/tools/perf/benchmarks/
H A Dscirra.py50 total = int(tab.EvaluateJavaScript('window.sprites'))
52 results.current_page, 'Count', 'count', total))
H A Dcanvasmark.py35 total = 0
46 # Aggregate total score for all tests.
47 total += score
49 results.current_page, 'Score', 'score', total))
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/io/
H A DStreams.java73 long total = 0;
78 total += numRead;
79 if (total > limit)
85 return total;
/external/jemalloc/test/integration/
H A Dmallocx.c38 size_t nsz, rsz, sz, alignment, total; local
48 total = 0;
75 total += rsz;
76 if (total >= (MAXALIGN << 1))
H A Dposix_memalign.c69 size_t alignment, size, total; local
80 total = 0;
96 total += malloc_usable_size(ps[i]);
97 if (total >= (MAXALIGN << 1))
/external/chromium_org/native_client_sdk/src/examples/tutorial/load_progress/
H A Dexample.js28 // total The size of the NaCl module in bytes. Note that this value
32 // lengthComputable A boolean indicating that the |total| field
39 if (event.lengthComputable && event.total > 0) {
40 loadPercent = event.loaded / event.total * 100.0;
43 ' (' + event.loaded + ' of ' + event.total + ' bytes)');
45 // The total length is not yet known.
/external/chromium_org/third_party/WebKit/Source/core/xml/
H A DXMLHttpRequestUpload.cpp60 void XMLHttpRequestUpload::dispatchEventAndLoadEnd(const AtomicString& type, bool lengthComputable, unsigned long long bytesSent, unsigned long long total) argument
63 dispatchEvent(XMLHttpRequestProgressEvent::create(type, lengthComputable, bytesSent, total));
64 dispatchEvent(XMLHttpRequestProgressEvent::create(EventTypeNames::loadend, lengthComputable, bytesSent, total));
/external/chromium_org/third_party/WebKit/Source/web/tests/
H A DSpinLockTest.cpp58 int total = 0; local
60 total += buffer[i];
62 EXPECT_EQ(0, total);
/external/chromium_org/third_party/WebKit/Tools/Scripts/
H A Dcompare-timing-files77 my $total = 0;
80 $total += $results[$i];
82 my $average = $total / $count;
/external/chromium_org/third_party/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);

Completed in 781 milliseconds

1234567891011>>