Searched defs:P1 (Results 1 - 25 of 44) sorted by relevance

12

/external/clang/test/Modules/Inputs/
H A Dredecl-merge-top.h9 @protocol P1; variable
H A Dredecl-merge-bottom.h14 @protocol P1; variable
H A Dredecl-merge-left.h13 @protocol P1; variable
H A Dredecl-merge-right.h12 @protocol P1
16 @protocol P1; variable
/external/libcxx/test/utilities/utility/pairs/pair.astuple/
H A Dtuple_element.pass.cpp21 typedef std::pair<int, short> P1; typedef
22 static_assert((std::is_same<std::tuple_element<0, P1>::type, int>::value), "");
23 static_assert((std::is_same<std::tuple_element<1, P1>::type, short>::value), "");
26 typedef std::pair<int*, char> P1; typedef
27 static_assert((std::is_same<std::tuple_element<0, P1>::type, int*>::value), "");
28 static_assert((std::is_same<std::tuple_element<1, P1>::type, char>::value), "");
H A Dtuple_size.pass.cpp21 typedef std::pair<int, short> P1; typedef
22 static_assert((std::tuple_size<P1>::value == 2), "");
/external/libcxx/test/utilities/utility/pairs/pairs.pair/
H A Dswap.pass.cpp22 typedef std::pair<int, short> P1; typedef
23 P1 p1(3, 4);
24 P1 p2(5, 6);
H A Dassign_const_pair_U_V.pass.cpp22 typedef std::pair<int, short> P1; typedef
24 P1 p1(3, 4);
H A Dconst_pair_U_V.pass.cpp22 typedef std::pair<int, short> P1; typedef
24 P1 p1(3, 4);
32 typedef std::pair<int, short> P1; typedef
34 constexpr P1 p1(3, 4);
H A Dcopy_ctor.pass.cpp22 typedef std::pair<int, short> P1; typedef
23 P1 p1(3, 4);
24 P1 p2 = p1;
33 typedef std::pair<int, short> P1; typedef
34 constexpr P1 p1(3, 4);
35 constexpr P1 p2 = p1;
H A Dpiecewise.pass.cpp26 typedef std::pair<int, int*> P1; typedef
28 typedef std::pair<P1, P2> P3;
31 assert(p3.first == P1(3, nullptr));
H A Dassign_rv_pair_U_V.pass.cpp34 typedef std::pair<std::unique_ptr<Derived>, short> P1; typedef
36 P1 p1(std::unique_ptr<Derived>(), 4);
H A Drv_pair_U_V.pass.cpp34 typedef std::pair<std::unique_ptr<Derived>, short> P1; typedef
36 P1 p1(std::unique_ptr<Derived>(), 4);
/external/libcxx/test/utilities/utility/pairs/pairs.spec/
H A Dnon_member_swap.pass.cpp22 typedef std::pair<int, short> P1; typedef
23 P1 p1(3, 4);
24 P1 p2(5, 6);
H A Dmake_pair.pass.cpp21 typedef std::pair<int, short> P1; typedef
22 P1 p1 = std::make_pair(3, 4);
29 typedef std::pair<std::unique_ptr<int>, short> P1; typedef
30 P1 p1 = std::make_pair(std::unique_ptr<int>(new int(3)), 4);
35 typedef std::pair<std::unique_ptr<int>, short> P1; typedef
36 P1 p1 = std::make_pair(nullptr, 4);
44 typedef std::pair<int, short> P1; typedef
45 constexpr P1 p1 = std::make_pair(3, 4);
/external/clang/test/CodeGenCXX/
H A DPR5863-unreachable-block.cpp6 void P1() { function
/external/chromium_org/v8/test/webkit/
H A Ddfg-patchable-get-by-id-after-watchpoint.js42 function P1() { function
45 P1.prototype.g = 42;
52 var p1 = new P1();
65 P1.prototype.h = 58; // Reset the GetById.
43 P1.prototype.g = 42; class
/external/linux-tools-perf/perf-3.12.0/arch/blackfin/lib/
H A Dmemcpy.S36 P1 = R1 ; /* src*/ define
64 R3 = B[P1++] (X);
74 I1 = P1;
91 P1 = I1; /* in case there's something left, */ define
99 R1 = B[P1++] (X);
114 P1 = P1 + P2; define
115 P1 += -1;
118 R1 = B[P1--] (X);
H A Dmemset.S39 P1 = P2 >> 2; /* count = n/4 */ define
45 LSETUP (.Lquad_loop , .Lquad_loop) LC0=P1;
75 P1 = R0; define
81 P2 -= P1; /* reduce count */
/external/chromium_org/tools/telemetry/telemetry/core/platform/power_monitor/
H A Dpower_monitor_controller_unittest.py14 class P1(power_monitor.PowerMonitor): class in function:PowerMonitorControllerTest.testComposition
32 [P1(), P2(1), P2(2)])
/external/clang/test/Analysis/
H A Dregion-store.cpp7 class P1 { class
22 class Derived: public P1, public P2 {
/external/libgsm/inc/
H A Dproto.h26 #undef P1 macro
40 # define P1(x, a) (a) macro
54 # define P1(x, a) x a; macro
H A Dunproto.h14 #undef P1 macro
/external/fdlibm/
H A De_exp.c34 * R(z) ~ 2.0 + P1*z + P2*z**2 + P3*z**3 + P4*z**4 + P5*z**5
35 * (where z=r*r, and the values of P1 to P5 are listed below)
38 * | 2.0+P1*z+...+P5*z - R(z) | <= 2
49 * R1(r) = r - (P1*r + P2*r + ... + P5*r ).
94 P1 = 1.66666666666666019037e-01, /* 0x3FC55555, 0x5555553E */ variable
146 c = x - t*(P1+t*(P2+t*(P3+t*(P4+t*P5))));
/external/llvm/lib/Support/
H A DScaledNumber.cpp30 uint64_t P1 = UL * UR, P2 = UL * LR, P3 = LL * UR, P4 = LL * LR; local
33 uint64_t Upper = P1, Lower = P4;

Completed in 372 milliseconds

12