HomeSort by relevance Sort by last modified time
    Searched defs:y2 (Results 101 - 125 of 519) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/libgdx/gdx/src/com/badlogic/gdx/maps/tiled/renderers/
BatchTiledMapRenderer.java 36 import static com.badlogic.gdx.graphics.g2d.Batch.Y2;
200 final float y2 = y1 + region.getRegionHeight() * unitScale; local
202 imageBounds.set(x1, y1, x2 - x1, y2 - y1);
217 vertices[Y2] = y2;
223 vertices[Y3] = y2;
HexagonalTiledMapRenderer.java 184 float y2 = y1 + region.getRegionHeight() * unitScale; local
198 vertices[Y2] = y2;
204 vertices[Y3] = y2;
IsometricStaggeredTiledMapRenderer.java 84 float y2 = y1 + region.getRegionHeight() * unitScale; local
98 vertices[Y2] = y2;
104 vertices[Y3] = y2;
IsometricTiledMapRenderer.java 130 float y2 = y1 + region.getRegionHeight() * unitScale; local
144 vertices[Y2] = y2;
150 vertices[Y3] = y2;
OrthogonalTiledMapRenderer.java 36 import static com.badlogic.gdx.graphics.g2d.Batch.Y2;
107 float y2 = y1 + region.getRegionHeight() * unitScale; local
121 vertices[Y2] = y2;
127 vertices[Y3] = y2;
  /external/libvncserver/libvncserver/
