HomeSort by relevance Sort by last modified time
    Searched refs:c2 (Results 101 - 125 of 498) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/clang/test/SemaTemplate/
class-template-id.cpp 38 typedef N::C<float> c2; typedef
instantiate-member-class.cpp 38 X<float>::C *c2; variable
44 c1 = c2; // expected-error{{assigning to 'X<int>::C *' from incompatible type 'X<float>::C *'}}
  /external/grub/stage2/
iso9660.h 199 #define RRMAGIC(c1, c2) ((c1)|(c2) << 8)
201 #define CHECK2(ptr, c1, c2) \
202 (*(unsigned short *)(ptr) == (((c1) | (c2) << 8) & 0xFFFF))
  /external/libvpx/vp8/common/arm/armv6/
iwalsh_v6.asm 61 qaddsubx r2, r10, r11 ; [b2|c2] [c1+d1 | a1-b1]
64 qaddsubx r4, r12, lr ; [b2|c2] [c1+d1 | a1-b1]
67 qadd16 r2, r2, r10 ; [b2+3|c2+3]
69 qadd16 r4, r4, r10 ; [b2+3|c2+3]
96 qaddsubx r6, r2, r3 ; [b2|c2] [c1+d1 | a1-b1]
98 qaddsubx r8, r4, r5 ; [b2|c2] [c1+d1 | a1-b1]
101 qadd16 r6, r6, r10 ; [b2+3|c2+3]
103 qadd16 r8, r8, r10 ; [b2+3|c2+3]
  /external/webkit/Source/WebCore/platform/graphics/gpu/
