Searched defs:x1 (Results 101 - 125 of 673) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/skia/samplecode/
H A DSampleDash.cpp65 SkScalar x1 = x0 + SkIntToScalar(1000); local
75 canvas->drawLine(x0, y0, x1, y0, paint);
82 canvas->drawLine(x0, y0, x1, y0, paint);
/external/chromium_org/third_party/skia/src/effects/gradients/
H A DSkClampRange.cpp16 static int chop(int64_t x0, SkFixed edge, int64_t x1, int64_t dx, int count) { argument
23 if (x1 <= edge) {
/external/chromium_org/third_party/skia/tests/
H A DClipCubicTest.cpp58 float x1, float y1,
63 crv[1].fX = x1; crv[1].fY = y1;
57 SetCurve(float x0, float y0, float x1, float y1, float x2, float y2, float x3, float y3, SkPoint crv[4]) argument
/external/clang/test/CXX/dcl.dcl/dcl.attr/dcl.attr.deprecated/
H A Dp1.cpp23 X<char> x1; variable
/external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
H A Dp4-1y.cpp23 auto &&x1 = M(X{}); local
/external/clang/test/Parser/
H A Dexpressions.c65 int x1 = sizeof int; // expected-error {{expected parentheses around type name in sizeof expression}} local
/external/clang/test/Sema/
H A Dtentative-decls.c4 struct a x1; // expected-note 2{{forward declaration of 'struct a'}} variable in typeref:struct:a
/external/clang/test/SemaCXX/
H A Dcopy-initialization.cpp12 X x1 = y; // expected-error{{no matching constructor for initialization of 'X'}} local
/external/clang/test/SemaTemplate/
H A Dinstantiate-template-template-parm.cpp39 X1<TT> x1; // expected-error{{has different template parameters}} member in struct:X2
H A Dms-sizeof-missing-typename.cpp34 x1 = sizeof(typename T::/*template*/ InnerTemplate<sizeof(/*typename*/ T::InnerType)>), enumerator in enum:nested_sizeof::Foo::__anon19478
/external/compiler-rt/lib/asan/tests/
H A Dasan_mem_test.cc78 static bool AllocateTwoAdjacentArrays(char **x1, char **x2, size_t size) { argument
89 *x1 = reinterpret_cast<char*>(v[j-1]);
98 if (res && p == *x1) continue;
107 char *x1, *x2; local
108 if (!Ident(AllocateTwoAdjacentArrays)(&x1, &x2, size))
110 // fprintf(stderr, " large oob memset: %p %p %zd\n", x1, x2, size);
111 // Do a memset on x1 with huge out-of-bound access that will end up in x2.
112 EXPECT_DEATH(Ident(memset)(x1, 0, size * 2),
114 delete [] x1;
/external/freetype/src/autofit/
H A Dafwarp.h36 FT_Pos x1, x2; member in struct:AF_WarperRec_
/external/libvpx/libvpx/vp8/common/
H A Dtextblit.c61 void vp8_blit_line(int x0, int x1, int y0, int y1, unsigned char *image, const int pitch) argument
63 int steep = abs(y1 - y0) > abs(x1 - x0);
74 t = x1;
75 x1 = y1;
79 if (x0 > x1)
83 x0 = x1;
84 x1 = t;
91 deltax = x1 - x0;
104 for (x = x0; x <= x1; x++)
118 for (x = x0; x <= x1;
[all...]
/external/libvpx/libvpx/vp9/common/
H A Dvp9_textblit.c60 void vp9_blit_line(int x0, int x1, int y0, int y1, unsigned char *image, argument
62 int steep = abs(y1 - y0) > abs(x1 - x0);
72 t = x1;
73 x1 = y1;
77 if (x0 > x1) {
80 x0 = x1;
81 x1 = t;
88 deltax = x1 - x0;
100 for (x = x0; x <= x1; x++) {
110 for (x = x0; x <= x1;
[all...]
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_draw_quad.c100 float x0, float y0, float x1, float y1, float z)
127 v[8] = x1;
132 v[16] = x1;
99 util_draw_texquad(struct pipe_context *pipe, struct cso_context *cso, float x0, float y0, float x1, float y1, float z) argument
/external/mesa3d/src/mesa/drivers/x11/
H A Dxm_line.c428 int x1 = (GLint) vert1->attrib[FRAG_ATTRIB_WPOS][0]; local
434 XDrawLine(dpy, xrb->pixmap, gc, x0, y0, x1, y1);
/external/openfst/src/include/fst/
H A Dexpectation-weight.h72 ExpectationWeight(const X1& x1, const X2& x2) argument
73 : PairWeight<X1, X2>(x1, x2) { }
/external/openssl/crypto/rc2/
H A Drc2_cbc.c140 register RC2_INT x0,x1,x2,x3,t; local
145 x1=(RC2_INT)(l>>16L);
156 t=(x0+(x1& ~x3)+(x2&x3)+ *(p0++))&0xffff;
158 t=(x1+(x2& ~x0)+(x3&x0)+ *(p0++))&0xffff;
159 x1=(t<<2)|(t>>14);
160 t=(x2+(x3& ~x1)+(x0&x1)+ *(p0++))&0xffff;
162 t=(x3+(x0& ~x2)+(x1&x2)+ *(p0++))&0xffff;
171 x1+=p1[x0&0x3f];
172 x2+=p1[x1
185 register RC2_INT x0,x1,x2,x3,t; local
[all...]
/external/pdfium/core/src/fxge/agg/agg23/
H A Dagg_clip_liang_barsky.h30 ((x < clip_box.x1) << 2) |
34 inline unsigned clip_liang_barsky(T x1, T y1, T x2, T y2, argument
39 FX_FLOAT deltax = (FX_FLOAT)(x2 - x1);
43 deltax = (x1 > clip_box.x1) ? -nearzero : nearzero;
47 xin = (FX_FLOAT)clip_box.x1;
51 xout = (FX_FLOAT)clip_box.x1;
53 FX_FLOAT tinx = FXSYS_Div(xin - x1, deltax);
81 FX_FLOAT toutx = FXSYS_Div(xout - x1, deltax);
91 *x++ = (T)(x1
[all...]
H A Dagg_math.h25 AGG_INLINE FX_FLOAT calc_point_location(FX_FLOAT x1, FX_FLOAT y1, argument
29 return FXSYS_Mul(x - x2, y2 - y1) - FXSYS_Mul(y - y2, x2 - x1);
31 AGG_INLINE FX_FLOAT calc_distance(FX_FLOAT x1, FX_FLOAT y1, FX_FLOAT x2, FX_FLOAT y2) argument
33 FX_FLOAT dx = x2 - x1;
37 AGG_INLINE FX_FLOAT calc_line_point_distance(FX_FLOAT x1, FX_FLOAT y1, argument
41 FX_FLOAT dx = x2 - x1;
45 return calc_distance(x1, y1, x, y);
/external/qemu/android/skin/
H A Drect.h60 int x1, y1; member in struct:__anon29190
64 extern void skin_box_init( SkinBox* box, int x1, int y1, int x2, int y2 );
/external/skia/samplecode/
H A DSampleDash.cpp65 SkScalar x1 = x0 + SkIntToScalar(1000); local
75 canvas->drawLine(x0, y0, x1, y0, paint);
82 canvas->drawLine(x0, y0, x1, y0, paint);
/external/skia/src/effects/gradients/
H A DSkClampRange.cpp16 static int chop(int64_t x0, SkFixed edge, int64_t x1, int64_t dx, int count) { argument
23 if (x1 <= edge) {
/external/skia/tests/
H A DClipCubicTest.cpp58 float x1, float y1,
63 crv[1].fX = x1; crv[1].fY = y1;
57 SetCurve(float x0, float y0, float x1, float y1, float x2, float y2, float x3, float y3, SkPoint crv[4]) argument
/external/valgrind/main/memcheck/tests/
H A Dmempool.c115 char *x1, *x2, *x3, *x4, *x5; local
121 x1 = allocate(p, 10);
127 *x1 = 'a'; // valid
130 x1[-1] = 'h'; // invalid
131 x1[10] = 'i'; // invalid
138 *x1 = 'e'; // valid

Completed in 507 milliseconds

1234567891011>>