scale.c 93 double x1,y1,w1,h1, x2, y2, w2, h2; local
114 y2 = FLOOR(y1);
118 h2 = CEIL(h1 + ( y1 - y2 ));
122 * function, *x, *y, *w, *h, x2, y2, w2, h2,
128 *y = (int)y2;
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
57 int y1 = m->y1+line*m->textH, y2 = y1+m->textH; local
58 if(y2>m->y2)
59 y2=m->y2;
60 rfbFillRect(m->screen,m->x1,y1,m->x2,y2,invert?m->colour:m->backColour);
62 rfbDrawStringWithClip(m->screen,m->font,m->x1+m->xhot,y2-1+m->yhot,
64 m->x1,y1,m->x2,y2,
103 m->x1,m->y1+lineEnd*m->textH,m->x2,m->y2,
    [all...]
  /external/libvncserver/test/
encodingstest.c 226 y1=(rand()%(server->height-1)),y2=(rand()%(server->height-1)); local
228 if(y1>y2) { i=y1; y1=y2; y2=i; }
229 x2++; y2++;
232 for(j=y1;j<y2;j++)
233 server->frameBuffer[i*4+c+j*server->paddedWidthInBytes]=255*(i-x1+j-y1)/(x2-x1+y2-y1);
235 rfbMarkRectAsModified(server,x1,y1,x2,y2);
238 rfbLog("Sent update (%d,%d)-(%d,%d)\n",x1,y1,x2,y2);
  /external/libvncserver/webclients/novnc/include/
display.js 29 this._cleanRect = { 'x1': 0, 'y1': 0, 'x2': -1, 'y2': -1 };
143 if (height < vp.h && cr.y2 > vp.y + height - 1) {
144 cr.y2 = vp.y + height - 1;
202 if (vy2 < cr.y2) {
203 cr.y2 = vy2;
252 'w': cr.x2 - cr.x1 + 1, 'h': cr.y2 - cr.y1 + 1 };
255 if (cr.x1 >= cr.x2 || cr.y1 >= cr.y2) {
278 if (vy2 > cr.y2) {
280 dirtyBoxes.push({'x': cr.x1, 'y': cr.y2 + 1,
281 'w': cr.x2 - cr.x1 + 1, 'h': vy2 - cr.y2});
337 var y2 = new_y - this._viewportLoc.y; variable
    [all...]
  /external/mesa3d/src/gallium/state_trackers/xa/
xa_tracker.h 142 uint16_t x1, y1, x2, y2; member in struct:xa_box
  /external/mesa3d/src/mesa/drivers/dri/intel/
intel_blit.c 268 int x1, y1, x2, y2; local
291 y2 = cy + ch + irb->draw_y;
299 x1, y1, x2 - x1, y2 - y1);
362 assert(y1 < y2);
377 OUT_BATCH((y2 << 16) | x2);
456 OUT_BATCH((100 << 16) | 100); /* clip x2, y2 */
535 uint32_t x1, y1, x2, y2; local
559 y2 = image_y + height;
567 x1, y1, x2 - x1, y2 - y1);
596 OUT_BATCH((y2 << 16) | x2)
    [all...]
  /external/mesa3d/src/mesa/state_tracker/
st_cb_fbo.c 712 GLuint y2; local
738 /* Note: y=0=bottom of buffer while y2=0=top of buffer.
743 y2 = strb->Base.Height - y - h;
745 y2 = y;
751 usage, x, y2, w, h);
  /external/mesa3d/src/mesa/swrast/
s_aatritemp.h 72 GLfloat y2 = v2->attrib[FRAG_ATTRIB_WPOS][1]; variable
74 if (y1 <= y2) {
75 vMin = v0; vMid = v1; vMax = v2; /* y0<=y1<=y2 */
77 else if (y2 <= y0) {
78 vMin = v2; vMid = v0; vMax = v1; /* y2<=y0<=y1 */
81 vMin = v0; vMid = v2; vMax = v1; bf = -bf; /* y0<=y2<=y1 */
85 if (y0 <= y2) {
86 vMin = v1; vMid = v0; vMax = v2; bf = -bf; /* y1<=y0<=y2 */
88 else if (y2 <= y1) {
89 vMin = v2; vMid = v1; vMax = v0; bf = -bf; /* y2<=y1<=y0 *
    [all...]
  /external/opencv3/modules/calib3d/src/
triangulate.cpp 244 double x1, y1, x2, y2; local
255 y2 = points2->data.db[p*2+1];
268 cvSetReal2D(T2i,1,2,y2);
377 y2 = tmp31_2->data.db[1];
383 points2->data.db[p*2+1] = y2;
  /external/opencv3/modules/core/include/opencv2/core/cuda/
filters.hpp 99 const int y2 = y1 + 1; local
102 out = out + src_reg * ((x2 - x) * (y2 - y));
105 out = out + src_reg * ((x - x1) * (y2 - y));
107 src_reg = src(y2, x1);
110 src_reg = src(y2, x2);
  /external/opencv3/modules/cudev/include/opencv2/cudev/ptr2d/
interpolation.hpp 116 const int y2 = y1 + 1; local
119 out = out + src_reg * static_cast<work_elem_type>((x2 - x) * (y2 - y));
122 out = out + src_reg * static_cast<work_elem_type>((x - x1) * (y2 - y));
124 src_reg = src(y2, x1);
127 src_reg = src(y2, x2);
  /external/opencv3/modules/imgproc/src/
featureselect.cpp 201 int y2 = y_cell + 1; local
207 y2 = std::min(grid_height - 1, y2);
209 for( int yy = y1; yy <= y2; yy++ )
345 int y2 = y_cell + 1; local
351 y2 = std::min(grid_height-1, y2);
353 for( int yy = y1; yy <= y2; yy++ )
  /external/opencv3/modules/imgproc/test/
test_canny.cpp 198 int y1 = 0, y2 = 0, x1 = 0, x2 = 0; local
210 y1 = y2 = y; x1 = x + 1; x2 = x - 1;
214 y1 = y + 1; y2 = y - 1; x1 = x + 1; x2 = x - 1;
218 y1 = y - 1; y2 = y + 1; x1 = x + 1; x2 = x - 1;
223 x1 = x2 = x; y1 = y + 1; y2 = y - 1;
229 if( (unsigned)y2 < (unsigned)height && (unsigned)x2 < (unsigned)width )
230 c = (float)fabs(mag.at<float>(y2, x2));
  /external/pdfium/core/src/fxge/ge/
fx_ge_device.cpp 138 FX_FLOAT x1, x2, y1, y2; local
143 y2);
148 y2 = pPoints[1].m_PointY;
150 DrawCosmeticLine(x1, y1, x2, y2, fill_color, fill_mode, alpha_flag,
323 FX_FLOAT y2,
333 if (m_pDeviceDriver->DrawCosmeticLine(x1, y1, x2, y2, color, alpha_flag,
341 path.SetPoint(1, x2, y2, FXPT_LINETO);
  /external/pdfium/third_party/freetype/src/cff/
cffdrivr.c 670 FT_Int y2 = darken_params[3]; local
678 y1 < 0 || y2 < 0 || y3 < 0 || y4 < 0 ||
680 y1 > 500 || y2 > 500 || y3 > 500 || y4 > 500 )
686 driver->darken_params[3] = y2;
  /external/pdfium/xfa/src/fxbarcode/qrcode/
BC_QRCoderMatrixUtil.cpp 146 int32_t y2 = 8; local
147 matrix->Set(x2, y2, bit);
150 int32_t y2 = matrix->GetHeight() - 7 + (i - 8); local
151 matrix->Set(x2, y2, bit);
  /external/skia/experimental/SkV8Example/
Path2DBuilder.cpp 237 double y2 = args[3]->NumberValue(); local
245 SkDoubleToScalar(y2),
  /external/skia/src/core/
SkEdge.cpp 178 SkFDot6 x0, y0, x1, y1, x2, y2; local
187 y2 = SkScalarRoundToFDot6(pts[2].fY, shift);
195 y2 = int(pts[2].fY * scale);
200 if (y0 > y2)
203 SkTSwap(y0, y2);
206 SkASSERT(y0 <= y1 && y1 <= y2);
209 int bot = SkFDot6Round(y2);
218 SkFDot6 dy = (SkLeftShift(y1, 1) - y0 - y2) >> 2;
260 A = SkFDot6ToFixedDiv2(y0 - y1 - y1 + y2); // 1/2 the real value
268 fQLastY = SkFDot6ToFixed(y2);
336 SkFDot6 x0, y0, x1, y1, x2, y2, x3, y3; local
    [all...]
  /external/skia/src/effects/
GrCircleBlurFragmentProcessor.cpp 142 float y2 = (y-kernelOff) * (y-kernelOff); local
144 kernel[y*kernelWH+(kernelWH-x-1)] = kernel[y*kernelWH+x] = expf(-(x2 + y2) * b);
  /frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
cod_amr.cpp 832 Word16 y2[L_SUBFR]; // Filtered fixed codebook excitation
833 Word16 gCoeff[6]; // Correlations between xn, y1, & y2:
1235 Word16 y2[L_SUBFR]; \/* Filtered fixed codebook excitation *\/ local
    [all...]

Completed in 1480 milliseconds

1 2 3 45 6 7 8 91011>>