HomeSort by relevance Sort by last modified time
    Searched defs:c3 (Results 26 - 50 of 114) sorted by null

12 3 4 5

  /external/chromium/base/
callback_unittest.cc 81 Callback<void(int,int,int)> c3; local
89 EXPECT_TRUE(c3.is_null());
  /external/clang/test/CXX/special/class.ctor/
p6-0x.cpp 46 constexpr Constexpr3 c3 = Constexpr3(); // ok variable
  /external/clang/test/CodeGen/
arm-abi-vector.c 32 __int2 c3 = va_arg(ap, __int2); local
33 sum = sum + c3.x + c3.y;
58 __char3 c3 = va_arg(ap, __char3); local
59 sum = sum + c3.x + c3.y;
182 __short3 c3 = va_arg(ap, __short3); local
183 sum = sum + c3.x + c3.y;
251 StructWithVec c3 = va_arg(ap, StructWithVec) local
    [all...]
  /external/clang/test/CodeGenCXX/
global-init.cpp 176 const int c3 = C().n; member in namespace:test7
mangle-ms-return-qualifiers.cpp 62 volatile A c3() { return A(); } function
63 // CHECK: "\01?c3@@YA?CVA@@XZ"
  /external/clang/test/SemaTemplate/
instantiate-member-class.cpp 59 X<void>::C *c3; // okay variable
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/file/
DnaBlockData.java 195 char c3 = (char) ((code & 0xFF00) >> 8); local
197 return String.valueOf(c1) + c2 + c3 + c4;
FileBlockHeader.java 195 char c3 = (char) ((code & 0xFF00) >> 8); local
197 return String.valueOf(c1) + c2 + c3 + c4;
  /external/regex-re2/util/
rune.cc 51 int c, c1, c2, c3; local
100 c3 = *(unsigned char*)(str+3) ^ Tx;
101 if (c3 & Testx)
104 l = ((((((c << Bitx) | c1) << Bitx) | c2) << Bitx) | c3) & Rune4;
  /packages/apps/Camera/jni/feature_stab/db_vlvm/
db_utilities_poly.cpp 97 double c0,c1,c2,c3; local
121 c3=b/a;
126 c3through2=c3/2.0;
127 c3through4=c3/4.0;
128 c3c3through4_min_c2=c3*c3through4-c2;
132 k1=c1*c3+min4_c0;
169 double c0,c1,c2,c3; local
193 c3=b/a;
198 c3through2=c3/2.0;
199 c3through4=c3/4.0
    [all...]
  /packages/apps/Gallery2/jni_mosaic/feature_stab/db_vlvm/
db_utilities_poly.cpp 97 double c0,c1,c2,c3; local
121 c3=b/a;
126 c3through2=c3/2.0;
127 c3through4=c3/4.0;
128 c3c3through4_min_c2=c3*c3through4-c2;
132 k1=c1*c3+min4_c0;
169 double c0,c1,c2,c3; local
193 c3=b/a;
198 c3through2=c3/2.0;
199 c3through4=c3/4.0
    [all...]
  /packages/apps/LegacyCamera/jni/feature_stab/db_vlvm/
