HomeSort by relevance Sort by last modified time
    Searched defs:total (Results 1 - 25 of 1552) 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/stdio/
fread.c 57 size_t total = desired_total; variable
62 if (total == 0) {
82 while (total > 0) {
86 size_t buffered_bytes = MIN((size_t) fp->_r, total);
91 total -= buffered_bytes;
96 if (total == 0) {
104 if (total > (size_t) fp->_bf._size) {
126 while (total > 0) {
127 ssize_t bytes_read = (*fp->_read)(fp->_cookie, dst, total);
133 total -= bytes_read
    [all...]
  /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.25/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/curl/tests/libtest/
lib556.c 79 size_t total=0; local
94 total += iolen;
96 } while(((res == CURLE_OK) || (res == CURLE_AGAIN)) && (total < 129));
  /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 35 int total = test(50); local
36 assert(total == 1275);
  /external/pdfium/xfa/fxbarcode/qrcode/
BC_QRCoderECBlocks.cpp 50 int32_t total = 0; local
52 total += m_ecBlocksArray[i]->GetCount();
54 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) {
  /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);
  /bionic/libc/dns/net/
getservent.c 58 int total = 0; local
68 /* first compute the total size */
70 total += namelen + 1;
75 total += (count+1)*sizeof(char*);
78 total += 1 + len2;
83 p2 = realloc( (char*)rs->servent.s_aliases, total );
  /device/generic/goldfish/libqemu/
test_guest_1.c 64 size_t total = 0; local
76 total += len;
102 total*1.0 / (1024.*1024.*(time1-time0)), 1.0*total, time1-time0);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
Bastion.py 143 def total(self): member in class:_test.Original
150 print "b.total() =", b.total()
  /external/ImageMagick/MagickCore/
opencl.h 41 total; member in struct:_KernelProfileRecord

Completed in 974 milliseconds

1 2 3 4 5 6 7 8 91011>>