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

1 2 3

  /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);
  /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...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
ConvertToDpFix.java 61 Pattern pattern = Pattern.compile("(\\d+)px"); //$NON-NLS-1$
66 if (value.endsWith("px")) {
71 int px = Integer.parseInt(numberString); local
72 int dp = px * 160 / dpi;
  /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...]

Completed in 1412 milliseconds

1 2 3