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

1 2 3 4 5 6 7

  /toolchain/binutils/binutils-2.25/gold/testsuite/
plugin_common_test_1.c 32 int c4; variable
45 assert (c4 == 40);
plugin_common_test_2.c 32 int c4 = 40; variable
common_test_1.c 38 int c4[20]; variable
56 assert (c5 > c4);
57 assert (c4 > c3);
common_test_1_v1.c 41 int c4[20]; variable
60 assert (c5 < c4);
61 assert (c4 < c3);
common_test_1_v2.c 38 int c4[20]; variable
58 assert (c5 != c4);
59 assert (c4 != c3);
  /external/clang/test/Sema/
pointer-conversion.c 9 volatile char * c4; variable
10 char ** c5 = &c4; // expected-warning {{discards qualifiers in nested pointer types}}
  /external/libgdx/gdx/test/com/badlogic/gdx/math/
Shape2DTest.java 16 Circle c4 = new Circle(0, 0, 2); local
21 assertTrue(c1.overlaps(c4));
22 assertTrue(c4.overlaps(c1));
26 assertFalse(c1.contains(c4));
27 assertTrue(c4.contains(c1));
  /external/clang/test/CodeGen/
constant-comparison.c 8 int *c4 = &a - (6 * 5 > 30); variable
  /external/clang/test/SemaTemplate/
instantiation-default-2.cpp 13 Constant<float (*)(int, double), f> *c4; variable
attributes.cpp 20 check_alignment<4>::t c4; member in namespace:attribute_aligned
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-powerpc/
aix-weak-2a.s 7 .globl c4
8 c4 = 0xcccc4444 define
aix-weak-2b.s 7 .weak c4
8 c4 = 0xdddd4444 define
  /art/runtime/
dex_instruction_visitor_test.cc 64 const uint16_t c4[] = { 0, 0, 0, 0 }; local
65 v4.Visit(c4, sizeof(c4));
  /external/compiler-rt/test/tsan/
tsan-vs-gvn.cc 12 char c1, c2, c3, c4; member in struct:__anon8487
  /external/fio/lib/
bswap.h 9 uint32_t c1, c2, c3, c4; local
14 c4 = val & 0xff;
16 return c1 | c2 << 8 | c3 << 16 | c4 << 24;
21 uint64_t c1, c2, c3, c4, c5, c6, c7, c8; local
26 c4 = (val >> 32) & 0xff;
32 return c1 | c2 << 8 | c3 << 16 | c4 << 24 | c5 << 32 | c6 << 40 | c7 << 48 | c8 << 56;
  /external/icu/icu4c/source/i18n/
cecal.cpp 133 int32_t c4; // number of 4 year cycle (1461 days) local
136 c4 = ClockMath::floorDivide(julianDay - jdEpochOffset, 1461, r4);
138 year = 4 * c4 + (r4/365 - r4/1460); // 4 * <number of 4year cycle> + <years within the last cycle>
  /external/apache-harmony/x-net/src/test/impl/java.injected/org/apache/harmony/xnet/provider/jsse/
CipherSuiteTest.java 34 CipherSuite c4 = new CipherSuite("CipherSuite4", false, 0, "", "", local
36 if (!c1.equals(c2) || c1.equals(c3) || c4.equals(c1) || c4.equals(c3)) {
97 CipherSuite c4 = new CipherSuite("CipherSuite4", false, local
102 assertFalse(c4.isAnonymous());
  /external/valgrind/massif/tests/
alloc-fns.c 13 void c4(int n) { malloc(n); } function
14 void c3(int n) { c4(n); }
  /external/icu/android_icu4j/src/main/java/android/icu/util/
CECalendar.java 263 int c4; // number of 4 year cycle (1461 days) local
266 c4 = floorDivide(julianDay - jdEpochOffset, 1461, r4);
269 fields[0] = 4 * c4 + (r4[0]/365 - r4[0]/1460); // 4 * <number of 4year cycle> + <years within the last cycle>
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
CECalendar.java 259 int c4; // number of 4 year cycle (1461 days) local
262 c4 = floorDivide(julianDay - jdEpochOffset, 1461, r4);
265 fields[0] = 4 * c4 + (r4[0]/365 - r4[0]/1460); // 4 * <number of 4year cycle> + <years within the last cycle>
  /external/pdfium/xfa/src/fxbarcode/datamatrix/
BC_EdifactEncoder.cpp 140 FX_WCHAR c4 = len >= 4 ? sb.GetAt(startPos + 3) : 0; local
141 int32_t v = (c1 << 18) + (c2 << 12) + (c3 << 6) + c4;
  /hardware/bsp/intel/peripheral/libupm/src/lol/
lol.cxx 39 static mraa_gpio_context c1, c2, c3, c4; variable
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-sh/sh64/
reldl-2.s 37 .global c4
38 c4: label
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
CurrencyTest.java 329 Currency c4 = Currency.getInstance("XXX"); local
330 c4.getDefaultFractionDigits();
331 assertEquals(" Currency.getInstance(\"" + c4
332 + "\") returned incorrect number of digits. ", -1, c4
  /external/clang/test/CXX/special/class.ctor/
p6-0x.cpp 50 constexpr Constexpr4 c4 = Constexpr4(); // ok variable

Completed in 567 milliseconds

1 2 3 4 5 6 7