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

1 2 3 4

  /external/valgrind/main/memcheck/tests/darwin/
scalar_nocancel.c 13 // uninitialised, but we know px[0] is 0x0
14 long* px = malloc(sizeof(long)); local
15 long x0 = px[0];
scalar.c 13 // uninitialised, but we know px[0] is 0x0
14 long* px = malloc(sizeof(long)); local
15 long x0 = px[0];
241 SY(__NR_getsockopt, x0, x0, x0, x0+1, x0+&px[1]); FAIL;
922 SY(__NR_sigaction, x0, x0+&px[1], x0+&px[1]); FAIL;
1172 SY(__NR_sigprocmask, x0, x0+&px[1], x0+&px[1]); SUCC;
1360 SY(__NR_rt_sigaction, x0, x0+&px[2], x0+&px[2], x0); FAIL
    [all...]
  /external/valgrind/main/memcheck/tests/x86-linux/
scalar_exit_group.c 5 // uninitialised, but we know px[0] is 0x0
6 long* px = malloc(sizeof(long)); local
7 long x0 = px[0];
scalar.c 29 // uninitialised, but we know px[0] is 0x0
30 long* px = malloc(sizeof(long)); local
31 long x0 = px[0];
331 SY(__NR_sigaction, x0, x0+&px[1], x0+&px[1]); FAIL;
584 SY(__NR_sigprocmask, x0, x0+&px[1], x0+&px[1]); SUCC;
776 SY(__NR_rt_sigaction, x0, x0+&px[2], x0+&px[2], x0); FAIL;
    [all...]
  /external/dropbear/libtommath/
bn_mp_and.c 22 int res, ix, px; local
29 px = b->used;
35 px = a->used;
39 for (ix = 0; ix < px; ix++) {
bn_mp_or.c 21 int res, ix, px; local
28 px = b->used;
34 px = a->used;
38 for (ix = 0; ix < px; ix++) {
bn_mp_xor.c 22 int res, ix, px; local
29 px = b->used;
35 px = a->used;
39 for (ix = 0; ix < px; ix++) {
  /external/doclava/res/assets/templates/
diff.cs 9 padding-left: 40px; field in class:label
13 padding-left: 80px;
33 width: 25px;
  /external/webkit/Source/WebCore/platform/graphics/qt/
IconQt.cpp 61 QPixmap px = m_icon.pixmap(rect.size()); local
63 if (p && !px.isNull())
64 p->drawPixmap(rect.x(), rect.y(), px);
  /external/clang/test/Parser/
cxx-ambig-paren-expr.cpp 5 int x, *px; local
10 (T())*px; // expected-error {{cast from 'int' to 'T ()'}}
  /frameworks/base/media/mca/filterpacks/native/imageproc/
contrast.c 76 float px = *(input_ptr++) / 255.0; local
77 px -= 0.5;
78 px *= contrast;
79 px += 0.5;
80 *(output_ptr++) = (char)(px > 1.0 ? 255.0 : (px < 0.0 ? 0.0 : px * 255.0));
  /external/apache-http/src/org/apache/http/impl/io/
AbstractMessageParser.java 175 } catch (ParseException px) {
176 throw new ProtocolException(px.getMessage(), px); local
  /frameworks/compile/libbcc/tests/data/src/
casts.c 13 int px = &x; local
14 // int z = * px; // An error, expected a pointer type
15 int y = * (int*) px;
20 int px = (int) malloc(120); local
21 * (int*) px = 8;
22 * (int*) (px + 4) = 9;
23 printf("Testing writing (int*): %d %d\n", * (int*) px, * (int*) (px + 4));
24 free((void*) px);
29 int px = &x local
39 int px = &x; local
59 int px = (int) malloc(120); local
67 int px = (int) malloc(120); local
    [all...]
  /external/icu4c/layout/
MarkToBasePosnSubtables.cpp 99 LEPoint px; local
100 fontInstance->getGlyphAdvance(otherMark, px); // get advance, in case it's non-zero
101 pixels.fX += px.fX; // and add that to the base glyph's advance
102 pixels.fY += px.fY;
  /external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/noise/filter/
PerturbFilter.java 73 int px = (int) (origSize * noisex * 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/skia/samplecode/
SampleOvalTest.cpp 61 SkScalar px = SkIntToScalar(x) + SK_ScalarHalf; local
65 SkScalar dist = SkPoint::Length(px - cx, py - cy);
  /frameworks/rs/driver/
rsdIntrinsicConvolve3x3.cpp 61 float4 px = convert_float4(py0[x1]) * coeff[0] + local
71 px = clamp(px, 0.f, 255.f);
72 uchar4 o = {(uchar)px.x, (uchar)px.y, (uchar)px.z, (uchar)px.w};
rsdIntrinsicConvolve5x5.cpp 62 float4 px = convert_float4(py0[x0]) * coeff[0] + local
92 px = clamp(px, 0.f, 255.f);
93 uchar4 o = {(uchar)px.x, (uchar)px.y, (uchar)px.z, (uchar)px.w};
  /frameworks/support/renderscript/v8/rs_support/driver/
rsdIntrinsicConvolve3x3.cpp 61 float4 px = convert_float4(py0[x1]) * coeff[0] + local
71 px = clamp(px, 0.f, 255.f);
72 uchar4 o = {(uchar)px.x, (uchar)px.y, (uchar)px.z, (uchar)px.w};
rsdIntrinsicConvolve5x5.cpp 62 float4 px = convert_float4(py0[x0]) * coeff[0] + local
92 px = clamp(px, 0.f, 255.f);
93 uchar4 o = {(uchar)px.x, (uchar)px.y, (uchar)px.z, (uchar)px.w};
  /external/icu4c/common/
rbbiscan.cpp 75 U_NAMESPACE_QUALIFIER RBBISetTableEl *px = (U_NAMESPACE_QUALIFIER 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 U_NAMESPACE_QUALIFIER RBBISymbolTableEntry *px = (U_NAMESPACE_QUALIFIER RBBISymbolTableEntry *)p; local
33 delete 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),
  /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...]
  /packages/apps/Gallery2/jni/filters/
tinyplanet.cc 117 float px = (theta / (2 * PI_F)) * input_width; local
121 px = wrap(px, input_width);
125 InterpolatePixel(input, px, py, output(x, y));

Completed in 788 milliseconds

1 2 3 4