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

1 2 3 4 5 6 7 8 91011>>

  /external/mesa3d/src/glsl/glcpp/tests/
glcpp-test 5 total=0
13 total=$((total+1))
24 echo "$pass/$total tests returned correct results"
42 echo "$pass/$total tests returned correct results"
43 echo "$clean/$total tests are valgrind-clean"
45 if [ "$pass" = "$total" ] && [ "$clean" = "$total" ]; then
  /system/core/libcutils/
uio.c 24 int total = 0; local
33 if (total == 0)
34 total = -1;
40 total += ret;
46 return total;
51 int total = 0; local
60 if (total == 0)
61 total = -1;
67 total += ret;
73 return total;
    [all...]
  /external/webkit/Source/WebCore/xml/
XMLHttpRequestProgressEvent.h 40 static PassRefPtr<XMLHttpRequestProgressEvent> create(const AtomicString& type, bool lengthComputable = false, unsigned long long loaded = 0, unsigned long long total = 0)
42 return adoptRef(new XMLHttpRequestProgressEvent(type, lengthComputable, loaded, total));
47 unsigned long long totalSize() const { return total(); }
53 XMLHttpRequestProgressEvent(const AtomicString& type, bool lengthComputable, unsigned long long loaded, unsigned long long total)
54 : ProgressEvent(type, lengthComputable, loaded, total)
  /external/oauth/core/src/main/java/net/oauth/client/
ExcerptInputStream.java 22 int total = 0; local
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);
  /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) {
  /external/webkit/Source/WebCore/dom/
ProgressEvent.h 39 static PassRefPtr<ProgressEvent> create(const AtomicString& type, bool lengthComputable, unsigned long long loaded, unsigned long long total)
41 return adoptRef(new ProgressEvent(type, lengthComputable, loaded, total));
49 unsigned long long total() const { return m_total; } function in class:WebCore::ProgressEvent
53 ProgressEvent(const AtomicString& type, bool lengthComputable, unsigned long long loaded, unsigned long long total);
ProgressEvent.cpp 38 ProgressEvent::ProgressEvent(const AtomicString& type, bool lengthComputable, unsigned long long loaded, unsigned long long total)
42 , m_total(total)
  /external/stlport/test/unit/
times_test.cpp 32 int total = accumulate(input, input + 4, 1, multiplies<int>()); local
33 CPPUNIT_ASSERT(total==70);
plusminus_test.cpp 36 int total = inner_product(input1, input1 + 4, input2, 0, plus<int>(), multiplies <int>()); local
38 CPPUNIT_ASSERT(total==77);
  /ndk/tests/device/test-gnustl-full/unit/
times_test.cpp 32 int total = accumulate(input, input + 4, 1, multiplies<int>()); local
33 CPPUNIT_ASSERT(total==70);
plusminus_test.cpp 36 int total = inner_product(input1, input1 + 4, input2, 0, plus<int>(), multiplies <int>()); local
38 CPPUNIT_ASSERT(total==77);
  /ndk/tests/device/test-stlport/unit/
times_test.cpp 32 int total = accumulate(input, input + 4, 1, multiplies<int>()); local
33 CPPUNIT_ASSERT(total==70);
plusminus_test.cpp 36 int total = inner_product(input1, input1 + 4, input2, 0, plus<int>(), multiplies <int>()); local
38 CPPUNIT_ASSERT(total==77);
  /sdk/emulator/qtools/
hist_trace.cpp 23 int total = 0; local
44 total += 1;
53 per = 100.0 * hist[ii] / total;
55 sum_per = 100.0 * sum / total;
58 per = 100.0 * underflow / total;
60 per = 100.0 * overflow / total;
62 printf("total: %6d\n", total);
  /external/skia/src/views/
SkScrollBarView.cpp 53 void SkScrollBarView::setTotal(unsigned total)
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 = 1; // avoid divide-by-zero. should be done by skin/scrip
    [all...]
  /external/valgrind/main/exp-bbv/tests/amd64-linux/
million.S 3 # 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/chrome/browser/ui/cocoa/find_bar/
find_bar_text_field_cell.h 20 - (void)setActiveMatch:(NSInteger)current of:(NSInteger)total;
  /external/linux-tools-perf/util/ui/
progress.h 6 struct ui_progress *ui_progress__new(const char *title, u64 total);
  /external/apache-http/src/org/apache/http/impl/io/
ContentLengthOutputStream.java 61 /** Total bytes written */
62 private long total = 0; field in class:ContentLengthOutputStream
108 if (this.total < this.contentLength) {
109 long max = this.contentLength - this.total;
114 this.total += len;
126 if (this.total < this.contentLength) {
128 this.total++;
  /external/e2fsprogs/contrib/
make-sparse.c 25 int got, total = 0; local
33 return total ? total : -1;
37 return total;
42 total += got;
45 return total;
  /external/valgrind/main/drd/tests/
omp_prime.c 38 int total = 0; local
89 DRD_TRACE_VAR(total);
96 primes[total] = i;
97 total++;
103 n, total);
104 for (i = 0; i < total; i++)
  /external/sqlite/android/
PhoneNumberUtilsTest.cpp 34 #define EXPECT(function, input1, input2, expected, total, error) \
38 (total)++; \
53 (total), (error))
58 (total), (error))
64 (total)++; \
77 int total = 0; local
189 printf("total: %d, error: %d\n\n", total, error);
  /external/doclava/src/com/google/doclava/
TodoFile.java 58 public int total; field in class:TodoFile.PackageStats
85 int total = 1; local
95 total++;
109 total++;
124 total++;
138 total++;
153 data.setValue(classBase + ".totalCount", "" + total);
154 data.setValue(classBase + ".percentGood", percent(errors, total));
165 ps.total += total;
    [all...]
  /hardware/ti/wlan/wl1271/utils/
mem.c 115 TI_UINT32 total = size + sizeof(TMemBlock) + sizeof(TI_UINT32); local
121 pMemBlock = (TMemBlock *) os_memoryAlloc (pMemMng->hOs, total);
124 *(TI_UINT32 *)((TI_UINT8 *)pMemBlock + total - sizeof(TI_UINT32)) = MEM_BLOCK_END;
126 pMemMng->uCurAllocated += total;
153 TI_UINT32 total; local
155 total = number * size;
158 os_printf ("os_memoryCAlloc(%u, %u) : %u\n", number, size, total);
161 ptr = mem_Alloc (hMem, total);
165 os_memorySet (pMemMng->hOs, ptr, 0, total);