HomeSort by relevance Sort by last modified time
    Searched defs:c3 (Results 51 - 75 of 181) sorted by null

1 23 4 5 6 7 8

  /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...]
arm64-abi-vector.c 24 __char3 c3 = va_arg(ap, __char3); local
25 sum = sum + c3.x + c3.y;
127 __short3 c3 = va_arg(ap, __short3); local
128 sum = sum + c3.x + c3.y;
171 __int3 c3 = va_arg(ap, __int3); local
172 sum = sum + c3.x + c3.y;
215 __double3 c3 = va_arg(ap, __double3) local
232 __char3 c3 = va_arg(ap, __char3); local
    [all...]
  /external/clang/test/CodeGenCXX/
global-init.cpp 176 const int c3 = C().n; member in namespace:test7
microsoft-abi-virtual-inheritance.cpp 278 int c1, c2, c3; member in struct:diamond::C
dllimport-members.cpp 37 T c3; local
38 c3 = static_cast<const T&>(v); // Copy assignment
    [all...]
  /external/clang/test/Lexer/
ms-extensions.c 22 __complex float c3 = 1.0if; variable
  /external/clang/test/Sema/
string-init.c 23 char16_t c3[] = u"a"; // No error. local
  /external/clang/test/SemaCXX/
string-init.cpp 18 char16_t c3[] = u"a"; // No error. local
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/clang/test/SemaTemplate/
instantiate-member-class.cpp 59 X<void>::C *c3; // okay variable
  /external/libutf/
rune.c 68 int c, c1, c2, c3; local
135 c3 = *(uchar*)(str+3) ^ Tx;
136 if (c3 & Testx)
139 l = ((((((c << Bitx) | c1) << Bitx) | c2) << Bitx) | c3) & Rune4;
169 int c, c1, c2, c3; local
218 c3 = *(uchar*)(str+3) ^ Tx;
219 if (c3 & Testx)
222 l = ((((((c << Bitx) | c1) << Bitx) | c2) << Bitx) | c3) & Rune4;
  /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/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/security/src/test/api/java/org/apache/harmony/security/tests/java/security/spec/
EllipticCurveTest.java 601 MyEllipticCurve c3 = new MyEllipticCurve(new ECFieldFp(BigInteger local
604 assertTrue(c1.equals(c3) && c3.equals(c1));
  /external/chromium_org/base/
callback_list_unittest.cc 119 CallbackList<void(int, int, int)> c3; local
121 subscription3 = c3.Add(Bind(&Summer::AddThreeParam, Unretained(&s)));
123 c3.Notify(1, 2, 3);
  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
TextResourceDecoder.cpp 207 unsigned char c3 = buf1Len ? (--buf1Len, *buf1++) : buf2Len ? (--buf2Len, *buf2++) : 0; local
212 if (c3 || c4) {
219 } else if (c1 == 0xEF && c2 == 0xBB && c3 == 0xBF) {
225 } else if (!c1 && !c2 && c3 == 0xFE && c4 == 0xFF) {
  /external/chromium_org/third_party/boringssl/src/crypto/bn/
generic.c 826 BN_ULONG c1, c2, c3; local
830 c3 = 0;
831 mul_add_c(a[0], b[0], c1, c2, c3);
834 mul_add_c(a[0], b[1], c2, c3, c1);
835 mul_add_c(a[1], b[0], c2, c3, c1);
838 mul_add_c(a[2], b[0], c3, c1, c2);
839 mul_add_c(a[1], b[1], c3, c1, c2);
840 mul_add_c(a[0], b[2], c3, c1, c2);
841 r[2] = c3;
842 c3 = 0
934 BN_ULONG c1, c2, c3; local
978 BN_ULONG c1, c2, c3; local
1058 BN_ULONG c1, c2, c3; local
    [all...]
  /external/chromium_org/third_party/icu/source/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/chromium_org/third_party/mesa/src/src/mesa/tnl/
t_vb_render.c 98 GLubyte c1 = mask[v1], c2 = mask[v2], c3 = mask[v3]; \
99 GLubyte ormask = c1|c2|c3; \
102 else if (!(c1 & c2 & c3 & CLIPMASK)) \
109 GLubyte c3 = mask[v3], c4 = mask[v4]; \
110 GLubyte ormask = c1|c2|c3|c4; \
113 else if (!(c1 & c2 & c3 & c4 & CLIPMASK)) \
168 GLubyte c3 = mask[elt[j+2]]; local
169 GLubyte ormask = c1|c2|c3;
173 if (!(c1&c2&c3&CLIPMASK))
  /external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/isac/fix/source/
filterbanks_mips.c 115 int32_t c0, c1, c2, c3; local
125 "lh %[c3], 6(%[coeff_ptr]) \n\t"
136 : [c0] "=&r" (c0), [c1] "=&r" (c1), [c2] "=&r" (c2), [c3] "=&r" (c3),
176 "mul %[t3], %[c3], %[state1_lo] \n\t"
178 "mul %[b2], %[c3], %[state1_hi] \n\t"
211 : [c0] "r" (c0), [c1] "r" (c1), [c2] "r" (c2), [c3] "r" (c3),
  /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/guava/guava-tests/test/com/google/common/collect/
AbstractCollectionTest.java 185 Collection<String> c3 = create(); local
189 assertFalse(c2.equals(c3));

Completed in 555 milliseconds

1 23 4 5 6 7 8