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

12 3 4 5

  /external/chromium_org/third_party/opus/src/silk/float/
prefilter_FLP.c 106 const silk_float *px; local
112 px = x;
132 silk_warped_LPC_analysis_filter_FLP( P->sAR_shp, st_res, AR1_shp, px,
147 px += psEnc->sCmn.subfr_length;
  /external/chromium_org/third_party/skia/src/core/
SkStrokerPriv.cpp 25 SkScalar px = pivot.fX; 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/chromium_org/third_party/skia/src/pathops/
SkPathOpsTypes.cpp 164 unsigned int* px = (unsigned int*) &d; local
165 pt[1] = px[1] / 3 + B1;
  /external/icu4c/common/
rbbiscan.cpp 75 icu::RBBISetTableEl *px = (icu::RBBISetTableEl *)p; local
76 delete px->key;
77 // Note: px->val is owned by the linked list "fSetsListHead" in scanner.
79 uprv_free(px);
    [all...]
rbbistbl.cpp 32 icu::RBBISymbolTableEntry *px = (icu::RBBISymbolTableEntry *)p; local
33 delete px;
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_rast_priv.h 224 unsigned px, py, pixel_offset; local
235 px = x % TILE_SIZE;
237 pixel_offset = tile_pixel_offset(px, py, 0);
lp_rast_tri_tmp.h 117 int px = x + ix; local
130 TAG(do_block_4)(task, tri, plane, px, py, cx);
139 int px = x + ix; local
145 block_full_4(task, tri, px, py);
220 int px = x + ix; local
232 TAG(do_block_16)(task, tri, plane, px, py, cx);
241 int px = x + ix; local
247 block_full_16(task, tri, px, py);
308 int px = x + ix; local
316 - plane[j].dcdx * px
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/intel/
intel_pixel_bitmap.c 186 GLint px, py; local
246 for (px = 0; px < width; px += DX) {
248 int w = MIN2(DX, width - px);
264 -orig_dstx + (dstx + px),
281 dstx + px,
  /external/skia/src/core/
SkStrokerPriv.cpp 25 SkScalar px = pivot.fX; 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/skia/src/pathops/
SkPathOpsTypes.cpp 164 unsigned int* px = (unsigned int*) &d; local
165 pt[1] = px[1] / 3 + B1;
  /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
mb_motion_comp.cpp 149 MOT px[4], py[4]; local
195 dx = px[0] = px[1] = px[2] = px[3] = video->motX[imv];
221 px[0] = video->motX[imv];
222 px[1] = video->motX[imv+1];
223 px[2] = video->motX[imv+mvwidth];
224 px[3] = video->motX[imv+mvwidth+1];
225 xsum = px[0] + px[1] + px[2] + px[3]
    [all...]
  /frameworks/rs/cpu_ref/
rsCpuIntrinsicConvolve3x3.cpp 98 float4 px = convert_float4(py0[x1]) * coeff[0] + local
108 px = clamp(px, 0.f, 255.f);
109 uchar4 o = {(uchar)px.x, (uchar)px.y, (uchar)px.z, (uchar)px.w};
120 float2 px = convert_float2(py0[x1]) * coeff[0] + local
130 px = clamp(px, 0.f, 255.f)
141 float px = ((float)py0[x1]) * coeff[0] + local
    [all...]
rsCpuIntrinsicConvolve5x5.cpp 99 float4 px = convert_float4(py0[x0]) * coeff[0] + local
128 px = clamp(px, 0.f, 255.f);
129 *out = convert_uchar4(px);
142 float2 px = convert_float2(py0[x0]) * coeff[0] + local
171 px = clamp(px, 0.f, 255.f);
172 *out = convert_uchar2(px);
185 float px = (float)(py0[x0]) * coeff[0] + local
214 px = clamp(px, 0.f, 255.f)
228 float4 px = py0[x0] * coeff[0] + local
270 float2 px = py0[x0] * coeff[0] + local
312 float px = py0[x0] * coeff[0] + local
    [all...]
  /packages/apps/Camera2/jni/
tinyplanet.cc 119 float px = (theta / (2 * PI_F)) * input_width; local
123 px = wrap(px, input_width);
127 InterpolatePixel(input, px, py, output(x, y));
  /packages/apps/Gallery2/jni/filters/
tinyplanet.cc 118 float px = (theta / (2 * PI_F)) * input_width; local
122 px = wrap(px, input_width);
126 InterpolatePixel(input, px, py, output(x, y));
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
ConvertToDpFix.java 62 Pattern pattern = Pattern.compile("(\\d+)px"); //$NON-NLS-1$
72 int px = Integer.parseInt(numberString); local
73 int dp = px * 160 / dpi;
  /external/chromium_org/third_party/mesa/src/src/mesa/swrast/
s_aatriangle.c 51 const GLfloat px = v1[0] - v0[0]; local
61 const GLfloat b = pz * qx - px * qz;
62 const GLfloat c = px * qy - py * qx;
  /external/mesa3d/src/mesa/swrast/
s_aatriangle.c 51 const GLfloat px = v1[0] - v0[0]; local
61 const GLfloat b = pz * qx - px * qz;
62 const GLfloat c = px * qy - py * qx;
  /external/opencv/cv/src/
cvcornersubpix.cpp 219 double px = j - win.width; local
225 bb1 += gxx * px + gxy * py;
226 bb2 += gxy * px + gyy * py;
  /external/openfst/src/include/fst/
shortest-path.h 220 const Pair &px = pairs_[x]; local
222 Weight dx = px.first == superfinal_ ? Weight::One() :
223 px.first < distance_.size() ? distance_[px.first] : Weight::Zero();
226 Weight wx = Times(dx, px.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);
79 px = (width - COLS) / 2;
83 px = 0;
140 x = sminx + x - px;
  /external/speex/libspeex/
lsp.c 235 spx_word32_t *px; /* ptrs of respective P'(z) & Q'(z) */ local
253 px = P; /* initialise ptrs */
255 p = px;
259 *px++ = LPC_SCALING;
262 *px++ = SUB32(ADD32(EXTEND32(a[i]),EXTEND32(a[lpcrdr-i-1])), *p++);
265 px = P;
269 /*if (fabs(*px)>=32768)
270 speex_warning_int("px", *px);
273 *px = PSHR32(*px,2)
    [all...]
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
shortest-path.h 179 const Pair &px = pairs_[x]; local
181 Weight wx = Times(distance_[px.first], px.second);
186 if (px.first == superfinal_ && py.first != superfinal_) {
188 } else if (py.first == superfinal_ && px.first != superfinal_) {
  /frameworks/base/libs/hwui/
Matrix.cpp 435 float px = vertices[i]; 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];
  /hardware/libhardware/tests/camera2/
CameraStreamFixture.h 252 uint8_t *px = src + y * chromaStride; local
255 fputc(*px, yuvFile);
256 px += chromaStep;
259 bytes = fwrite(reinterpret_cast<const char*>(px),

Completed in 2162 milliseconds

12 3 4 5