HomeSort by relevance Sort by last modified time
    Searched defs:count (Results 226 - 250 of 9532) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/dtc/tests/
subnode_iterate.c 39 int count; local
50 count = 0;
52 count++;
54 if (count != subnodes) {
57 count);
64 int count = 0; local
68 count++;
71 if (count != 2)
72 FAIL("Expected %d tests, got %d\n", 2, count);
  /external/e2fsprogs/lib/ext2fs/
read_bb_file.c 43 int count; local
58 count = sscanf(buf, "%llu", &blockno);
59 if (count <= 0)
  /external/elfutils/lib/
crc32_file.c 45 ssize_t count; local
81 while ((count = TEMP_FAILURE_RETRY (pread (fd, buffer, sizeof buffer,
84 off += count;
85 crc = crc32 (crc, buffer, count);
90 return count == 0 ? 0 : -1;
  /external/expat/tests/
chardata.c 60 storage->count = -1;
71 if (storage->count < 0)
72 storage->count = 0;
75 if ((len + storage->count) > maxchars) {
76 len = (maxchars - storage->count);
78 if (len + storage->count < (int)sizeof(storage->data)) {
79 memcpy(storage->data + storage->count, s,
81 storage->count += len;
90 int count; local
93 count = (storage->count < 0) ? 0 : storage->count
    [all...]
structdata.h 51 int count; /* Number of entries used */ member in struct:__anon20384
67 int count);
  /external/fio/arch/
arch-aarch64.h 17 unsigned long count, reversed_bits; local
23 "=r"(count), "=&r"(reversed_bits) :
25 return count;
  /external/google-breakpad/src/common/android/testing/
pthread_fixes.h 50 unsigned count; member in struct:__anon20777::__anon20778
55 unsigned count) {
56 barrier->count = count;
65 // Decrement the count. If this is the first thread to reach 0, wake up
67 if (--barrier->count == 0) {
73 // Otherwise, wait for other threads until the count reaches 0, then
77 } while (barrier->count > 0);
84 barrier->count = 0;
  /external/guice/extensions/struts2/example/src/com/google/inject/struts2/example/
Counter.java 27 int count = 0; field in class:Counter
29 /** Increments the count and returns the new value. */
31 return count++;
  /external/icu/icu4c/source/stubdata/
stubdata.cpp 32 uint32_t count, reserved; member in struct:__anon21520
66 0, /* count */
70 0 , 0 , 0, 0 /* name and data entries. Count says there are none, */
  /external/icu/icu4c/source/test/intltest/
itercoll.h 97 int32_t count; member in struct:CollationIteratorTest::ExpansionRecord
  /external/icu/icu4c/source/test/perf/ucnvavailperf/
ucnvavailperf.cpp 122 int32_t count = ucnv_countAvailable(); local
124 printf("ucnv_countAvailable() reports that %d converters are available.\n", count);
  /external/iproute2/lib/
mpls_ntop.c 13 int count = 0; local
16 uint32_t entry = ntohl(addr[count++].entry);
  /external/jacoco/org.jacoco.core.test/src/org/jacoco/core/test/perf/
InstrumentationTimeScenario.java 27 private final int count; field in class:InstrumentationTimeScenario
29 protected InstrumentationTimeScenario(Class<?> target, int count) {
30 super(String.format("instrumenting %s classes", Integer.valueOf(count)));
32 this.count = count;
41 for (int i = 0; i < count; i++) {
  /external/jacoco/org.jacoco.core.test/src/org/jacoco/core/test/perf/targets/
Target02.java 23 int count = 0; local
25 count++;
  /external/javasqlite/src/main/java/SQLite/
FunctionContext.java 71 public native int count(); method in class:FunctionContext
  /external/javassist/sample/rmi/
Counter.java 9 private int count = 0; field in class:Counter
12 return count;
16 count += 1;
17 return count;
  /external/libchrome/base/metrics/
sample_vector_unittest.cc 208 std::vector<HistogramBase::Count> counts(3);
219 HistogramBase::Count count; local
220 it.Get(&min, &max, &count);
223 EXPECT_EQ(1, count);
228 it.Get(&min, &max, &count);
231 EXPECT_EQ(2, count);
248 it2->Get(&min, &max, &count);
251 EXPECT_EQ(i, count);
275 HistogramBase::Count count local
    [all...]
  /external/libchrome/base/trace_event/
trace_event_memory_overhead.h 49 // Retrieves the count, that is, the count of Add*(|object_type|, ...) calls.
59 size_t count; member in struct:base::trace_event::TraceEventMemoryOverhead::ObjectCountAndSize
67 size_t count,
  /external/libcups/cups/
backchannel.c 108 ssize_t count; /* Current bytes */ local
143 count = (ssize_t)_write(3, buffer, (unsigned)(bytes - total));
145 count = write(3, buffer, bytes - total);
148 if (count < 0)
160 * Write succeeded, update buffer pointer and total count...
163 buffer += count;
164 total += (size_t)count;
testoptions.c 36 int count; /* Number of attributes */ local
106 for (count = 0, attr = ippFirstAttribute(request); attr; attr = ippNextAttribute(request), count ++);
107 if (count != 6)
109 printf("FAIL (%d attributes, expected 6)\n", count);
  /external/libcxx/test/std/algorithms/alg.nonmodifying/alg.foreach/
test.pass.cpp 36 for_each_test(int c) : count(c) {}
37 int count; member in struct:for_each_test
38 void operator()(int& i) {++i; ++count;}
48 assert(f.count == s);
  /external/libcxx/test/std/algorithms/alg.sorting/alg.permutation.generators/
next_permutation.pass.cpp 42 int count = 0; local
55 ++count;
57 assert(count == factorial(e));
next_permutation_comp.pass.cpp 44 int count = 0; local
57 ++count;
59 assert(count == factorial(e));
prev_permutation.pass.cpp 42 int count = 0; local
55 ++count;
57 assert(count == factorial(e));
prev_permutation_comp.pass.cpp 44 int count = 0; local
57 ++count;
59 assert(count == factorial(e));

Completed in 810 milliseconds

1 2 3 4 5 6 7 8 91011>>