HomeSort by relevance Sort by last modified time
    Searched defs:py (Results 26 - 50 of 89) sorted by null

12 3 4

  /external/mesa3d/src/mesa/swrast/
s_aatriangle.c 52 const GLfloat py = v1[1] - v0[1]; local
60 const GLfloat a = py * qz - pz * qy;
62 const GLfloat c = px * qy - py * qx;
s_aaline.c 95 const GLfloat py = y1 - y0;
97 const GLfloat qx = -py;
100 const GLfloat a = py * qz - pz * qy;
102 const GLfloat c = px * qy - py * qx;
111 const GLfloat py = y1 - y0; local
114 const GLfloat b = pz * py;
115 const GLfloat c = px * px + py * py;
  /external/opencv/cv/src/
cvcornersubpix.cpp 209 double py = i - win.height; local
225 bb1 += gxx * px + gxy * py;
226 bb2 += gxy * px + gyy * py;
cvrotcalipers.cpp 323 float py = (A1 * C2 - A2 * C1) * idet; local
326 out[1] = py;
  /external/qemu/ui/
curses.c 46 static int px, py, sminx, sminy, smaxx, smaxy; variable
56 pnoutrefresh(screenpad, py, px, sminy, sminx, smaxy - 1, smaxx - 1);
89 py = (height - LINES) / 2;
93 py = 0;
141 y = sminy + y - py;
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
shortest-path.h 180 const Pair &py = pairs_[y]; local
182 Weight wy = Times(distance_[py.first], py.second);
186 if (px.first == superfinal_ && py.first != superfinal_) {
188 } else if (py.first == superfinal_ && px.first != superfinal_) {
  /external/chromium_org/third_party/skia/samplecode/
SampleWarp.cpp 385 SkScalar py = orig.fY + dy; local
386 return SkPoint::Make(px, py);
411 SkScalar py = orig.fY + dy; local
412 return SkPoint::Make(px, py);
  /external/clang/test/SemaCXX/
overloaded-builtin-operators.cpp 245 int* __restrict py; local
246 py += size;
  /external/deqp/framework/common/
tcuTestLog.cpp 237 int py = (w + d + h) - (x + y + z + 1); local
243 Vec4 p = blendImageAccess.getPixel(px, py);
247 blendImageAccess.setPixel(b, px, py);
268 int py = (w + d + h) - (x + y + z + 1); local
269 Vec4 s = blendImageAccess.getPixel(px, py)*pixelScale + pixelBias;
271 logImageAccess.setPixel(s, px, py);
  /external/skia/samplecode/
SampleWarp.cpp 385 SkScalar py = orig.fY + dy; local
386 return SkPoint::Make(px, py);
411 SkScalar py = orig.fY + dy; local
412 return SkPoint::Make(px, py);
  /frameworks/base/core/java/com/android/internal/widget/multiwaveview/
PointCloud.java 211 final float py = point.y + mCenterY; local
221 canvas.scale(s, s, px, py);
222 canvas.translate(px - cx, py - cy);
228 canvas.drawCircle(px, py, pointSize, mPaint);
  /frameworks/base/libs/hwui/
Matrix.cpp 454 float py = vertices[i + 1]; local
456 x = px * data[kScaleX] + py * data[kSkewX] + data[kTranslateX];
457 y = px * data[kSkewY] + py * data[kScaleY] + data[kTranslateY];
458 z = px * data[kPerspective0] + py * data[kPerspective1] + data[kPerspective2];
  /packages/apps/InCallUI/src/com/android/incallui/widget/multiwaveview/
PointCloud.java 213 final float py = point.y + mCenterY; local
223 canvas.scale(s, s, px, py);
224 canvas.translate(px - cx, py - cy);
230 canvas.drawCircle(px, py, pointSize, mPaint);
  /packages/apps/Launcher2/src/com/android/launcher2/
Utilities.java 183 float py = (destHeight - src.getHeight()) / 2; local
184 dest.drawBitmap(mask, px + xy[0], py + xy[1],
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
GestureStrokeDrawingPoints.java 130 final int[] py = mPreviewYCoordinates.getPrimitiveArray(); local
131 mInterpolator.reset(px, py, 0, size);
170 yCoords.addAt(d1, py[p2]);
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
lp_setup_tri.c 593 unsigned py = bbox->y0 & 63 & ~3; local
604 assert(py + 4 <= TILE_SIZE);
608 lp_rast_arg_triangle_contained(tri, px, py) );
622 py = MIN2(py, TILE_SIZE - 16);
625 assert(py + 16 <= TILE_SIZE);
630 lp_rast_arg_triangle_contained(tri, px, py) );
636 py = MIN2(py, TILE_SIZE - 16);
639 assert(py + 16 <= TILE_SIZE)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/
st_cb_bitmap.c 268 GLint px, GLint py, GLsizei width, GLsizei height,
273 destBuffer += py * destStride + px;
697 int px = -999, py = -999; local
706 py = y - cache->ypos;
708 py < 0 || py + height > BITMAP_CACHE_HEIGHT ||
722 py = (BITMAP_CACHE_HEIGHT - height) / 2;
724 cache->ypos = y - py;
731 assert(py != -999);
745 unpack_bitmap(st, px, py, width, height, unpack, bitmap
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/swrast/
s_aaline.c 95 const GLfloat py = y1 - y0;
97 const GLfloat qx = -py;
100 const GLfloat a = py * qz - pz * qy;
102 const GLfloat c = px * qy - py * qx;
111 const GLfloat py = y1 - y0; local
114 const GLfloat b = pz * py;
115 const GLfloat c = px * px + py * py;
  /external/deqp/modules/egl/
teglPreservingSwapTests.cpp 257 const int py = height; local
260 const int y1i = (int)((py/2.0f) * y1 + oy);
263 const int y2i = (int)((py/2.0f) * y2 + oy);
304 const int py = target->getHeight(); local
307 const int y1i = (int)((py/2.0) * y1 + oy);
310 const int y2i = (int)((py/2.0) * y2 + oy);
524 const int py = height; local
527 const int y1i = (int)((py/2.0f) * postSwapY1 + oy);
530 const int y2i = (int)((py/2.0f) * postSwapY2 + oy);
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_setup_tri.c 593 unsigned py = bbox->y0 & 63 & ~3; local
604 assert(py + 4 <= TILE_SIZE);
608 lp_rast_arg_triangle_contained(tri, px, py) );
622 py = MIN2(py, TILE_SIZE - 16);
625 assert(py + 16 <= TILE_SIZE);
630 lp_rast_arg_triangle_contained(tri, px, py) );
636 py = MIN2(py, TILE_SIZE - 16);
639 assert(py + 16 <= TILE_SIZE)
    [all...]
  /external/mesa3d/src/mesa/state_tracker/
