HomeSort by relevance Sort by last modified time
    Searched defs:x2 (Results 201 - 225 of 1056) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/chromium_org/third_party/skia/src/core/
SkBitmapProcState_sample.h 116 SRCTYPE x2 = srcAddr[UNPACK_PRIMARY_SHORT(xx1)]; local
121 *colors++ = RETURNDST(x2);
SkEdge.cpp 178 SkFDot6 x0, y0, x1, y1, x2, y2; local
186 x2 = SkScalarRoundToFDot6(pts[2].fX, shift);
194 x2 = int(pts[2].fX * scale);
202 SkTSwap(x0, x2);
217 SkFDot6 dx = ((x1 << 1) - x0 - x2) >> 2;
253 SkFixed A = SkFDot6ToFixedDiv2(x0 - x1 - x1 + x2); // 1/2 the real value
267 fQLastX = SkFDot6ToFixed(x2);
337 SkFDot6 x0, y0, x1, y1, x2, y2, x3, y3; local
345 x2 = SkScalarRoundToFDot6(pts[2].fX, shift);
355 x2 = int(pts[2].fX * scale)
    [all...]
  /external/chromium_org/third_party/skia/src/opts/
SkTextureCompression_opts_neon.cpp 65 const uint64x2_t x2 = vandq_u64(vshlq_n_u64(ret, 20), kMask3); local
66 ret = vshrq_n_u64(vorrq_u64(ret, vorrq_u64(x1, x2)), 16);
  /external/chromium_org/third_party/speex/libspeex/
math_approx.h 190 spx_word16_t x2; local
194 x2 = MULT16_16_P13(x,x);
195 return ADD32(K1, MULT16_16_P13(x2, ADD32(K2, MULT16_16_P13(x2, ADD32(K3, MULT16_16_P13(K4, x2))))));
198 x2 = MULT16_16_P13(x,x);
199 return SUB32(-K1, MULT16_16_P13(x2, ADD32(K2, MULT16_16_P13(x2, ADD32(K3, MULT16_16_P13(K4, x2))))));
210 spx_word16_t x2; local
    [all...]
  /external/chromium_org/ui/gfx/geometry/
rect_unittest.cc 53 int x2; // rect 2 member in struct:gfx::__anon550
72 Rect r2(tests[i].x2, tests[i].y2, tests[i].w2, tests[i].h2);
84 int x2; // rect 2 member in struct:gfx::__anon551
114 Rect r2(tests[i].x2, tests[i].y2, tests[i].w2, tests[i].h2);
130 int x2; // rect 2 member in struct:gfx::Test
163 Rect r2(tests[i].x2, tests[i].y2, tests[i].w2, tests[i].h2);
188 int x2; // target member in struct:gfx::Test
215 Rect r2(tests[i].x2, tests[i].y2, tests[i].w2, tests[i].h2);
432 float x2; // target member in struct:gfx::Test
459 RectF r2(tests[i].x2, tests[i].y2, tests[i].w2, tests[i].h2)
475 int x2; \/\/ target member in struct:gfx::Test
525 int x2; \/\/ target member in struct:gfx::Test
588 int x2; \/\/ target member in struct:gfx::Test
    [all...]
  /external/clang/test/Analysis/
stack-addr-ps.cpp 38 const int &x2 = x1; // expected-note {{binding reference variable 'x2' here}} local
39 return x2; // expected-warning{{Address of stack memory associated with temporary object of type 'int' returned}} expected-warning {{returning reference to local temporary}}
50 int &x2 = x1; // expected-note {{binding reference variable 'x2' here}} local
51 return &x2; // expected-warning{{Address of stack memory associated with local variable 'x1' returned}} expected-warning {{address of stack memory associated with local variable 'x1' returned}}
56 int *const &x2 = &x1; // expected-note {{binding reference variable 'x2' here}} local
57 return x2; // expected-warning {{address of stack memory associated with local variable 'x1' returned}} expected-warning {{Address of stack memory associated with local variable 'x1' returned to caller}}
62 const int &x2 = x1; // expected-note {{binding reference variable 'x2' here} local
    [all...]
  /external/clang/test/CXX/temp/temp.param/