LoopBlinnMathUtils.h 59 // and (a2, b2, c2) overlap. The definition of this function is that
67 const FloatPoint& c2);
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
InsnFormat.java 513 * @param c2 code unit to write
516 short c2) {
519 out.writeShort(c2);
528 * @param c2 code unit to write
532 short c2, short c3) {
535 out.writeShort(c2);
545 * @param c2 code unit to write
550 short c2, short c3, short c4) {
553 out.writeShort(c2);
564 * @param c2 code unit to writ
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
CurrencyTest.java 47 Currency c2 = Currency.getInstance(new Locale("fr", "CA")); local
50 c2 == c0);
61 c2 = Currency.getInstance(new Locale("", "JP"));
64 c2 == c0);
309 Currency c2 = Currency.getInstance("JPY"); local
310 c2.getDefaultFractionDigits();
311 assertEquals(" Currency.getInstance(\"" + c2
312 + "\") returned incorrect number of digits. ", 0, c2
  /external/icu4c/test/intltest/
aliastst.cpp 67 Calendar* c2 = Calendar::createInstance(newLoc, status); local
71 const char* l2 = c2->getLocaleID(ULOC_VALID_LOCALE, status);
78 if(!(c1==c2)){
79 errln("CalendarTest: c1!=c2. newLoc= "+UnicodeString(newLoc.getName()) +" oldLoc= "+UnicodeString(oldLoc.getName()));
83 delete c2;
112 errln("TestDateFormat: c1!=c2. newLoc= "+UnicodeString(newLoc.getName()) +" oldLoc= "+UnicodeString(oldLoc.getName()));
134 Collator* c2 = Collator::createInstance(newLoc, status); local
137 Locale l2 = c2->getLocale(ULOC_VALID_LOCALE, status);
145 if(!(c1==c2)){
146 errln("CollationTest: c1!=c2. newLoc= "+UnicodeString(newLoc.getName()) +" oldLoc= "+UnicodeString(oldLoc.getName()))
    [all...]
itercoll.cpp 113 RuleBasedCollator *c2 = NULL; local
114 c2 = new RuleBasedCollator((UnicodeString)"&a < b < c/abd < d", status);
116 if (c2 == NULL || U_FAILURE(status))
119 delete c2;
124 iter = c2->createCollationElementIterator(source);
127 delete c2;
601 int32_t c1, c2, count = 0; local
607 c2 = i2.next(status);
609 if (c1 != c2)
611 errln(" %d: strength(0x%X) != strength(0x%X)", count, c1, c2);
    [all...]
  /external/jpeg/
wrjpgcom.c 107 int c1, c2; local
112 c2 = NEXTBYTE();
113 if (c2 == EOF)
115 return (((unsigned int) c1) << 8) + ((unsigned int) c2);
224 int c1, c2; local
227 c2 = NEXTBYTE();
228 if (c1 != 0xFF || c2 != M_SOI)
230 return c2;
  /external/sonivox/arm-fm-22k/host_src/
eas_hostmm.c 340 EAS_U8 c1, c2; local
345 if ((result = EAS_HWGetByte(hwInstData, file, &c2)) != EAS_SUCCESS)
350 *((EAS_U16*) p) = ((EAS_U16) c1 << 8) | c2;
352 *((EAS_U16*) p) = ((EAS_U16) c2 << 8) | c1;
369 EAS_U8 c1, c2,c3,c4; local
374 if ((result = EAS_HWGetByte(hwInstData, file, &c2)) != 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 340 EAS_U8 c1, c2; local
345 if ((result = EAS_HWGetByte(hwInstData, file, &c2)) != EAS_SUCCESS)
350 *((EAS_U16*) p) = ((EAS_U16) c1 << 8) | c2;
352 *((EAS_U16*) p) = ((EAS_U16) c2 << 8) | c1;
369 EAS_U8 c1, c2,c3,c4; local
374 if ((result = EAS_HWGetByte(hwInstData, file, &c2)) != 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-wt-22k/host_src/
eas_hostmm.c 371 EAS_U8 c1, c2; local
376 if ((result = EAS_HWGetByte(hwInstData, file, &c2)) != EAS_SUCCESS)
381 *((EAS_U16*) p) = ((EAS_U16) c1 << 8) | c2;
383 *((EAS_U16*) p) = ((EAS_U16) c2 << 8) | c1;
400 EAS_U8 c1, c2,c3,c4; local
405 if ((result = EAS_HWGetByte(hwInstData, file, &c2)) != EAS_SUCCESS)
414 *((EAS_U32*) p) = ((EAS_U32) c1 << 24) | ((EAS_U32) c2 << 16) | ((EAS_U32) c3 << 8) | c4;
416 *((EAS_U32*) p)= ((EAS_U32) c4 << 24) | ((EAS_U32) c3 << 16) | ((EAS_U32) c2 << 8) | c1;
  /external/webkit/Source/JavaScriptCore/runtime/
UString.cpp 242 const UChar* c2 = s2.characters();
244 while (l < lmin && *c1 == *c2) {
246 c2++;
250 return (c1[0] < c2[0]);
261 const UChar* c2 = s2.characters();
263 while (l < lmin && *c1 == *c2) {
265 c2++;
269 return (c1[0] > c2[0]);
  /libcore/luni/src/test/java/tests/java/security/
IdentityTest.java 195 CertificateStub c2 = new CertificateStub("zzz", null, null, pk1); local
197 i.addCertificate(c2);
200 assertTrue(c1.equals(s[0]) || c2.equals(s[0]));
201 assertTrue(c1.equals(s[1]) || c2.equals(s[1]));
207 assertTrue(c1.equals(s[0]) || c2.equals(s[0]));
208 assertTrue(c1.equals(s[1]) || c2.equals(s[1]));
299 CertificateStub c2 = new CertificateStub("zzz", null, null, pk1); local
301 i.addCertificate(c2);
  /external/webkit/Source/WebCore/platform/audio/
FFTFrame.cpp 102 Complex c2(realP2[i], imagP2[i]);
105 double mag2 = abs(c2);
133 double phase2 = arg(c2);
243 Complex c2 = complexFromMagnitudePhase(mag, phase); local
245 realP[i] = static_cast<float>(c2.real());
246 imagP[i] = static_cast<float>(c2.imag());
  /external/webkit/Source/WebCore/rendering/style/
StyleRareNonInheritedData.cpp 154 ContentData* c2 = o.m_content.get(); local
156 while (c1 && c2) {
157 if (!c1->dataEquivalent(*c2))
160 c2 = c2->next();
163 return !c1 && !c2;
StyleRareInheritedData.cpp 131 static bool cursorDataEquivalent(const CursorList* c1, const CursorList* c2)
133 if (c1 == c2)
135 if ((!c1 && c2) || (c1 && !c2))
137 return (*c1 == *c2);
  /external/icu4c/test/cintltst/
custrtst.c 1195 UChar32 c1, c2; local
1549 UChar32 c1, c2; local
    [all...]
  /external/icu4c/common/
bmpset.cpp 300 UChar c, c2; local
329 } else if(c>=0xdc00 || (s+1)==limit || (c2=s[1])<0xdc00 || c2>=0xe000) {
336 if(!containsSlow(U16_GET_SUPPLEMENTARY(c, c2), list4kStarts[0x10], list4kStarts[0x11])) {
369 } else if(c>=0xdc00 || (s+1)==limit || (c2=s[1])<0xdc00 || c2>=0xe000) {
376 if(containsSlow(U16_GET_SUPPLEMENTARY(c, c2), list4kStarts[0x10], list4kStarts[0x11])) {
389 UChar c, c2; local
418 } else if(c<0xdc00 || s==limit || (c2=*(limit-1))<0xd800 || c2>=0xdc00)
    [all...]
  /frameworks/base/graphics/java/android/renderscript/
Matrix4f.java 379 int c2 = (i+3) % 4; local
384 float minor = (mMat[c0 + 4*r0] * (mMat[c1 + 4*r1] * mMat[c2 + 4*r2] -
385 mMat[c1 + 4*r2] * mMat[c2 + 4*r1]))
386 - (mMat[c0 + 4*r1] * (mMat[c1 + 4*r0] * mMat[c2 + 4*r2] -
387 mMat[c1 + 4*r2] * mMat[c2 + 4*r0]))
388 + (mMat[c0 + 4*r2] * (mMat[c1 + 4*r0] * mMat[c2 + 4*r1] -
389 mMat[c1 + 4*r1] * mMat[c2 + 4*r0]));
  /packages/apps/Camera/jni/feature_stab/db_vlvm/
db_image_homography.cpp 44 inline void db_SProjImagePointPointConstraints(double c1[9],double c2[9],double xp[3],double x[3])
58 db_SProjImagePointPointConstraint(c2,2,0,1,xp,x);
62 db_SProjImagePointPointConstraint(c2,2,1,0,xp,x);
66 db_SProjImagePointPointConstraint(c2,1,2,0,xp,x);
70 inline void db_SAffineImagePointPointConstraints(double c1[7],double c2[7],double xp[3],double x[3])
76 db_Copy6(c2,ct2); c2[6]=ct2[8];
  /external/libnfc-nxp/src/
phFriNfc_NdefReg.c 51 int8_t c1, c2; local
59 c2 = *s2;
61 if (c2 >=97)
62 c2 = (c2 - 32);
65 while ( (c1 == c2) && (c1 != '\0') && (c2 != '\0') && (count > 0) );
67 if ( (count == 0) || (c1 == c2) )
70 else if ( (c1 > c2) )
  /external/v8/src/
regexp-macro-assembler.cc 229 unibrow::uchar c2 = substring2[i]; local
230 if (c1 != c2) {
233 if (s1[0] != c2) {
234 unibrow::uchar s2[1] = { c2 };
235 canonicalize->get(c2, '\0', s2);
  /external/webkit/Source/WebCore/platform/text/
TextEncodingRegistry.cpp 75 char c2; local
78 c2 = *s2++;
79 if (toASCIILower(c1) != toASCIILower(c2))
81 } while (c1 && c2);
82 return !c1 && !c2;

Completed in 910 milliseconds

1 2 3 45 6 7 8 91011>>