HomeSort by relevance Sort by last modified time
    Searched defs:py (Results 1 - 25 of 70) sorted by null

1 2 3

  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/
path.h 46 VGfloat sx, sy, ox, oy, px, py; member in struct:path_for_each_data
  /external/mesa3d/src/gallium/state_trackers/vega/
path.h 46 VGfloat sx, sy, ox, oy, px, py; member in struct:path_for_each_data
  /external/chromium_org/native_client_sdk/src/examples/demo/pi_generator/
pi_generator.cc 46 int py = (1.0 - y) * ctx->height; local
47 uint32_t color = ctx->data[ctx->width * py + px];
61 ctx->data[ctx->width * py + px] = color | kOpaqueColorMask;
  /external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/noise/filter/
PerturbFilter.java 74 int py = (int) (origSize * noisey * this.magnitude); local
76 float c00 = arr[this.wrap(y - py, workSize) * workSize + this.wrap(x - px, workSize)];
77 float c01 = arr[this.wrap(y - py, workSize) * workSize + this.wrap(x + px, workSize)];
78 float c10 = arr[this.wrap(y + py, workSize) * workSize + this.wrap(x - px, workSize)];
79 float c11 = arr[this.wrap(y + py, workSize) * workSize + this.wrap(x + px, workSize)];
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
lp_rast_priv.h 224 unsigned px, py, pixel_offset; local
236 py = y % TILE_SIZE;
237 pixel_offset = tile_pixel_offset(px, py, 0);
lp_rast_tri_tmp.h 118 int py = y + iy; local
130 TAG(do_block_4)(task, tri, plane, px, py, cx);
140 int py = y + iy; local
145 block_full_4(task, tri, px, py);
221 int py = y + iy; local
232 TAG(do_block_16)(task, tri, plane, px, py, cx);
242 int py = y + iy; local
247 block_full_16(task, tri, px, py);
309 int py = y + iy; local
317 + plane[j].dcdy * py) * 4
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/intel/
intel_pixel_bitmap.c 186 GLint px, py; local
245 for (py = 0; py < height; py += DY) {
247 int h = MIN2(DY, height - py);
265 -orig_dsty + y_flip(fb, dsty + py, h),
282 dsty + py,
  /external/chromium_org/third_party/skia/src/core/
SkStrokerPriv.cpp 26 SkScalar py = pivot.fY; local
32 path->cubicTo(px + nx + CWX(sx, sy), py + ny + CWY(sx, sy),
33 px + CWX(nx, ny) + sx, py + CWY(nx, ny) + sy,
34 px + CWX(nx, ny), py + CWY(nx, ny));
35 path->cubicTo(px + CWX(nx, ny) - sx, py + CWY(nx, ny) - sy,
36 px - nx + CWX(sx, sy), py - ny + CWY(sx, sy),
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_rast_priv.h 224 unsigned px, py, pixel_offset; local
236 py = y % TILE_SIZE;
237 pixel_offset = tile_pixel_offset(px, py, 0);
lp_rast_tri_tmp.h 118 int py = y + iy; local
130 TAG(do_block_4)(task, tri, plane, px, py, cx);
140 int py = y + iy; local
145 block_full_4(task, tri, px, py);
221 int py = y + iy; local
232 TAG(do_block_16)(task, tri, plane, px, py, cx);
242 int py = y + iy; local
247 block_full_16(task, tri, px, py);
309 int py = y + iy; local
317 + plane[j].dcdy * py) * 4
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/intel/
intel_pixel_bitmap.c 186 GLint px, py; local
245 for (py = 0; py < height; py += DY) {
247 int h = MIN2(DY, height - py);
265 -orig_dsty + y_flip(fb, dsty + py, h),
282 dsty + py,
  /external/skia/src/core/
SkStrokerPriv.cpp 26 SkScalar py = pivot.fY; local
32 path->cubicTo(px + nx + CWX(sx, sy), py + ny + CWY(sx, sy),
33 px + CWX(nx, ny) + sx, py + CWY(nx, ny) + sy,
34 px + CWX(nx, ny), py + CWY(nx, ny));
35 path->cubicTo(px + CWX(nx, ny) - sx, py + CWY(nx, ny) - sy,
36 px - nx + CWX(sx, sy), py - ny + CWY(sx, sy),
  /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
mb_motion_comp.cpp 149 MOT px[4], py[4]; local
196 dy = py[0] = py[1] = py[2] = py[3] = video->motY[imv];
228 py[0] = video->motY[imv];
229 py[1] = video->motY[imv+1];
230 py[2] = video->motY[imv+mvwidth];
231 py[3] = video->motY[imv+mvwidth+1];
232 xsum = py[0] + py[1] + py[2] + py[3]
    [all...]
  /packages/apps/Camera2/jni/
tinyplanet.cc 120 float py = (phi / PI_F) * input_height; local
124 py = wrap(py, input_height);
127 InterpolatePixel(input, px, py, output(x, y));
  /packages/apps/Gallery2/jni/filters/
tinyplanet.cc 119 float py = (phi / PI_F) * input_height; local
123 py = wrap(py, input_height);
126 InterpolatePixel(input, px, py, output(x, y));
  /external/chromium_org/third_party/mesa/src/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;
  /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;
  /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/openfst/src/include/fst/
shortest-path.h 221 const Pair &py = pairs_[y]; local
224 Weight dy = py.first == superfinal_ ? Weight::One() :
225 py.first < distance_.size() ? distance_[py.first] : Weight::Zero();
227 Weight wy = Times(dy, py.second);
231 if (px.first == superfinal_ && py.first != superfinal_) {
233 } else if (py.first == superfinal_ && px.first != superfinal_) {
  /external/qemu/
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_) {
  /frameworks/base/libs/hwui/
Matrix.cpp 436 float py = vertices[i + 1]; local
438 x = px * data[kScaleX] + py * data[kSkewX] + data[kTranslateX];
439 y = px * data[kSkewY] + py * data[kScaleY] + data[kTranslateY];
440 z = px * data[kPerspective0] + py * data[kPerspective1] + data[kPerspective2];
  /packages/inputmethods/PinyinIME/jni/android/
com_android_inputmethod_pinyin_PinyinDecoderService.cpp 131 const char *py = im_get_sps_str(&py_len); // py_len gets decoded length local
132 assert(NULL != py);
134 py_len = strlen(py);
142 retbuf[i] = py[i];
152 const char *py = im_get_sps_str(&py_len); // py_len gets decoded length local
153 assert(NULL != py);
155 py_len = strlen(py);
  /external/clang/test/SemaCXX/
overloaded-builtin-operators.cpp 245 int* __restrict py; local
246 py += size;

Completed in 686 milliseconds

1 2 3