db_utilities_poly.cpp 97 double c0,c1,c2,c3; local
121 c3=b/a;
126 c3through2=c3/2.0;
127 c3through4=c3/4.0;
128 c3c3through4_min_c2=c3*c3through4-c2;
132 k1=c1*c3+min4_c0;
169 double c0,c1,c2,c3; local
193 c3=b/a;
198 c3through2=c3/2.0;
199 c3through4=c3/4.0
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
CurrencyTest.java 51 Currency c3 = Currency.getInstance(new Locale("", "CA")); local
54 c3 == c0);
65 c3 = Currency.getInstance(new Locale("bogus", "JP"));
68 c3 == c0);
315 Currency c3 = Currency.getInstance("XBD"); local
317 c3.getDefaultFractionDigits();
318 assertEquals(" Currency.getInstance(\"" + c3
319 + "\") returned incorrect number of digits. ", 2, c3
  /libcore/luni/src/test/java/tests/api/java/util/
CurrencyTest.java 59 Currency c3 = Currency.getInstance(new Locale("", "CA")); local
62 c3 == c0);
73 c3 = Currency.getInstance(new Locale("bogus", "JP"));
76 c3 == c0);
314 Currency c3 = Currency.getInstance("JPY"); local
315 c3.getDefaultFractionDigits();
316 assertEquals(" Currency.getInstance(\"" + c3
317 + "\") returned incorrect number of digits. ", 0, c3
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/spec/
EllipticCurveTest.java 582 MyEllipticCurve c3 = new MyEllipticCurve(new ECFieldFp(BigInteger local
585 assertTrue(c1.equals(c3) && c3.equals(c1));
  /external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.constexpr/
p1.cpp 46 constexpr class C3 {} c3 = C3(); variable in typeref:class:C3
  /external/clang/test/CXX/special/class.dtor/
p5-0x.cpp 83 struct C3 : virtual DeletedDtor { C3(); } c3; // expected-error {{deleted function}} expected-note {{base class 'DeletedDtor' has a deleted destructor}} variable in typeref:struct:C3
  /external/clang/test/CXX/temp/temp.decls/temp.class/temp.mem.enum/
p1.cpp 79 C<int>::E c3 = C<int>::E::e6; member in struct:C
  /external/clang/test/SemaCXX/
class.cpp 90 struct C3 {
96 const C3 c3 = { 1, 2 }; local
97 (void)static_cast<int*>(&c3.i); // expected-error {{static_cast from 'const int *' to 'int *' is not allowed}}
99 (void)static_cast<int*>(&c3.j);
  /external/guava/guava-tests/test/com/google/common/collect/
AbstractCollectionTest.java 185 Collection<String> c3 = create(); local
189 assertFalse(c2.equals(c3));
  /external/icu4c/test/intltest/
itercoll.cpp 130 RuleBasedCollator *c3 = NULL; local
131 c3 = new RuleBasedCollator((UnicodeString)"&a < b < c/aba < d < z < ch", status);
133 if (c3 == NULL || U_FAILURE(status))
136 delete c3;
141 iter = c3->createCollationElementIterator(source);
144 delete c3;
  /external/javassist/src/main/javassist/compiler/
Lex.java 361 int c2, c3; local
379 c3 = getc();
380 if (c3 == '=')
383 ungetc(c3);
387 c3 = getc();
388 if (c3 == '=')
390 else if (c3 == '>') {
391 c3 = getc();
392 if (c3 == '=')
395 ungetc(c3);
    [all...]
  /external/openssl/crypto/bn/
bn_asm.c 565 BN_ULONG c1,c2,c3; local
569 c3=0;
570 mul_add_c(a[0],b[0],c1,c2,c3);
573 mul_add_c(a[0],b[1],c2,c3,c1);
574 mul_add_c(a[1],b[0],c2,c3,c1);
577 mul_add_c(a[2],b[0],c3,c1,c2);
578 mul_add_c(a[1],b[1],c3,c1,c2);
579 mul_add_c(a[0],b[2],c3,c1,c2);
580 r[2]=c3;
581 c3=0
674 BN_ULONG c1,c2,c3; local
719 BN_ULONG c1,c2,c3; local
800 BN_ULONG c1,c2,c3; local
    [all...]
  /external/sonivox/arm-fm-22k/host_src/
eas_hostmm.c 369 EAS_U8 c1, c2,c3,c4; local
376 if ((result = EAS_HWGetByte(hwInstData, file, &c3)) != EAS_SUCCESS)
383 *((EAS_U32*) p) = ((EAS_U32) c1 << 24) | ((EAS_U32) c2 << 16) | ((EAS_U32) c3 << 8) | c4;
385 *((EAS_U32*) p)= ((EAS_U32) c4 << 24) | ((EAS_U32) c3 << 16) | ((EAS_U32) c2 << 8) | c1;
  /external/sonivox/arm-hybrid-22k/host_src/
eas_hostmm.c 369 EAS_U8 c1, c2,c3,c4; local
376 if ((result = EAS_HWGetByte(hwInstData, file, &c3)) != EAS_SUCCESS)
383 *((EAS_U32*) p) = ((EAS_U32) c1 << 24) | ((EAS_U32) c2 << 16) | ((EAS_U32) c3 << 8) | c4;
385 *((EAS_U32*) p)= ((EAS_U32) c4 << 24) | ((EAS_U32) c3 << 16) | ((EAS_U32) c2 << 8) | c1;

Completed in 1603 milliseconds

12 3 4 5