st_cb_bitmap.c 268 GLint px, GLint py, GLsizei width, GLsizei height,
273 destBuffer += py * destStride + px;
697 int px = -999, py = -999; local
706 py = y - cache->ypos;
708 py < 0 || py + height > BITMAP_CACHE_HEIGHT ||
722 py = (BITMAP_CACHE_HEIGHT - height) / 2;
724 cache->ypos = y - py;
731 assert(py != -999);
745 unpack_bitmap(st, px, py, width, height, unpack, bitmap
    [all...]
  /external/pdfium/core/src/fxcodec/lcms2/lcms2-2.6/src/
cmsintrp.c 338 cmsFloat32Number px, py; local
349 py = fclamp(Input[1]) * p->Domain[1];
352 y0 = (int) _cmsQuickFloor(py); fy = py - (cmsFloat32Number) y0;
450 cmsFloat32Number px, py, pz; local
464 py = fclamp(Input[1]) * p->Domain[1];
468 y0 = (int) _cmsQuickFloor(py); fy = py - (cmsFloat32Number) y0;
597 cmsFloat32Number px, py, pz; local
608 py = fclamp(Input[1]) * p->Domain[1]
    [all...]
  /external/pdfium/core/src/fxge/agg/agg23/
agg_rasterizer_scanline_aa.h 443 const int* py = cy; local
446 move_to_no_clip(*px++, *py++);
448 line_to_no_clip(*px++, *py++);
  /frameworks/base/graphics/java/android/graphics/drawable/
AnimatedRotateDrawable.java 84 float py = st.mPivotYRel ? (h * st.mPivotY) : st.mPivotY; local
86 canvas.rotate(mCurrentDegrees, px + bounds.left, py + bounds.top);
RotateDrawable.java 86 final float py = st.mPivotYRel ? (h * st.mPivotY) : st.mPivotY; local
89 canvas.rotate(st.mCurrentDegrees, px + bounds.left, py + bounds.top);

Completed in 1607 milliseconds

12 3 4