p15-cxx0x.cpp 10 X<X<X<X<X<int>>>>> *x2; variable
63 template<place...X1, place...X2>
64 struct append_places<places<X1...>, places<X2...>> {
65 typedef places<X1...,X2...> type;
  /external/clang/test/CodeGen/
override-layout.c 32 // CHECK: Type: struct X2
33 struct PACKED X2 {
38 void use_X2() { struct X2 x2; x2.y = sizeof(struct X2); }; local
  /external/clang/test/CodeGenCXX/
value-init.cpp 160 struct X2 : X0 {
161 int x2; member in struct:zeroinit::X2
166 struct X3 : X2<int> {
167 X3() : X2<int>() { }
  /external/clang/test/Sema/
expr-address-of.c 24 int *x2 = &y; // expected-error {{address of register variable requested}} local
58 register int *x2; local
59 int *_dummy2 = &(*(x2 + 1));
exprs.c 190 int x2 = *(volatile int*)0; // Ok. local
flexible-array-init.c 7 struct one x2 = { 5, 1, 2, 3 }; // expected-warning{{flexible array initialization is a GNU extension}} variable in typeref:struct:one
  /external/clang/test/SemaCXX/
anonymous-union.cpp 108 protected: float x2; // expected-error{{anonymous union cannot contain a protected data member}} member in union:BadMembers::__anon2925
dcl_init_aggr.cpp 27 int x2[] = { }; // expected-warning{{zero size arrays are an extension}} variable
linkage2.cpp 29 extern int x2;
34 int x2; member in namespace:test3::__anon3041
static-cast.cpp 169 struct X2 {
172 struct X3 : X2 {
179 (void)static_cast<X3_typedef*>(x2);
182 const X2 *x2; member in struct:X4
warn-unused-filescoped.cpp 90 int x2; // expected-warning{{unused}} member in namespace:__anon3124
  /external/clang/test/SemaTemplate/
default-arguments.cpp 5 X<int> *x2; variable
49 struct X2 {
72 X2<int> x2i; // expected-note{{in instantiation of template class 'X2<int>' requested here}}
73 X2<int>::Inner1<float> x2iif;
75 X2<int>::Inner1<> x2bad; // expected-error{{too few template arguments for class template 'Inner1'}}
77 X2<int>::NonType1<'a'> x2_nontype1;
78 X2<int>::NonType1<> x2_nontype1_bad; // expected-error{{too few template arguments for class template 'NonType1'}}
81 X2<int>::Inner3<float>::VeryInner<> vi;
82 X2<char>::Inner3<int>::NonType2<> x2_deep_nontype; // expected-note{{in instantiation of template cla (…)
    [all...]
  /external/freetype/src/cff/
cffdrivr.c 597 FT_Int x2 = darken_params[2]; local
605 if ( x1 < 0 || x2 < 0 || x3 < 0 || x4 < 0 ||
607 x1 > x2 || x2 > x3 || x3 > x4 ||
613 driver->darken_params[2] = x2;
  /external/guava/guava/src/com/google/common/math/
BigIntegerMath.java 99 BigInteger x2 = x.pow(2); local
100 int logX2Floor = x2.bitLength() - 1;
166 BigInteger x2 = x.pow(2); local
168 return (x2.compareTo(halfPowerSquared) <= 0) ? floorLog : floorLog + 1;
  /external/guava/guava-tests/test/com/google/common/math/
BigIntegerMathTest.java 124 BigInteger x2 = x.pow(2); local
126 assertTrue(ZERO.setBit(2 * result + 1).compareTo(x2) > 0);
128 assertTrue(result == 0 || ZERO.setBit(2 * result - 1).compareTo(x2) <= 0);
135 BigInteger x2 = x.pow(2); local
137 assertTrue(ZERO.setBit(2 * result + 1).compareTo(x2) >= 0);
139 assertTrue(result == 0 || ZERO.setBit(2 * result - 1).compareTo(x2) < 0);
211 BigInteger x2 = x.pow(2); local
213 assertTrue(TEN.pow(2 * result + 1).compareTo(x2) > 0);
215 assertTrue(result == 0 || TEN.pow(2 * result - 1).compareTo(x2) <= 0);
222 BigInteger x2 = x.pow(2) local
    [all...]
  /external/libopus/celt/
vq.c 48 celt_norm x1, x2; local
50 x2 = Xptr[stride];
51 Xptr[stride] = EXTRACT16(SHR32(MULT16_16(c,x2) + MULT16_16(s,x1), 15));
52 *Xptr++ = EXTRACT16(SHR32(MULT16_16(c,x1) - MULT16_16(s,x2), 15));
57 celt_norm x1, x2; local
59 x2 = Xptr[stride];
60 Xptr[stride] = EXTRACT16(SHR32(MULT16_16(c,x2) + MULT16_16(s,x1), 15));
61 *Xptr-- = EXTRACT16(SHR32(MULT16_16(c,x1) - MULT16_16(s,x2), 15));
  /external/libvpx/libvpx/vp9/common/mips/dspr2/
vp9_itrans4_dspr2.c 324 int x0, x1, x2, x3; local
328 x2 = input[2];
331 if (!(x0 | x1 | x2 | x3)) {
339 s3 = sinpi_4_9 * x2;
340 s4 = sinpi_1_9 * x2;
343 s7 = x0 - x2 + x3;
347 x2 = sinpi_3_9 * s7;
352 s2 = x2;
vp9_itrans8_dspr2.c 473 int x0, x1, x2, x3, x4, x5, x6, x7; local
477 x2 = input[5];
484 if (!(x0 | x1 | x2 | x3 | x4 | x5 | x6 | x7)) {
493 s2 = cospi_10_64 * x2 + cospi_22_64 * x3;
494 s3 = cospi_22_64 * x2 - cospi_10_64 * x3;
502 x2 = ROUND_POWER_OF_TWO((s2 + s6), DCT_CONST_BITS);
512 s2 = x2;
521 x2 = s0 - s2;
529 s2 = cospi_16_64 * (x2 + x3);
530 s3 = cospi_16_64 * (x2 - x3)
    [all...]
  /external/libvpx/libvpx/vp9/encoder/
vp9_resize.c 236 int x, x1, x2, sum, k, int_pel, sub_pel; local
256 x2 = x;
257 if (x1 > x2) {
286 for (; x <= x2; ++x, y += delta) {

Completed in 5370 milliseconds

1 2 3 4 5 6 7 891011>>