HomeSort by relevance Sort by last modified time
    Searched refs:y1 (Results 401 - 425 of 1250) sorted by null

<<11121314151617181920>>

  /prebuilts/gdb/linux-x86/lib/python2.7/lib-tk/
Tkdnd.py 282 x1, y1, x2, y2 = source.canvas.bbox(source.id)
283 dx, dy = x2-x1, y2-y1
289 x1, y1, x2, y2 = self.canvas.bbox(self.dndid)
290 self.canvas.move(self.dndid, x-x1, y-y1)
  /prebuilts/misc/windows/sdl2/test/
testgesture.c 118 void drawLine(SDL_Surface *screen,float x0,float y0,float x1,float y1,unsigned int col) {
120 for(t=0;t<1;t+=(float)(1.f/SDL_max(SDL_fabs(x0-x1),SDL_fabs(y0-y1))))
121 setpix(screen,x1+t*(x0-x1),y1+t*(y0-y1),col);
testdraw2.c 79 int x1, y1, x2, y2; local
120 y1 = (rand() % (viewport.h*2)) - viewport.h;
122 SDL_RenderDrawLine(renderer, x1, y1, x2, y2);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/
Tkdnd.py 282 x1, y1, x2, y2 = source.canvas.bbox(source.id)
283 dx, dy = x2-x1, y2-y1
289 x1, y1, x2, y2 = self.canvas.bbox(self.dndid)
290 self.canvas.move(self.dndid, x-x1, y-y1)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/
Tkdnd.py 282 x1, y1, x2, y2 = source.canvas.bbox(source.id)
283 dx, dy = x2-x1, y2-y1
289 x1, y1, x2, y2 = self.canvas.bbox(self.dndid)
290 self.canvas.move(self.dndid, x-x1, y-y1)
  /development/samples/CubeLiveWallpaper/src/com/example/android/livecubes/cube1/
CubeWallpaper1.java 202 void drawLine(Canvas c, int x1, int y1, int z1, int x2, int y2, int z2) {
211 float newy1 = (float)(Math.sin(xrot) * z1 + Math.cos(xrot) * y1);
213 float newz1 = (float)(Math.cos(xrot) * z1 - Math.sin(xrot) * y1);
  /external/ImageMagick/MagickCore/
paint.c 129 s->y1=(double) (up); \
237 y=(ssize_t) s->y1+offset;
459 gradient->gradient_vector.y1=(double) image->rows-1.0;
467 gradient->gradient_vector.y1=(double) image->rows-1.0;
475 gradient->gradient_vector.y1=(double) image->rows-1.0;
483 gradient->gradient_vector.y1=0.0;
491 gradient->gradient_vector.y1=0.0;
499 gradient->gradient_vector.y1=0.0;
507 gradient->gradient_vector.y1=0.0;
515 gradient->gradient_vector.y1=0.0
    [all...]
  /external/ImageMagick/coders/
uyvy.c 120 y1,
165 y1=(unsigned char) ReadBlobByte(image);
168 SetPixelRed(image,ScaleCharToQuantum(y1),q);
117 y1, local
  /external/apache-commons-math/src/main/java/org/apache/commons/math/ode/nonstiff/
AdaptiveStepsizeIntegrator.java 213 * @param y1 work array for a state vector
214 * @param yDot1 work array for the first time derivative of y1
222 final double[] y1, final double[] yDot1)
250 y1[j] = y0[j] + h * yDot0[j];
252 computeDerivatives(t0 + h, y1, yDot1);
  /external/clang/test/Analysis/
dead-stores.c 243 int y1 = 4; local
265 ++y1;
291 (void)y1;
  /external/deqp/framework/delibs/deimage/
deImage.c 141 int y1 = deClamp32(y0+1, 0, srcHeight-1); local
149 deARGB p01 = deImage_getPixel(srcImage, x0, y1);
150 deARGB p11 = deImage_getPixel(srcImage, x1, y1);
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/util/
UtilityTest.java 155 long y1 = y & 0xFFFFFFFFl; local
156 if (x1 < y1) {
159 else if (x1 > y1) {
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
UtilityTest.java 151 long y1 = y & 0xFFFFFFFFl; local
152 if (x1 < y1) {
155 else if (x1 > y1) {
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/g2d/
Gdx2DPixmap.java 193 public void fillTriangle (int x1, int y1, int x2, int y2, int x3, int y3, int color) {
194 fillTriangle(basePtr, x1, y1, x2, y2, x3, y3, color);
346 private static native void fillTriangle (long pixmap, int x1, int y1, int x2, int y2, int x3, int y3, int color); /*
347 gdx2d_fill_triangle((gdx2d_pixmap*)pixmap, x1, y1, x2, y2, x3, y3, color);
  /external/opencv3/3rdparty/openexr/IlmImf/
ImfTiledRgbaFile.cpp 229 for (int y = dw.min.y, y1 = 0; y <= dw.max.y; ++y, ++y1)
232 _buf[y1][x1] = _fbBase[x * _fbXStride + y * _fbYStride];
234 RGBAtoYCA (_yw, width, _writeA, _buf[y1], _buf[y1]);
753 for (int y = dw.min.y, y1 = 0; y <= dw.max.y; ++y, ++y1)
757 _buf[y1][x1].r = 0;
758 _buf[y1][x1].b = 0;
761 YCAtoRGBA (_yw, width, _buf[y1], _buf[y1])
    [all...]
  /external/opencv3/modules/imgproc/src/opencl/
pyr_down.cl 225 for (int yin = y, y1 = min(dst_rows, y + 2); yin < y1; yin++)
249 for (int yin = y, y1 = min(dst_rows, y + 2); yin < y1; yin++)
272 for (int yin = y, y1 = min(dst_rows, y + 2); yin < y1; yin++)
  /external/pdfium/third_party/libopenjpeg20/
image.c 121 l_y1 = opj_uint_min(opj_uint_adds(l_y1, p_cp->tdy), p_image_header->y1); /* use add saturated to prevent overflow */
159 p_image_dest->y1 = p_image_src->y1;
  /frameworks/av/media/libstagefright/codecs/amrwbenc/src/
q_gain2.c 64 Word16 y1[], /* (i) Q_xn: Adaptive codebook. */
65 Word16 Q_xn, /* (i) : xn and y1 format */
68 Word16 g_coeff[], /* (i) : Correlations <xn y1> <y1 y1> */
130 * coeff[0] = y1 y1 *
131 * coeff[1] = -2 xn y1 *
134 * coeff[4] = 2 y1 y2 *
136 * Product <y1 y1> and <xn y1> have been compute in G_pitch() and
    [all...]
  /frameworks/base/libs/hwui/
FontRenderer.h 159 void appendMeshQuadNoClip(float x1, float y1, float u1, float v1,
163 void appendMeshQuad(float x1, float y1, float u1, float v1,
167 void appendRotatedMeshQuad(float x1, float y1, float u1, float v1,
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/jni/
colorspace.cpp 70 int u, v, y1, y2, y3, y4; local
72 y1 = pInY[0];
80 pOutColor[0] = convertYuvToRgba(y1, u, v);
  /hardware/bsp/intel/peripheral/libupm/src/lcd/
eboled.h 224 * @param y1 the y position of the end of the line
227 void drawLine (int8_t x0, int8_t y0, int8_t x1, int8_t y1, uint8_t color = COLOR_WHITE);
289 * @param y1 the y coordinate of the second corner
294 void drawTriangle (int8_t x0, int8_t y0, int8_t x1, int8_t y1, int8_t x2, int8_t y2, uint8_t color = COLOR_WHITE);
302 * @param y1 the y coordinate of the second corner
307 void drawTriangleFilled ( int8_t x0, int8_t y0, int8_t x1, int8_t y1, int8_t x2, int8_t y2, uint8_t color);
  /prebuilts/gdb/darwin-x86/lib/python2.7/plat-mac/
PixMapWrapper.py 149 def blit(self, x1=0,y1=0,x2=None,y2=None, port=None):
152 dest = [x1,y1,x2,y2]
156 dest[3] = y1 + src[3]-src[1]
  /prebuilts/go/darwin-x86/src/image/
geom.go 255 // Rect is shorthand for Rectangle{Pt(x0, y0), Pt(x1, y1)}. The returned
258 func Rect(x0, y0, x1, y1 int) Rectangle {
262 if y0 > y1 {
263 y0, y1 = y1, y0
265 return Rectangle{Point{x0, y0}, Point{x1, y1}}
  /prebuilts/go/linux-x86/src/image/
geom.go 255 // Rect is shorthand for Rectangle{Pt(x0, y0), Pt(x1, y1)}. The returned
258 func Rect(x0, y0, x1, y1 int) Rectangle {
262 if y0 > y1 {
263 y0, y1 = y1, y0
265 return Rectangle{Point{x0, y0}, Point{x1, y1}}
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/
PixMapWrapper.py 149 def blit(self, x1=0,y1=0,x2=None,y2=None, port=None):
152 dest = [x1,y1,x2,y2]
156 dest[3] = y1 + src[3]-src[1]

Completed in 3194 milliseconds

<<11121314151617181920>>