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

1 2 3 4 5 6 7 891011>>

  /device/google/contexthub/firmware/lib/libc/
crt.c 27 const int32_t count = step > 0 ? end - start : start - end; local
30 if (&start[step * count] != end)
  /device/google/cuttlefish_common/guest/commands/vsoc_input_service/
vsoc_input_service.cpp 44 int count = next_events(events, InputEventsRegionView::kMaxEventsPerPacket); local
45 if (count <= 0) {
49 for (int i = 0; i < count; ++i) {
  /device/google/cuttlefish_common/host/vsoc/lib/
host_region_e2e_test.cpp 90 int count = 0; // counts the number of signals received. local
92 [&primary, &count](uint32_t offset) {
93 ++count;
96 EXPECT_EQ(1, count);
102 count = 0;
104 [secondary, &count](uint32_t offset) {
105 ++count;
108 EXPECT_EQ(1, count);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
md5.h 68 md5_word_t count[2]; /* message length in bits, lsw first */ member in struct:md5_state_s
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
md5.h 68 md5_word_t count[2]; /* message length in bits, lsw first */ member in struct:md5_state_s
  /external/ImageMagick/Magick++/lib/
BlobRef.cpp 47 count; local
56 count=--_refCount;
58 return(count);
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
AMutableDictionary.h 22 NSUInteger count; variable
31 @property (assign, readonly, getter=count) NSUInteger count; variable
47 - (NSUInteger) count;
ANTLRIntArray.h 37 NSUInteger count; variable
63 - (NSUInteger) count;
68 @property (assign) NSUInteger count; variable
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/misc/
Barrier.java 37 protected int count = 0; field in class:Barrier
46 count++;
49 if ( count==threshold ) {
54 else while ( count<threshold ) {
  /external/apache-harmony/support/src/test/java/tests/support/
Streams.java 39 int count; local
40 while ((count = source.read(buffer)) != -1) {
41 out.write(buffer, 0, count);
52 int count; local
53 while ((count = fileReader.read(buffer)) != -1) {
54 out.write(buffer, 0, count);
  /external/autotest/client/cros/cellular/pseudomodem/
bearer.py 23 count = 0 variable in class:Bearer
28 path = '%s/Bearer/%d' % (mm1_constants.MM1, Bearer.count)
29 Bearer.count += 1
  /external/autotest/client/site_tests/hardware_PerfCallgraphVerification/src/
graph.c 22 float count = 0; local
24 count += A(j);
27 count = count / C(k);
29 count2 += count;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/generators/
DESedeKeyGenerator.java 14 * strength can be 128 or 192 (or 112 or 168 if you don't count
47 int count = 0; local
55 while (++count < MAX_IT && (DESedeParameters.isWeakKey(newKey, 0, newKey.length) || !DESedeParameters.isRealEDEKey(newKey, 0)));
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/paddings/
PKCS7Padding.java 59 int count = in[in.length - 1] & 0xff; local
60 byte countAsbyte = (byte)count;
63 boolean failed = (count > in.length | count == 0);
67 failed |= (in.length - i <= count) & (in[i] != countAsbyte);
75 return count;
  /external/capstone/contrib/cs_driver/cs_driver/
cs_driver.c 47 size_t count; local
72 count = cs_disasm(handle, (uint8_t *)&cs_driver_hello, 0x80,
74 if (count > 0) {
76 for (size_t j = 0; j < count; j++) {
80 cs_free(insn, count);
  /external/clang/test/CodeGen/
conditional-gnu-ext.c 25 static int count; local
26 if (count++)
  /external/clang/test/CodeGenCXX/
2007-04-05-PackedBitFieldsOverlap-2.cpp 14 unsigned long count : 21; member in struct:M_Packed
22 return (x.count != 0);
array-construction.cpp 8 static int count; variable
13 xpto() : i(count++), f(fcount++) {
static-init-1.cpp 5 static int count; variable
10 static int loader_1 = func1(++count);
13 int loader_2 = func2(++count);
15 static int loader_3 = func1(++count);
20 int loader_4 = func2(++count);
21 static int loader_5 = func1(++count);
22 int loader_6 = func2(++count);
  /external/clang/test/SemaCXX/
goto2.cpp 11 int count = 0; local
24 count = subfun(end);
37 ++count;
incomplete-call.cpp 53 int count; member in struct:pr18542::X
57 count = 0;
  /external/conscrypt/openjdk/src/test/java/org/conscrypt/
ServerSessionContextTest.java 38 int count = 0; local
42 count++;
44 return count;
  /external/deqp/framework/delibs/depool/
dePoolMultiSet.c 93 int count = 0; local
97 count += deInBounds32(i, 0, 1000) ? 1 : 0;
98 count += deInBounds32(i, 0, 500) ? 1 : 0;
99 count += deInBounds32(i, 0, 250) ? 1 : 0;
101 DE_TEST_ASSERT(found == (count > 0));
102 DE_TEST_ASSERT(count == gotCount);
113 int count = 0; local
117 count += deInBounds32(i, 0, 500) ? 1 : 0;
118 count += deInBounds32(i, 0, 250) ? 1 : 0;
120 DE_TEST_ASSERT(found == (count > 0))
134 int count = 0; local
    [all...]
  /external/dhcpcd-6.8.2/crypt/
md5.h 26 uint64_t count; /* number of bits, modulo 2^64 (lsb first) */ member in struct:MD5Context
  /external/dtc/tests/
property_iterate.c 39 int count; local
53 count = 0;
59 count++;
61 if (count != properties) {
64 count);
71 int count = 0; local
75 count++;
78 if (count != 2)
79 FAIL("Expected %d tests, got %d\n", 2, count);

Completed in 559 milliseconds

1 2 3 4 5 6 7 891011>>