Searched defs:c2 (Results 126 - 150 of 621) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/libyuv/source/
H A Dscale_mips.cc583 const int c2 = 0x2AAA; local
608 "mul $t6, $t6, %[c2] \n" // t6 * 0x2AAA
642 : [c1] "r" (c1), [c2] "r" (c2)
/external/chromium_org/third_party/skia/experimental/Intersection/
H A DSimplifyAddIntersectingTs_Test.cpp94 SimplifyAddIntersectingTsTest::Contour& c2 = contour[1]; local
95 addIntersectTs(&c1, &c2);
98 // bool c2Intersected = c2.fSegments[0].intersected();
109 c2.dump();
/external/chromium_org/third_party/skia/samplecode/
H A DSampleAAClip.cpp16 SkAAClip c0, c1, c2; local
19 c2.op(c0, c1, op);
21 SkDEBUGCODE(SkIRect r2 = c2.getBounds());
/external/chromium_org/third_party/skia/src/core/
H A DSkQuadClipper.cpp22 static bool chopMonoQuadAt(SkScalar c0, SkScalar c1, SkScalar c2, argument
28 SkScalar A = c0 - c1 - c1 + c2;
/external/chromium_org/third_party/skia/src/sfnt/
H A DSkOTTable_name.cpp24 unsigned c2 = SkEndian_SwapBE16(*src++); local
25 SkASSERT(SkUTF16_IsLowSurrogate(c2));
27 c = (c << 10) + c2 + (0x10000 - (0xD800 << 10) - 0xDC00);
/external/clang/test/CXX/class.derived/class.virtual/
H A Dp3-0x.cpp123 A<char>::C c2; member in namespace:MemberOfUnknownSpecialization
/external/clang/test/Layout/
H A Dms-x86-empty-nonvirtual-bases.cpp73 C2 c2; member in struct:D
95 // CHECK: 16 | struct C2 c2
/external/clang/test/Misc/
H A Ddiag-aka-types.cpp10 char c2 = ref; // expected-error{{'const foo_t' (aka 'const X')}} variable
/external/clang/test/SemaCXX/
H A Dvtable-instantiation.cc11 void c2() { function in struct:PR8640::C2
17 C2<int*> c2; local
18 c2.c2(); // expected-note {{in instantiation of member function}}
/external/eigen/test/
H A Dproduct.h57 c2 = internal::random<Index>(0, cols-1); local
140 Scalar x = square2.row(c) * square2.col(c2);
141 VERIFY_IS_APPROX(x, square2.row(c).transpose().cwiseProduct(square2.col(c2)).sum());
/external/guava/guava/src/com/google/common/hash/
H A DMurmur3_128HashFunction.java50 long c2 = 0x4cf5ad432745937fL; field in class:Murmur3_128HashFunction.Murmur3_128Hasher
69 k1 *= c2;
76 k2 *= c2;
105 k2 *= c2;
128 k1 *= c2;
/external/icu/icu4c/source/samples/uciter8/
H A Duciter8.c48 UChar32 c1, c2; local
75 c2=iter2->current(iter2);
76 if(c1!=c2) {
77 log_err("%s->current()=U+%04x != U+%04x=%s->current() at middle=%d\n", n1, c1, c2, n2, middle);
84 c2=iter2->next(iter2);
85 if(c1!=c2) {
86 log_err("%s->next()=U+%04x != U+%04x=%s->next() at %d (started in middle)\n", n1, c1, c2, n2, iter1->getIndex(iter1, UITER_CURRENT));
94 c2=iter2->previous(iter2);
95 if(c1!=c2) {
96 log_err("%s->previous()=U+%04x != U+%04x=%s->previous() at %d (started in middle)\n", n1, c1, c2, n
308 UChar32 c1, c2; local
[all...]
/external/libcxx/test/containers/sequences/deque/deque.modifiers/
H A Dinsert_iter_iter.pass.cpp47 test(int P, C& c1, const C& c2) argument
53 CI i = c1.insert(c1.begin() + P, BCI(c2.begin()), BCI(c2.end()));
55 assert(c1.size() == c1_osize + c2.size());
60 for (int j = 0; j < c2.size(); ++j, ++i)
77 C c2 = make<C>(M); local
78 test(i, c1, c2);
86 C c2 = make<C>(M); local
87 test(i, c1, c2);
95 C c2 local
104 C c2 = make<C>(M); local
113 C c2 = make<C>(M); local
122 C c2 = make<C>(M); local
130 testI(int P, C& c1, const C& c2) argument
160 C c2 = make<C>(M); local
169 C c2 = make<C>(M); local
178 C c2 = make<C>(M); local
187 C c2 = make<C>(M); local
196 C c2 = make<C>(M); local
[all...]
/external/libcxx/test/input.output/iostreams.base/ios/basic.ios.members/
H A Dcopyfmt.pass.cpp124 char c1, c2, c3; local
126 ios1.pword(1) = &c2;
H A Dswap.pass.cpp86 char c1, c2, c3; local
88 ios1.pword(1) = &c2;
158 assert(ios2.pword(1) == &c2);
/external/lldb/test/pexpect-2.4/examples/
H A Dchess3.py85 c2 = white.term.get_abs(17,59) variable
89 fout.write ('Computer:%s%s%s%s\n' %(c1,c2,c3,c4))
94 c2 = white.term.get_abs(17,59) variable
98 fout.write ('Computer:%s%s%s%s\n' %(c1,c2,c3,c4))
/external/oprofile/libpp/
H A Ddiff_container.cpp108 profile_container const & c2)
109 : pc1(c1), pc2(c2),
107 diff_container(profile_container const & c1, profile_container const & c2) argument
/external/skia/experimental/Intersection/
H A DSimplifyAddIntersectingTs_Test.cpp94 SimplifyAddIntersectingTsTest::Contour& c2 = contour[1]; local
95 addIntersectTs(&c1, &c2);
98 // bool c2Intersected = c2.fSegments[0].intersected();
109 c2.dump();
/external/skia/samplecode/
H A DSampleAAClip.cpp16 SkAAClip c0, c1, c2; local
19 c2.op(c0, c1, op);
21 SkDEBUGCODE(SkIRect r2 = c2.getBounds());
/external/skia/src/core/
H A DSkQuadClipper.cpp22 static bool chopMonoQuadAt(SkScalar c0, SkScalar c1, SkScalar c2, argument
28 SkScalar A = c0 - c1 - c1 + c2;
/external/skia/src/sfnt/
H A DSkOTTable_name.cpp24 unsigned c2 = SkEndian_SwapBE16(*src++); local
25 SkASSERT(SkUTF16_IsLowSurrogate(c2));
27 c = (c << 10) + c2 + (0x10000 - (0xD800 << 10) - 0xDC00);
/external/chromium_org/base/
H A Dcallback_unittest.cc79 Callback<void(int,int)> c2; local
87 EXPECT_TRUE(c2.is_null());
/external/chromium_org/third_party/angle/src/third_party/murmurhash/
H A DMurmurHash3.cpp103 const uint32_t c2 = 0x1b873593; local
116 k1 *= c2;
135 k1 *= c1; k1 = ROTL32(k1,15); k1 *= c2; h1 ^= k1;
162 const uint32_t c2 = 0xab0e9789; local
178 k1 *= c1; k1 = ROTL32(k1,15); k1 *= c2; h1 ^= k1;
182 k2 *= c2; k2 = ROTL32(k2,16); k2 *= c3; h2 ^= k2;
222 k2 *= c2; k2 = ROTL32(k2,16); k2 *= c3; h2 ^= k2;
228 k1 *= c1; k1 = ROTL32(k1,15); k1 *= c2; h1 ^= k1;
265 const uint64_t c2 = BIG_CONSTANT(0x4cf5ad432745937f); local
277 k1 *= c1; k1 = ROTL64(k1,31); k1 *= c2; h
[all...]
/external/chromium_org/third_party/boringssl/src/crypto/bn/asm/
H A Dx86_64-gcc.c287 /* mul_add_c(a,b,c0,c1,c2) -- c+=a*b for three word number c=(c2,c1,c0) */
288 /* mul_add_c2(a,b,c0,c1,c2) -- c+=2*a*b for three word number c=(c2,c1,c0) */
289 /* sqr_add_c(a,i,c0,c1,c2) -- c+=a[i]^2 for three word number c=(c2,c1,c0) */
290 /* sqr_add_c2(a,i,c0,c1,c2) -- c+=2*a[i]*a[j] for three word number c=(c2,c1,c0)
295 #define mul_add_c(a, b, c0, c1, c2) \
303 c2
367 BN_ULONG c1, c2, c3; local
470 BN_ULONG c1, c2, c3; local
509 BN_ULONG c1, c2, c3; local
584 BN_ULONG c1, c2, c3; local
[all...]
/external/chromium_org/third_party/icu/source/common/
H A Dcstring.c245 unsigned char c1, c2; local
249 c2=(unsigned char)*str2;
251 if(c2==0) {
256 } else if(c2==0) {
260 rc=(int)(unsigned char)uprv_tolower(c1)-(int)(unsigned char)uprv_tolower(c2);
284 unsigned char c1, c2; local
288 c2=(unsigned char)*str2;
290 if(c2==0) {
295 } else if(c2==0) {
299 rc=(int)(unsigned char)uprv_tolower(c1)-(int)(unsigned char)uprv_tolower(c2);
[all...]

Completed in 921 milliseconds

1234567891011>>