HomeSort by relevance Sort by last modified time
    Searched defs:x2 (Results 226 - 250 of 2524) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /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 191 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 113 protected: float x2; // expected-error{{anonymous union cannot contain a protected data member}} member in union:BadMembers::__anon7979
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::__anon8107
static-cast.cpp 173 struct X2 {
176 struct X3 : X2 {
183 (void)static_cast<X3_typedef*>(x2);
186 const X2 *x2; member in struct:X4
warn-unused-filescoped.cpp 90 int x2; // expected-warning{{unused}} member in namespace:__anon8199
  /external/clang/test/SemaTemplate/
default-arguments.cpp 7 X<int> *x2; variable
51 struct X2 {
74 X2<int> x2i; // expected-note{{in instantiation of template class 'X2<int>' requested here}}
75 X2<int>::Inner1<float> x2iif;
77 X2<int>::Inner1<> x2bad; // expected-error{{too few template arguments for class template 'Inner1'}}
79 X2<int>::NonType1<'a'> x2_nontype1;
80 X2<int>::NonType1<> x2_nontype1_bad; // expected-error{{too few template arguments for class template 'NonType1'}}
83 X2<int>::Inner3<float>::VeryInner<> vi;
84 X2<char>::Inner3<int>::NonType2<> x2_deep_nontype; // expected-note{{in instantiation of template cla (…)
    [all...]
  /external/freetype/src/autofit/
afloader.c 564 FT_Int x1, y1, x2, y2, x3, y3, x4, y4; local
581 x2 = module->darken_params[2];
614 else if ( scaled_stem < af_intToFixed( x2 ) )
616 FT_Int xdelta = x2 - x1;
633 FT_Int xdelta = x3 - x2;
636 FT_DivFix( af_intToFixed( x2 ), ppem );
afmodule.c 226 FT_Int x1, y1, x2, y2, x3, y3, x4, y4; local
261 x2 = darken_params[2];
268 if ( x1 < 0 || x2 < 0 || x3 < 0 || x4 < 0 ||
270 x1 > x2 || x2 > x3 || x3 > x4 ||
276 module->darken_params[2] = x2;
  /external/freetype/src/cff/
cffdrivr.c 676 FT_Int x1, y1, x2, y2, x3, y3, x4, y4; local
711 x2 = darken_params[2];
718 if ( x1 < 0 || x2 < 0 || x3 < 0 || x4 < 0 ||
720 x1 > x2 || x2 > x3 || x3 > x4 ||
726 driver->darken_params[2] = x2;
  /external/guava/guava/src/com/google/common/math/
BigIntegerMath.java 101 BigInteger x2 = x.pow(2); local
102 int logX2Floor = x2.bitLength() - 1;
187 BigInteger x2 = x.pow(2); local
189 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);
215 BigInteger x2 = x.pow(2); local
217 assertTrue(TEN.pow(2 * result + 1).compareTo(x2) > 0);
219 assertTrue(result == 0 || TEN.pow(2 * result - 1).compareTo(x2) <= 0);
227 BigInteger x2 = x.pow(2) local
    [all...]
  /external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/autofit/
afloader.c 564 FT_Int x1, y1, x2, y2, x3, y3, x4, y4; local
581 x2 = module->darken_params[2];
614 else if ( scaled_stem < af_intToFixed( x2 ) )
616 FT_Int xdelta = x2 - x1;
633 FT_Int xdelta = x3 - x2;
636 FT_DivFix( af_intToFixed( x2 ), ppem );
  /external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/cff/
cffdrivr.c 674 FT_Int x2 = darken_params[2]; local
682 if ( x1 < 0 || x2 < 0 || x3 < 0 || x4 < 0 ||
684 x1 > x2 || x2 > x3 || x3 > x4 ||
690 driver->darken_params[2] = x2;
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/particles/values/
WeightMeshSpawnShapeValue.java 54 x2 = vertices[p2Offset], y2 = vertices[p2Offset+1], z2 = vertices[p2Offset+2], local
56 float area = Math.abs((x1*(y2 - y3) + x2*(y3 - y1) + x3*(y1-y2))/2f);
57 distribution.add(new Triangle(x1, y1, z1, x2, y2, z2, x3, y3, z3), area);
67 x2 = vertices[p2Offset], y2 = vertices[p2Offset+1], z2 = vertices[p2Offset+2], local
69 float area = Math.abs((x1*(y2 - y3) + x2*(y3 - y1) + x3*(y1-y2))/2f);
70 distribution.add(new Triangle(x1, y1, z1, x2, y2, z2, x3, y3, z3), area);
82 vector.set( t.x1 + a*(t.x2 - t.x1) + b*(t.x3 - t.x1),
  /external/libgdx/gdx/src/com/badlogic/gdx/maps/tiled/renderers/
BatchTiledMapRenderer.java 32 import static com.badlogic.gdx.graphics.g2d.Batch.X2;
199 final float x2 = x1 + region.getRegionWidth() * unitScale; local
202 imageBounds.set(x1, y1, x2 - x1, y2 - y1);
216 vertices[X2] = x1;
222 vertices[X3] = x2;
228 vertices[X4] = x2;
HexagonalTiledMapRenderer.java 183 float x2 = x1 + region.getRegionWidth() * unitScale; local
197 vertices[X2] = x1;
203 vertices[X3] = x2;
209 vertices[X4] = x2;
IsometricStaggeredTiledMapRenderer.java 83 float x2 = x1 + region.getRegionWidth() * unitScale; local
97 vertices[X2] = x1;
103 vertices[X3] = x2;
109 vertices[X4] = x2;
IsometricTiledMapRenderer.java 129 float x2 = x1 + region.getRegionWidth() * unitScale; local
143 vertices[X2] = x1;
149 vertices[X3] = x2;
155 vertices[X4] = x2;
OrthogonalTiledMapRenderer.java 32 import static com.badlogic.gdx.graphics.g2d.Batch.X2;
106 float x2 = x1 + region.getRegionWidth() * unitScale; local
120 vertices[X2] = x1;
126 vertices[X3] = x2;
132 vertices[X4] = x2;
  /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/libvncserver/libvncserver/
scale.c 93 double x1,y1,w1,h1, x2, y2, w2, h2; local
113 x2 = FLOOR(x1);
117 w2 = CEIL(w1 + ( x1 - x2 ));
122 * function, *x, *y, *w, *h, x2, y2, w2, h2,
127 *x = (int)x2;
263 void rfbScaledScreenUpdate(rfbScreenInfoPtr screen, int x1, int y1, int x2, int y2)
277 rfbScaledScreenUpdateRect(screen, ptr, x1, y1, x2-x1, y2-y1);
selbox.c 12 int x1,y1,x2,y2,textH,pageH; member in struct:__anon16328
31 rfbFillRect(s,m->x1,m->okY-m->textH,m->x2,m->okY,bcolour);
36 m->x1,m->okY-m->textH,m->x2,m->okY,
45 cancelStr,m->x1,m->okY-m->textH,m->x2,m->okY,
60 rfbFillRect(m->screen,m->x1,y1,m->x2,y2,invert?m->colour:m->backColour);
64 m->x1,y1,m->x2,y2,
97 rfbDoCopyRect(m->screen,m->x1,m->y1,m->x2,m->y1+lineStart*m->textH,
103 m->x1,m->y1+lineEnd*m->textH,m->x2,m->y2,
189 if(x>=m->x1 && x<m->x2 && y>=m->y1 && y<m->y2)
205 int x1,int y1,int x2,int y2
    [all...]

Completed in 788 milliseconds

1 2 3 4 5 6 7 8 91011>>