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

1 2 3 4 5

  /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/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/clang/test/Parser/
cxx-ambig-paren-expr.cpp 5 int x, *px; local
10 (T())*px; // expected-error {{cast from 'int' to 'T ()'}}
  /external/mesa3d/src/gallium/state_trackers/vega/
path.h 46 VGfloat sx, sy, ox, oy, px, py; member in struct:path_for_each_data
  /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));
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/smart_ptr/
scoped_array.hpp 42 T * px; member in class:boost::scoped_array
56 explicit scoped_array( T * p = 0 ) : px( p ) // never throws
59 boost::sp_array_constructor_hook( px );
66 boost::sp_array_destructor_hook( px );
68 boost::checked_array_delete( px );
73 BOOST_ASSERT( p == 0 || p != px ); // catch self-reset errors
79 BOOST_ASSERT( px != 0 );
81 return px[i];
86 return px;
94 T * tmp = b.px;
    [all...]
scoped_ptr.hpp 43 T * px; member in class:boost::scoped_ptr
57 explicit scoped_ptr( T * p = 0 ): px( p ) // never throws
60 boost::sp_scalar_constructor_hook( px );
66 explicit scoped_ptr( std::auto_ptr<T> p ): px( p.release() ) // never throws
69 boost::sp_scalar_constructor_hook( px );
78 boost::sp_scalar_destructor_hook( px );
80 boost::checked_delete( px );
85 BOOST_ASSERT( p == 0 || p != px ); // catch self-reset errors
91 BOOST_ASSERT( px != 0 );
92 return *px;
    [all...]
shared_array.hpp 58 explicit shared_array(T * p = 0): px(p), pn(p, deleter())
68 template<class D> shared_array(T * p, D d): px(p), pn(p, d)
78 shared_array( shared_array const & r ): px( r.px ), pn( r.pn ) // never throws
94 BOOST_ASSERT(p == 0 || p != px);
105 BOOST_ASSERT(px != 0);
107 return px[i];
112 return px;
130 std::swap(px, other.px);
141 T * px; \/\/ contained pointer member in class:boost::shared_array
    [all...]
  /external/apache-http/src/org/apache/http/impl/io/
AbstractMessageParser.java 175 } catch (ParseException px) {
176 throw new ProtocolException(px.getMessage(), px); local
  /external/chromium_org/native_client_sdk/src/examples/demo/pi_generator/
pi_generator.cc 45 int px = x * ctx->width; local
47 uint32_t color = ctx->data[ctx->width * py + px];
61 ctx->data[ctx->width * py + px] = color | kOpaqueColorMask;
  /external/chromium_org/third_party/skia/src/pathops/
SkPathOpsTypes.cpp 75 unsigned int* px = (unsigned int*) &d; local
76 pt[1] = px[1] / 3 + B1;
  /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/src/pathops/
SkPathOpsTypes.cpp 75 unsigned int* px = (unsigned int*) &d; local
76 pt[1] = px[1] / 3 + B1;
  /external/chromium_org/third_party/icu/source/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/chromium_org/third_party/mesa/src/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...]

Completed in 643 milliseconds

1 2 3 4 5