HomeSort by relevance Sort by last modified time
    Searched refs:p2 (Results 326 - 350 of 1257) sorted by null

<<11121314151617181920>>

  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.p2.metadata.generator_1.0.200.v20100503a.jar 
  /external/openssl/crypto/ec/
ec_pmeth.c 204 static int pkey_ec_ctrl(EVP_PKEY_CTX *ctx, int type, int p1, void *p2)
223 if (EVP_MD_type((const EVP_MD *)p2) != NID_sha1 &&
224 EVP_MD_type((const EVP_MD *)p2) != NID_ecdsa_with_SHA1 &&
225 EVP_MD_type((const EVP_MD *)p2) != NID_sha224 &&
226 EVP_MD_type((const EVP_MD *)p2) != NID_sha256 &&
227 EVP_MD_type((const EVP_MD *)p2) != NID_sha384 &&
228 EVP_MD_type((const EVP_MD *)p2) != NID_sha512)
233 dctx->md = p2;
  /external/qemu/audio/
dsound_template.h 45 LPVOID p2,
52 hr = glue (IFACE, _Unlock) (buf, p1, blen1, p2, blen2);
75 LPVOID p1 = NULL, p2 = NULL; local
91 &p2,
118 if ((p1 && (blen1 & info->align)) || (p2 && (blen2 & info->align))) {
121 glue (dsound_unlock_, TYPE) (buf, p1, p2, blen1, blen2);
130 if (!p2 && blen2) {
131 dolog ("warning: !p2 && blen2=%ld\n", blen2);
136 *p2p = p2;
  /external/valgrind/main/memcheck/tests/
leak-cases.c 9 // p2 ---> AAA ---> BBB DR / R IR / R
59 Node* p2; variable
72 p2 = mk(mk(NULL)); // Case 2: 16/1 still reachable
  /frameworks/av/media/libstagefright/codecs/amrwbenc/src/
c2t64fx.c 59 Word16 *p0, *p1, *p2, *psign; local
99 p2 = dn2;
104 *p2++ = s >> 7;
106 *p2++ = s >> 7;
108 *p2++ = s >> 7;
110 *p2++ = s >> 7;
225 p2 = rrixiy;
240 alp2 = add1(alp1, add1(*p1++, *p2++));
  /frameworks/base/media/mca/filterfw/native/core/
geometry.h 56 Quad(const Point& p0, const Point& p1, const Point& p2, const Point& p3)
60 points_[2] = p2;
  /frameworks/base/media/mca/filterpacks/native/base/
geometry.h 56 Quad(const Point& p0, const Point& p1, const Point& p2, const Point& p3)
60 points_[2] = p2;
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/aux_/preprocessor/
def_params_tail.hpp 55 # define BOOST_MPL_PP_DEF_PARAMS_TAIL_2(i,p,v) BOOST_MPL_PP_FILTER_PARAMS_##i(p##3 v(),p##4 v(),p##5 v(),p##6 v(),p##7 v(),p##8 v(),p##9 v(),p1,p2)
56 # define BOOST_MPL_PP_DEF_PARAMS_TAIL_3(i,p,v) BOOST_MPL_PP_FILTER_PARAMS_##i(p##4 v(),p##5 v(),p##6 v(),p##7 v(),p##8 v(),p##9 v(),p1,p2,p3)
57 # define BOOST_MPL_PP_DEF_PARAMS_TAIL_4(i,p,v) BOOST_MPL_PP_FILTER_PARAMS_##i(p##5 v(),p##6 v(),p##7 v(),p##8 v(),p##9 v(),p1,p2,p3,p4)
58 # define BOOST_MPL_PP_DEF_PARAMS_TAIL_5(i,p,v) BOOST_MPL_PP_FILTER_PARAMS_##i(p##6 v(),p##7 v(),p##8 v(),p##9 v(),p1,p2,p3,p4,p5)
59 # define BOOST_MPL_PP_DEF_PARAMS_TAIL_6(i,p,v) BOOST_MPL_PP_FILTER_PARAMS_##i(p##7 v(),p##8 v(),p##9 v(),p1,p2,p3,p4,p5,p6)
60 # define BOOST_MPL_PP_DEF_PARAMS_TAIL_7(i,p,v) BOOST_MPL_PP_FILTER_PARAMS_##i(p##8 v(),p##9 v(),p1,p2,p3,p4,p5,p6,p7)
61 # define BOOST_MPL_PP_DEF_PARAMS_TAIL_8(i,p,v) BOOST_MPL_PP_FILTER_PARAMS_##i(p##9 v(),p1,p2,p3,p4,p5,p6,p7,p8)
62 # define BOOST_MPL_PP_DEF_PARAMS_TAIL_9(i,p,v) BOOST_MPL_PP_FILTER_PARAMS_##i(p1,p2,p3,p4,p5,p6,p7,p8,p9)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/compiler/
future.py 59 p2 = BadFutureParser()
61 walk(node, p2)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/compiler/
future.py 59 p2 = BadFutureParser()
61 walk(node, p2)
  /external/eigen/unsupported/test/mpreal/
mpreal.cpp 333 mp_prec_t p1, p2, p3; local
336 p2 = v2.get_prec();
339 a.set_prec(p3>p2?(p3>p1?p3:p1):(p2>p1?p2:p1));
348 mp_prec_t p1, p2, p3; local
351 p2 = v2.get_prec();
354 a.set_prec(p3>p2?(p3>p1?p3:p1):(p2>p1?p2:p1));
363 mp_prec_t p1, p2; local
    [all...]
  /external/chromium_org/third_party/tcmalloc/chromium/src/tests/
memalign_unittest.cc 155 void* p2 = memalign(1<<19, 1<<19); local
158 CheckAlignment(p2, 1<<19);
161 Fill(p2, 1<<19, 'b');
164 CHECK(Valid(p2, 1<<19, 'b'));
167 free(p2);
  /external/chromium_org/third_party/tcmalloc/vendor/src/tests/
memalign_unittest.cc 155 void* p2 = memalign(1<<19, 1<<19); local
158 CheckAlignment(p2, 1<<19);
161 Fill(p2, 1<<19, 'b');
164 CHECK(Valid(p2, 1<<19, 'b'));
167 free(p2);
  /external/chromium_org/ui/gfx/
rect.cc 102 Rect BoundingRect(const Point& p1, const Point& p2) {
103 int rx = std::min(p1.x(), p2.x());
104 int ry = std::min(p1.y(), p2.y());
105 int rr = std::max(p1.x(), p2.x());
106 int rb = std::max(p1.y(), p2.y());
  /frameworks/base/core/jni/android/opengl/
poly_clip.cpp 112 Poly p2, *p, *q, *r; local
138 * at each step toggling between polygons p1 and p2
141 q = &p2;
149 /* if result ended up in p2 then copy it to p1 */
150 if (p==&p2)
151 memcpy(p1, &p2, sizeof(Poly)-(POLY_NMAX-p2.n)*sizeof(Poly_vert));
  /frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/
StraightenFilter.java 134 Point p2 = new Point(-cosTheta * mWidth - sinTheta * mHeight, local
148 p2.set(scale * p2.x / mWidth + 0.5f, scale * p2.y / mHeight + 0.5f);
151 Quad quad = new Quad(p0, p1, p2, p3);
  /external/chromium_org/third_party/WebKit/Source/platform/geometry/
FloatRect.cpp 208 void FloatRect::fitToPoints(const FloatPoint& p0, const FloatPoint& p1, const FloatPoint& p2)
210 float left = min3(p0.x(), p1.x(), p2.x());
211 float top = min3(p0.y(), p1.y(), p2.y());
212 float right = max3(p0.x(), p1.x(), p2.x());
213 float bottom = max3(p0.y(), p1.y(), p2.y());
218 void FloatRect::fitToPoints(const FloatPoint& p0, const FloatPoint& p1, const FloatPoint& p2, const FloatPoint& p3)
220 float left = min4(p0.x(), p1.x(), p2.x(), p3.x());
221 float top = min4(p0.y(), p1.y(), p2.y(), p3.y());
222 float right = max4(p0.x(), p1.x(), p2.x(), p3.x());
223 float bottom = max4(p0.y(), p1.y(), p2.y(), p3.y())
    [all...]
  /external/chromium_org/remoting/base/
dispatch_win.h 214 template <typename P1, typename P2>
219 const P2& p2,
239 hr = disp_args[2 - 2].Wrap(p2);
261 disp_args[2 - 2].Unwrap(p2);
271 template <typename P1, typename P2, typename P3>
276 const P2& p2,
297 hr = disp_args[3 - 2].Wrap(p2);
322 disp_args[3 - 2].Unwrap(p2);
    [all...]
  /external/chromium_org/v8/src/
hydrogen.h     [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
PackageTest.java 87 Package p2 = getTestPackage("hyts_no_entry.jar", "p.C"); local
90 "MF Implementation-Title", p2.getImplementationTitle());
93 "MF Implementation-Vendor", p2.getImplementationVendor());
96 "5.3.b1", p2.getImplementationVersion());
99 "MF Specification-Title", p2.getSpecificationTitle());
102 "MF Specification-Vendor", p2.getSpecificationVendor());
105 "1.2.3", p2.getSpecificationVersion());
  /external/chromium_org/third_party/openssl/openssl/crypto/perlasm/
