HomeSort by relevance Sort by last modified time
    Searched defs:px (Results 1 - 25 of 58) 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 27 // uninitialised, but we know px[0] is 0x0
28 long* px = malloc(sizeof(long)); local
29 long x0 = px[0];
329 SY(__NR_sigaction, x0, x0+&px[1], x0+&px[1]); FAIL;
582 SY(__NR_sigprocmask, x0, x0+&px[1], x0+&px[1]); SUCC;
774 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 ()'}}
  /system/media/mca/filterpacks/imageproc/native/
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/skia/samplecode/
SampleOvalTest.cpp 54 SkScalar px = SkIntToScalar(x) + SK_ScalarHalf; local
58 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 33 SkScalar px = pivot.fX; local
40 path->cubicTo(px + nx + CWX(sx, sy), py + ny + CWY(sx, sy),
41 px + CWX(nx, ny) + sx, py + CWY(nx, ny) + sy,
42 px + CWX(nx, ny), py + CWY(nx, ny));
43 path->cubicTo(px + CWX(nx, ny) - sx, py + CWY(nx, ny) - sy,
44 px - nx + CWX(sx, sy), py - ny + CWY(sx, sy),
  /frameworks/base/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...]
  /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/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/skia/src/effects/
SkBlurMask.cpp 112 int px = SkClampPos(prev_x); local
115 uint32_t tmp = sum[px+py] + sum[nx+ny] - sum[nx+py] - sum[px+ny];
164 int px = SkClampPos(prev_x); local
170 uint32_t outer_sum = sum[px+py] + sum[nx+ny] - sum[nx+py] - sum[px+ny];
  /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 350 float px = vertices[i]; local
353 x = px * data[kScaleX] + py * data[kSkewX] + data[kTranslateX];
354 y = px * data[kSkewY] + py * data[kScaleY] + data[kTranslateY];
355 z = px * data[kPerspective0] + py * data[kPerspective1] + data[kPerspective2];

Completed in 1277 milliseconds

1 2 3