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

1 2

  /external/clang/test/Modules/Inputs/
redecl-merge-top.h 11 @protocol P2;
12 @protocol P2;
redecl-merge-right.h 18 @protocol P2;
20 @protocol P2;
22 @protocol P2;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/utility/pairs/pairs.pair/
assign_const_pair_U_V.pass.cpp 23 typedef std::pair<double, long> P2;
25 P2 p2; local
26 p2 = p1;
27 assert(p2.first == 3);
28 assert(p2.second == 4);
const_pair_U_V.pass.cpp 23 typedef std::pair<double, long> P2;
25 P2 p2 = p1; local
26 assert(p2.first == 3);
27 assert(p2.second == 4);
piecewise.pass.cpp 27 typedef std::pair<int*, int> P2;
28 typedef std::pair<P1, P2> P3;
32 assert(p3.second == P2(nullptr, 4));
assign_rv_pair_U_V.pass.cpp 35 typedef std::pair<std::unique_ptr<Base>, long> P2;
37 P2 p2; local
38 p2 = std::move(p1);
39 assert(p2.first == nullptr);
40 assert(p2.second == 4);
rv_pair_U_V.pass.cpp 35 typedef std::pair<std::unique_ptr<Base>, long> P2;
37 P2 p2 = std::move(p1); local
38 assert(p2.first == nullptr);
39 assert(p2.second == 4);
  /external/chromium_org/v8/test/webkit/
dfg-patchable-get-by-id-after-watchpoint.js 47 function P2() {
50 P2.prototype.g = 24;
53 var p2 = new P2();
56 p2.f = 2;
59 var p = (i % 2) ? p1 : p2;
66 P2.prototype.h = 59; // Not necessary, but what the heck - this resets the GetById even more.
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p10/src_gcc/
omxVCM4P10_DequantTransformResidualFromPairAndAdd_s.S 34 P2: ADD r2, pc
126 .word armVCM4P10_VMatrixU16-(P2+8)
armVCM4P10_DecodeCoeffsToPair_s.S 155 P2: ADD r6, pc
281 .word (armVCM4P10_CAVLCTotalZeros2x2Tables - 4)-(P2+8)
283 .word (armVCM4P10_CAVLCTotalZeroTables - 4)-(P2+8)
  /external/clang/test/Analysis/
region-store.cpp 15 class P2 {
22 class Derived: public P1, public P2 {
  /external/libgsm/inc/
proto.h 27 #undef P2
41 # define P2(x, a, b) (a, b)
55 # define P2(x, a, b) x a; b;
unproto.h 15 #undef P2
  /bionic/libm/upstream-freebsd/lib/msun/src/
s_cbrt.c 32 P2 = 1.621429720105354466140, /* 0x3ff9f160, 0x4a49d6c2 */
89 t=t*((P0+r*(P1+r*P2))+((r*r)*r)*(P3+r*P4));
s_exp2f.c 41 P2 = 0x1.ebfbe0p-3f,
133 tv = tv + u * (P1 + z * P2) + u * (z * z) * (P3 + z * P4);
e_exp.c 37 * R(z) ~ 2.0 + P1*z + P2*z**2 + P3*z**3 + P4*z**4 + P5*z**5
52 * R1(r) = r - (P1*r + P2*r + ... + P5*r ).
95 P2 = -2.77777777770155933842e-03, /* 0xBF66C16C, 0x16BEBD93 */
151 c = x - t*(P1+t*(P2+t*(P3+t*(P4+t*P5))));
e_expf.c 39 P2 = -2.7667332906e-3; /* -0xb55215.0p-32 */
89 c = x - t*(P1+t*P2);
s_exp2.c 41 P2 = 0x1.ebfbdff82c575p-3,
383 r = t + t * z * (P1 + z * (P2 + z * (P3 + z * (P4 + z * P5))));
e_pow.c 81 P2 = -2.77777777770155933842e-03, /* 0xBF66C16C, 0x16BEBD93 */
298 t1 = z - t*(P1+t*(P2+t*(P3+t*(P4+t*P5))));
e_powf.c 40 P2 = -2.7777778450e-03, /* 0xbb360b61 */
241 t1 = z - t*(P1+t*(P2+t*(P3+t*(P4+t*P5))));
  /external/clang/test/Sema/
warn-cast-align.c 16 const volatile void *P2 = P;
17 char *d = (char*) P2;
18 short *e = (short*) P2;
19 int *f = (int*) P2;
21 const char *g = (const char*) P2;
22 const short *h = (const short*) P2;
23 const int *i = (const int*) P2;
25 const volatile char *j = (const volatile char*) P2;
26 const volatile short *k = (const volatile short*) P2;
27 const volatile int *l = (const volatile int*) P2;
    [all...]
const-eval.c 90 float _Complex P2 = 3.3f + P;
  /external/fdlibm/
e_exp.c 34 * R(z) ~ 2.0 + P1*z + P2*z**2 + P3*z**3 + P4*z**4 + P5*z**5
49 * R1(r) = r - (P1*r + P2*r + ... + P5*r ).
95 P2 = -2.77777777770155933842e-03, /* 0xBF66C16C, 0x16BEBD93 */
146 c = x - t*(P1+t*(P2+t*(P3+t*(P4+t*P5))));
  /external/llvm/unittests/Analysis/
ScalarEvolutionTest.cpp 62 const SCEV *P2 = SE.getAddExpr(S2, S2);
66 const SCEVMulExpr *M2 = cast<SCEVMulExpr>(P2);
  /bionic/libm/upstream-freebsd/lib/msun/bsdsrc/
b_tgamma.c 99 #define P2 5.53859446429917461063308081748e-03
255 p = P0 + z*(P1 + z*(P2 + z*(P3 + z*P4)));

Completed in 510 milliseconds

1 2