cbc.pl 28 local($name,$enc_func,$dec_func,$swap,$iv_off,$enc_off,$p1,$p2,$p3)=@_;
34 # p1,p2,p3 are the offsets for parameters to be passed to the
51 $data_off+=4 if ($p2 > 0);
82 if ($p2 > 0)
84 &comment("get and push parameter $p2");
85 if ($enc_off != $p2)
86 { &mov("eax", &wparam($p2)); &push("eax"); }
314 $total+=4 if ($p2 > 0);
  /external/chromium_org/third_party/sqlite/src/ext/fts2/
fts2_tokenizer.c 297 const sqlite3_tokenizer_module *p2; local
302 rc = queryFts2Tokenizer(db, "simple", &p2);
304 assert( p1==p2 );
305 rc = queryFts2Tokenizer(db, "nosuchtokenizer", &p2);
307 assert( p2==0 );
313 rc = queryFts2Tokenizer(db, "nosuchtokenizer", &p2);
315 assert( p2==p1 );
  /external/openssl/crypto/perlasm/
cbc.pl 28 local($name,$enc_func,$dec_func,$swap,$iv_off,$enc_off,$p1,$p2,$p3)=@_;
34 # p1,p2,p3 are the offsets for parameters to be passed to the
51 $data_off+=4 if ($p2 > 0);
82 if ($p2 > 0)
84 &comment("get and push parameter $p2");
85 if ($enc_off != $p2)
86 { &mov("eax", &wparam($p2)); &push("eax"); }
314 $total+=4 if ($p2 > 0);
  /external/pixman/pixman/
pixman-linear-gradient.c 68 dx = linear->p2.x - linear->p1.x;
69 dy = linear->p2.y - linear->p1.y;
132 dx = linear->p2.x - linear->p1.x;
133 dy = linear->p2.y - linear->p1.y;
260 const pixman_point_fixed_t * p2,
281 linear->p2 = *p2;
  /external/clang/test/Analysis/
new.cpp 130 int *p2 = new int; local
131 delete p2;
132 delete p2; // no-warning

Completed in 7417 milliseconds

<<11121314151617181920>>