Searched defs:P2 (Results 1 - 25 of 38) sorted by relevance

12

/external/clang/test/Modules/Inputs/
H A Dredecl-merge-top.h11 @protocol P2; variable
12 @protocol P2; variable
H A Dredecl-merge-right.h18 @protocol P2; variable
20 @protocol P2; variable
22 @protocol P2; variable
/external/libcxx/test/utilities/utility/pairs/pairs.pair/
H A Dassign_const_pair_U_V.pass.cpp23 typedef std::pair<double, long> P2; typedef
25 P2 p2;
H A Dconst_pair_U_V.pass.cpp23 typedef std::pair<double, long> P2; typedef
25 P2 p2 = p1;
33 typedef std::pair<double, long> P2; typedef
35 constexpr P2 p2 = p1;
H A Dpiecewise.pass.cpp27 typedef std::pair<int*, int> P2; typedef
28 typedef std::pair<P1, P2> P3;
32 assert(p3.second == P2(nullptr, 4));
H A Dassign_rv_pair_U_V.pass.cpp35 typedef std::pair<std::unique_ptr<Base>, long> P2; typedef
37 P2 p2;
H A Drv_pair_U_V.pass.cpp35 typedef std::pair<std::unique_ptr<Base>, long> P2; typedef
37 P2 p2 = std::move(p1);
/external/chromium_org/v8/test/webkit/
H A Ddfg-patchable-get-by-id-after-watchpoint.js47 function P2() { function
50 P2.prototype.g = 24;
53 var p2 = new P2();
66 P2.prototype.h = 59; // Not necessary, but what the heck - this resets the GetById even more.
48 P2.prototype.g = 24; class
/external/linux-tools-perf/perf-3.12.0/arch/blackfin/lib/
H A Dmemcpy.S37 P2 = R2 ; /* length */ define
57 P2 = P2 >> 2; define
58 CC = P2 <= 2;
61 P2 = R2; define
62 LSETUP(.Lthree_start, .Lthree_end) LC0=P2;
72 P2 += -1; /* because we unroll one iteration */
73 LSETUP(.Lword_loops, .Lword_loope) LC0=P2;
94 .Lbytes_left: P2 = R3;
97 LSETUP (.Lbyte_start, .Lbyte_end) LC0=P2;
[all...]
H A Dmemset.S28 P2 = R2 ; /* P2 = count */ define
39 P1 = P2 >> 2; /* count = n/4 */
43 P2 = R3; define
49 CC = P0 == P2;
57 P2 = R2; define
60 CC = P2 == 0; /* Check zero count */
64 LSETUP (.Lbyte_loop , .Lbyte_loop) LC0=P2;
81 P2 -= P1; /* reduce count */
/external/chromium_org/tools/telemetry/telemetry/core/platform/power_monitor/
H A Dpower_monitor_controller_unittest.py20 class P2(power_monitor.PowerMonitor): class in function:PowerMonitorControllerTest.testComposition
22 super(P2, self).__init__()
32 [P1(), P2(1), P2(2)])
/external/clang/test/Analysis/
H A Dregion-store.cpp15 class P2 { class
22 class Derived: public P1, public P2 {
/external/libgsm/inc/
H A Dproto.h27 #undef P2 macro
41 # define P2(x, a, b) (a, b) macro
55 # define P2(x, a, b) x a; b; macro
H A Dunproto.h15 #undef P2 macro
/external/clang/test/Sema/
H A Dwarn-cast-align.c16 const volatile void *P2 = P; local
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...]
H A Dconst-eval.c90 float _Complex P2 = 3.3f + P; local
/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
49 * R1(r) = r - (P1*r + P2*r + ... + P5*r ).
95 P2 = -2.77777777770155933842e-03, /* 0xBF66C16C, 0x16BEBD93 */ variable
146 c = x - t*(P1+t*(P2+t*(P3+t*(P4+t*P5))));
H A De_pow.c85 P2 = -2.77777777770155933842e-03, /* 0xBF66C16C, 0x16BEBD93 */ variable
301 t1 = z - t*(P1+t*(P2+t*(P3+t*(P4+t*P5))));
/external/chromium_org/third_party/skia/experimental/Intersection/
H A DLineUtilities.cpp55 // Input: three points P0, P1, and P2
56 // Return: >0 for P2 left of the line through P0 and P1
57 // =0 for P2 on the line
58 // <0 for P2 right of the line
60 // return (float) ((P1.x - P0.x)*(P2.y - P0.y) - (P2.x - P0.x)*(P1.y - P0.y));
63 _Vector P2 = pt - line[0]; local
64 return P0.cross(P2);
/external/llvm/lib/Support/
H A DScaledNumber.cpp30 uint64_t P1 = UL * UR, P2 = UL * LR, P3 = LL * UR, P4 = LL * LR; local
39 addWithCarry(P2);
/external/llvm/unittests/Analysis/
H A DScalarEvolutionTest.cpp62 const SCEV *P2 = SE.getAddExpr(S2, S2); local
66 const SCEVMulExpr *M2 = cast<SCEVMulExpr>(P2);
/external/skia/experimental/Intersection/
H A DLineUtilities.cpp55 // Input: three points P0, P1, and P2
56 // Return: >0 for P2 left of the line through P0 and P1
57 // =0 for P2 on the line
58 // <0 for P2 right of the line
60 // return (float) ((P1.x - P0.x)*(P2.y - P0.y) - (P2.x - P0.x)*(P1.y - P0.y));
63 _Vector P2 = pt - line[0]; local
64 return P0.cross(P2);
/external/llvm/unittests/IR/
H A DConstantsTest.cpp181 Constant *P2 = ConstantExpr::getUIToFP(P0, DoubleTy); local
230 CHECK(ConstantExpr::getFPTrunc(P2, FloatTy), "fptrunc double " P2STR
/external/qemu/distrib/sdl-1.2.15/src/video/
H A De_pow.h81 P2 = -2.77777777770155933842e-03, /* 0xBF66C16C, 0x16BEBD93 */ variable
294 t1 = z - t*(P1+t*(P2+t*(P3+t*(P4+t*P5))));
/external/llvm/include/llvm/ADT/
H A DSTLExtras.h301 inline int array_pod_sort_comparator(const void *P1, const void *P2) { argument
303 *reinterpret_cast<const T*>(P2)))
305 if (std::less<T>()(*reinterpret_cast<const T*>(P2),

Completed in 2372 milliseconds

12