Searched refs:total (Results 251 - 275 of 930) sorted by relevance

<<11121314151617181920>>

/external/pdfium/core/src/fdrm/crypto/
H A Dfx_crypt_sha.cpp165 FX_DWORD total[2]; member in struct:__anon28557
187 ctx->total[0] = 0;
188 ctx->total[1] = 0;
325 left = ctx->total[0] & 0x3F;
327 ctx->total[0] += length;
328 ctx->total[0] &= 0xFFFFFFFF;
329 if( ctx->total[0] < length ) {
330 ctx->total[1]++;
362 high = ( ctx->total[0] >> 29 )
363 | ( ctx->total[
388 FX_UINT64 total[2]; member in struct:__anon28558
[all...]
H A Dfx_crypt.cpp61 FX_DWORD total[2]; member in struct:md5_context
187 ctx->total[0] = 0;
188 ctx->total[1] = 0;
201 left = ( ctx->total[0] >> 3 ) & 0x3F;
203 ctx->total[0] += length << 3;
204 ctx->total[1] += length >> 29;
205 ctx->total[0] &= 0xFFFFFFFF;
206 ctx->total[1] += ctx->total[0] < length << 3;
234 PUT_FX_DWORD( ctx->total[
[all...]
/external/chromium_org/third_party/boringssl/src/crypto/x509v3/
H A Dv3_utl.c1108 int total; member in struct:__anon11661
1119 v6stat.total = 0;
1134 if (v6stat.total != 16)
1140 if (v6stat.total == 16)
1148 if (v6stat.total > 0)
1155 && (v6stat.zero_pos != v6stat.total))
1162 || (v6stat.zero_pos == v6stat.total))
1174 memset(v6 + v6stat.zero_pos, 0, 16 - v6stat.total);
1176 if (v6stat.total != v6stat.zero_pos)
1177 memcpy(v6 + v6stat.zero_pos + 16 - v6stat.total,
[all...]
/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/gpu/command_buffer/service/
H A Dprogram_cache.cc93 size_t total = 0; local
95 total += 4 + it->first.length();
97 return total;
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/
H A Dxmlreport.py122 total, taken = branch_stats[line]
125 "%d%% (%d/%d)" % (100*taken/total, taken, 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/tests/
H A DRandomTest.cpp133 int total = 0; local
137 total += (entry & 0x1);
143 double z = ((kN-total)-kMean)/kStandardDeviation;
/external/chromium_org/tools/deep_memory_profiler/subcommands/
H A Dexpand.py68 total = 0
72 total += size_pair[1]
73 LOGGER.info('total: %d\n' % total)
/external/chromium_org/tools/telemetry/telemetry/core/platform/power_monitor/
H A Dsysfs_power_monitor.py160 # the total time in a state or frequency and how many cores report a time.
164 total = 0
170 total += current_cpu[state]
172 current_cpu[state] /= (float(total) / 100.0)
/external/eigen/bench/
H A Dbench_gemm.cpp202 std::cout << "blas cpu " << tblas.best(CPU_TIMER)/rep << "s \t" << (double(m)*n*p*rep*2/tblas.best(CPU_TIMER))*1e-9 << " GFLOPS \t(" << tblas.total(CPU_TIMER) << "s)\n";
203 std::cout << "blas real " << tblas.best(REAL_TIMER)/rep << "s \t" << (double(m)*n*p*rep*2/tblas.best(REAL_TIMER))*1e-9 << " GFLOPS \t(" << tblas.total(REAL_TIMER) << "s)\n";
209 std::cout << "eigen cpu " << tmt.best(CPU_TIMER)/rep << "s \t" << (double(m)*n*p*rep*2/tmt.best(CPU_TIMER))*1e-9 << " GFLOPS \t(" << tmt.total(CPU_TIMER) << "s)\n";
210 std::cout << "eigen real " << tmt.best(REAL_TIMER)/rep << "s \t" << (double(m)*n*p*rep*2/tmt.best(REAL_TIMER))*1e-9 << " GFLOPS \t(" << tmt.total(REAL_TIMER) << "s)\n";
220 std::cout << "eigen mono cpu " << tmono.best(CPU_TIMER)/rep << "s \t" << (double(m)*n*p*rep*2/tmono.best(CPU_TIMER))*1e-9 << " GFLOPS \t(" << tmono.total(CPU_TIMER) << "s)\n";
221 std::cout << "eigen mono real " << tmono.best(REAL_TIMER)/rep << "s \t" << (double(m)*n*p*rep*2/tmono.best(REAL_TIMER))*1e-9 << " GFLOPS \t(" << tmono.total(REAL_TIMER) << "s)\n";
238 std::cout << "\"matlab\" cpu " << t.best(CPU_TIMER)/rep << "s \t" << (double(m)*n*p*rep*2/t.best(CPU_TIMER))*1e-9 << " GFLOPS \t(" << t.total(CPU_TIMER) << "s)\n";
239 std::cout << "\"matlab\" real " << t.best(REAL_TIMER)/rep << "s \t" << (double(m)*n*p*rep*2/t.best(REAL_TIMER))*1e-9 << " GFLOPS \t(" << t.total(REAL_TIMER) << "s)\n";
251 std::cout << "\"matlab\" cpu " << t.best(CPU_TIMER)/rep << "s \t" << (double(m)*n*p*rep*2/t.best(CPU_TIMER))*1e-9 << " GFLOPS \t(" << t.total(CPU_TIMER) << "s)\n";
252 std::cout << "\"matlab\" real " << t.best(REAL_TIMER)/rep << "s \t" << (double(m)*n*p*rep*2/t.best(REAL_TIMER))*1e-9 << " GFLOPS \t(" << t.total(REAL_TIME
[all...]
/external/elfutils/0.153/libdw/
H A Ddwarf_aggregate_size.c82 Dwarf_Word total = 0; local
201 total += stride * count;
208 *size = total;
/external/guava/guava/src/com/google/common/io/
H A DByteStreams.java191 long total = 0;
198 total += r;
200 return total;
215 long total = 0;
219 total += to.write(buf);
223 return total;
804 int total = 0;
805 while (total < len) {
806 int result = in.read(b, off + total, len - total);
[all...]
/external/libselinux/src/
H A Dcontext.c125 size_t total = 0; local
129 total += strlen(n->component[i]) + 1;
132 n->current_str = malloc(total);
/external/qemu/distrib/libselinux/src/
H A Dcontext.c125 size_t total = 0; local
129 total += strlen(n->component[i]) + 1;
132 n->current_str = malloc(total);
/external/skia/debugger/
H A DSkDebugger.cpp89 int total = 0; local
117 total += counts[i];
142 totalStr.appendScalar(SkDoubleToScalar(total));
/external/skia/tests/
H A DRandomTest.cpp133 int total = 0; local
137 total += (entry & 0x1);
143 double z = ((kN-total)-kMean)/kStandardDeviation;
/external/valgrind/main/memcheck/tests/
H A Daddressable.stderr.exp5 total heap usage: ... allocs, ... frees, ... bytes allocated
34 total heap usage: ... allocs, ... frees, ... bytes allocated
43 total heap usage: ... allocs, ... frees, ... bytes allocated
57 total heap usage: ... allocs, ... frees, ... bytes allocated
76 total heap usage: ... allocs, ... frees, ... bytes allocated
86 total heap usage: ... allocs, ... frees, ... bytes allocated
/external/chromium_org/chrome/browser/extensions/
H A Dpermissions_updater.cc127 scoped_refptr<PermissionSet> total(
130 PermissionSet::CreateDifference(total.get(), existing.get()));
132 SetPermissions(extension, total, NULL);
144 scoped_refptr<PermissionSet> total(
147 PermissionSet::CreateDifference(existing.get(), total.get()));
152 SetPermissions(extension, total, NULL);
/external/chromium_org/chrome/browser/profiles/
H A Dprofile_metrics.cc122 counts->total = number_of_profiles;
152 int limited_total = counts.total;
158 / counts.total + 0.5);
167 UMA_HISTOGRAM_COUNTS_100("Profile.NumberOfProfiles", counts.total);
174 100 * counts.supervised / counts.total);
183 UpdateReportedOSProfileStatistics(counts.total, counts.signedin);
/external/chromium_org/third_party/skia/tools/lua/
H A Dclassify_rrect_clips.lua85 io.write(array[i].class, ": ", array[i].count, " (", array[i].count/class_table["total"] * 100, "%)\n");
92 table["total"] = (table["total"] or 0) + 1
/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);
/external/chromium_org/v8/test/mjsunit/tools/
H A Dprofile.js194 assertEquals(totalTicks, node.totalWeight, 'total of ' + stack);
234 Driver.prototype.increment = function(func, self, total) {
236 this.counters[func] = { self: 0, total: 0 };
239 this.counters[func].total += total;
289 assertEquals(testDriver.root.total, flatProfileRoot.totalWeight);
298 assertEquals(reference.total, rec.totalWeight, 'total of ' + rec.label);
344 assertEquals(reference[1], rec.totalWeight, 'total of ' + rec.label);
/external/chromium_org/v8/tools/testrunner/local/
H A Dprogress.py84 print 'Running %i tests' % self.runner.total
135 total = self.runner.succeeded + len(self.runner.failed)
136 if (total > 1) and (total % 50 == 1):
197 'remaining': (((self.runner.total - self.runner.remaining) * 100) //
198 self.runner.total),
/external/elfutils/0.153/libebl/
H A Deblgstrtab.c97 size_t total; member in struct:Ebl_GStrtab
303 st->total += newstr->len - (*sep)->len;
319 st->total += newstr->len;
358 data->d_buf = malloc (st->total + nulllen);
368 data->d_size = st->total + nulllen;
378 assert (copylen == st->total * st->width + nulllen);

Completed in 656 milliseconds

<<11121314151617181920>>