HomeSort by relevance Sort by last modified time
    Searched defs:total (Results 1 - 25 of 1646) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/kmod/shared/
array.h 12 size_t total; member in struct:array
  /device/linaro/bootloader/edk2/StdLib/LibC/Stdio/
fread.c 61 size_t total; local
81 total = resid;
92 return ((total - resid) / size);
  /art/test/478-checker-inliner-nested-loop/src/
Main.java 44 int total = 0; local
47 total += Inline(x, y);
50 return total;
  /bionic/libc/include/bits/fortify/
stdio.h 181 size_t total; local
182 if (__size_mul_overflow(size, count, &total)) {
186 if (total > bos) {
205 size_t total; local
206 if (__size_mul_overflow(size, count, &total)) {
210 if (total > bos) {
  /external/tensorflow/tensorflow/core/platform/
variant_coding.cc 43 int64 total = 0; local
46 total += size;
48 if (total != static_cast<int64>(reader.size())) {
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/jni/
contrast.cpp 34 float total = 0; local
41 total += lumArray[i];
43 const float avg = total / numPixels;
  /system/core/liblog/
uio.c 26 int total = 0; local
35 if (total == 0) total = -1;
40 total += ret;
46 return total;
50 int total = 0; local
59 if (total == 0) total = -1;
64 total += ret;
70 return total;
    [all...]
  /toolchain/binutils/binutils-2.27/gold/testsuite/
incr_comdat_test_2_v1.cc 34 static int total = 0; local
35 total += k;
36 return total;
incr_comdat_test_2_v2.cc 34 static int total = 0; local
35 total += k;
36 return total;
incr_comdat_test_2_v3.cc 34 static int total = 0; local
35 total += k;
36 return total;
incr_comdat_test_1.cc 43 static int total = 0; local
44 total += k;
45 return total;
  /art/test/478-checker-inline-noreturn/src/
Main.java 50 int total = 0; local
52 total += $opt$noinline$Function(x, max_y);
54 return total;
  /bionic/libc/bionic/
malloc_info.cpp 77 size_t total = 0; local
85 total += mi.ordblks;
88 Elem(fp, "bins-total").contents("%zu", total);
  /external/compiler-rt/test/asan/TestCases/
coverage-caller-callee-total-count.cc 27 uintptr_t total = __sanitizer_get_total_unique_caller_callee_pairs(); local
29 total = CheckNewTotalUniqueCoverageIsLargerAndReturnIt(total);
31 total = CheckNewTotalUniqueCoverageIsLargerAndReturnIt(total);
33 total = CheckNewTotalUniqueCoverageIsLargerAndReturnIt(total);
37 total = CheckNewTotalUniqueCoverageIsLargerAndReturnIt(total);
39 total = CheckNewTotalUniqueCoverageIsLargerAndReturnIt(total)
    [all...]
  /external/dng_sdk/source/
dng_xy_coord.cpp 30 real64 total = X + Y + Z; local
32 if (total > 0.0)
35 return dng_xy_coord (X / total,
36 Y / total);
  /external/guava/guava-tests/benchmark/com/google/common/base/
StopwatchBenchmark.java 33 long total = 0; local
37 total += s.elapsed(TimeUnit.NANOSECONDS);
39 return total;
43 long total = 0; local
47 total += (System.nanoTime() - start);
49 return total;
  /external/libcups/cups/
backchannel.c 109 size_t total; /* Total bytes */ local
116 total = 0;
118 while (total < bytes)
143 count = (ssize_t)_write(3, buffer, (unsigned)(bytes - total));
145 count = write(3, buffer, bytes - total);
160 * Write succeeded, update buffer pointer and total count...
164 total += (size_t)count;
  /external/libunwind_llvm/test/
libunwind_02.pass.cpp 36 int total = test(50); local
37 assert(total == 1275);
  /frameworks/support/room/runtime/src/main/java/androidx/room/
EntityDeletionOrUpdateAdapter.java 85 int total = 0; local
88 total += stmt.executeUpdateDelete();
90 return total;
105 int total = 0; local
108 total += stmt.executeUpdateDelete();
110 return total;
  /libcore/support/src/test/java/tests/support/
ThrowingReader.java 30 private int total = 0; field in class:ThrowingReader
41 total++;
49 if (total < throwAt) {
50 count = Math.min(count, (throwAt - total));
54 total += returned;
59 if (total == throwAt) {
  /prebuilts/jdk/jdk8/darwin-x86/sample/nio/file/
DiskUsage.java 55 long total = store.getTotalSpace() / K; local
64 System.out.format("%-20s %12d %12d %12d\n", s, total, used, avail);
  /prebuilts/jdk/jdk8/linux-x86/sample/nio/file/
DiskUsage.java 55 long total = store.getTotalSpace() / K; local
64 System.out.format("%-20s %12d %12d %12d\n", s, total, used, avail);
  /system/core/libdiskconfig/
diskutils.c 42 uint64_t total = 0; local
77 total += nr_bytes;
105 ALOGI("Wrote %" PRIu64 " bytes to %s @ %lld", total, dst, (long long)offset);
  /art/test/651-checker-byte-simd-minmax/src/
Main.java 147 int total = 256 * 256; local
148 byte[] x = new byte[total];
149 byte[] y = new byte[total];
150 byte[] z = new byte[total];
163 for (int i = 0; i < total; i++) {
168 for (int i = 0; i < total; i++) {
173 for (int i = 0; i < total; i++) {
178 for (int i = 0; i < total; i++) {
183 for (int i = 0; i < total; i++) {
  /art/test/651-checker-char-simd-minmax/src/
Main.java 93 int total = interesting.length * interesting.length; local
94 char[] x = new char[total];
95 char[] y = new char[total];
96 char[] z = new char[total];
109 for (int i = 0; i < total; i++) {
114 for (int i = 0; i < total; i++) {
119 for (int i = 0; i < total; i++) {

Completed in 625 milliseconds

1 2 3 4 5 6 7 8 91011>>