Home
last modified time | relevance | path

Searched refs:P0 (Results 1 – 25 of 108) sorted by relevance

12345

/external/llvm/test/CodeGen/NVPTX/
Dcompare-int.ll12 ; CHECK: setp.eq.s64 %p[[P0:[0-9]+]], %rd{{[0-9]+}}, %rd{{[0-9]+}}
13 ; CHECK: selp.u64 %rd{{[0-9]+}}, 1, 0, %p[[P0]]
21 ; CHECK: setp.ne.s64 %p[[P0:[0-9]+]], %rd{{[0-9]+}}, %rd{{[0-9]+}}
22 ; CHECK: selp.u64 %rd{{[0-9]+}}, 1, 0, %p[[P0]]
30 ; CHECK: setp.gt.u64 %p[[P0:[0-9]+]], %rd{{[0-9]+}}, %rd{{[0-9]+}}
31 ; CHECK: selp.u64 %rd{{[0-9]+}}, 1, 0, %p[[P0]]
39 ; CHECK: setp.ge.u64 %p[[P0:[0-9]+]], %rd{{[0-9]+}}, %rd{{[0-9]+}}
40 ; CHECK: selp.u64 %rd{{[0-9]+}}, 1, 0, %p[[P0]]
48 ; CHECK: setp.lt.u64 %p[[P0:[0-9]+]], %rd{{[0-9]+}}, %rd{{[0-9]+}}
49 ; CHECK: selp.u64 %rd{{[0-9]+}}, 1, 0, %p[[P0]]
[all …]
/external/clang/test/SemaObjC/
Dconditional-expr-3.m3 @protocol P0 protocol
10 @interface A <P0>
17 void barP0(id<P0> x);
26 id<P0> l = a;
30 …id<P0> l = x; // expected-warning {{initializing 'id<P0>' with an expression of incompatible type …
46 bar(cond ? (id<P0, P1>) x : a);
50 bar(cond ? a : (id<P0, P1>) x);
53 void f8(int cond, id<P0,P1> x0, id<P0,P2> x1) {
54 …barP0(cond ? x0 : x1); // expected-warning {{incompatible operand types ('id<P0,P1>' and 'id<P0,P2…
57 void f9(int cond, id<P0,P1> x0, id<P0,P2> x1) {
[all …]
Dconditional-expr.m47 @protocol P0 protocol
59 @interface A <P0>
74 void f0(id<P0> x) {
78 void f1(int cond, id<P0> x, id<P0> y) {
82 void f2(int cond, id<P0> x, A *y) {
86 void f3(int cond, id<P0> x, B *y) {
94 void f5(int cond, id<P0> x, C *y) {
95 …(cond ? x : y).intProp = 1; // expected-warning {{incompatible operand types ('id<P0>' and 'C *')}…
102 id f7(int a, id<P0> x, A* p) {
106 int f8(int a, A<P0> *x, A *y) {
[all …]
Dprotocol-implementation-inherited.m4 @protocol P0 protocol
8 @interface A <P0>
13 @interface B0 : A <P0>
22 @protocol P1 <P0>
/external/clang/test/SemaObjCXX/
Dconditional-expr.mm3 @protocol P0 protocol
10 @interface A <P0>
17 void barP0(id<P0> x);
26 id<P0> l = a;
30 …id<P0> l = x; // expected-error {{cannot initialize a variable of type 'id<P0>' with an lvalue of …
46 bar(cond ? (id<P0, P1>) x : a);
50 bar(cond ? a : (id<P0, P1>) x);
53 void f8(int cond, id<P0,P1> x0, id<P0,P2> x1) {
54 …barP0(cond ? x0 : x1); // expected-warning {{incompatible operand types ('id<P0,P1>' and 'id<P0,P2…
57 void f9(int cond, id<P0,P1> x0, id<P0,P2> x1) {
[all …]
Doverload.mm15 @protocol P0 protocol
21 @interface A <P0>
78 int& qualid(id<P0>);
87 id<P0> p1 = 0;
143 void f2(id<P0>);
/external/llvm/unittests/IR/
DConstantsTest.cpp182 Constant *P0 = ConstantExpr::getPtrToInt(Global, Int32Ty); in TEST() local
183 Constant *P1 = ConstantExpr::getUIToFP(P0, FloatTy); in TEST()
184 Constant *P2 = ConstantExpr::getUIToFP(P0, DoubleTy); in TEST()
185 Constant *P3 = ConstantExpr::getTrunc(P0, Int1Ty); in TEST()
207 CHECK(ConstantExpr::getNeg(P0), "sub i32 0, " P0STR); in TEST()
209 CHECK(ConstantExpr::getNot(P0), "xor i32 " P0STR ", -1"); in TEST()
210 CHECK(ConstantExpr::getAdd(P0, P0), "add i32 " P0STR ", " P0STR); in TEST()
211 CHECK(ConstantExpr::getAdd(P0, P0, false, true), "add nsw i32 " P0STR ", " in TEST()
213 CHECK(ConstantExpr::getAdd(P0, P0, true, true), "add nuw nsw i32 " P0STR ", " in TEST()
216 CHECK(ConstantExpr::getSub(P0, P0), "sub i32 " P0STR ", " P0STR); in TEST()
[all …]
/external/v8/test/cctest/compiler/
Dcodegen-tester.h121 template <typename P0>
122 ReturnType Call(P0 p0) { in Call()
124 CSignature::VerifyParams<P0>(test_graph_signature_); in Call()
130 template <typename P0, typename P1>
131 ReturnType Call(P0 p0, P1 p1) { in Call()
133 CSignature::VerifyParams<P0, P1>(test_graph_signature_); in Call()
140 template <typename P0, typename P1, typename P2>
141 ReturnType Call(P0 p0, P1 p1, P2 p2) { in Call()
143 CSignature::VerifyParams<P0, P1, P2>(test_graph_signature_); in Call()
150 template <typename P0, typename P1, typename P2, typename P3>
[all …]
/external/llvm/include/llvm/ADT/
DVariadicFunction.h154 ResultT operator()(Param0T P0) const { in operator()
155 return Func(P0, None); in operator()
159 ResultT operator()(Param0T P0, LLVM_COMMA_JOIN ## N(const ArgT &A)) const { \
161 return Func(P0, makeArrayRef(Args)); \
201 ResultT operator()(Param0T P0, Param1T P1) const { in operator()
202 return Func(P0, P1, None); in operator()
206 ResultT operator()(Param0T P0, Param1T P1, \
209 return Func(P0, P1, makeArrayRef(Args)); \
250 ResultT operator()(Param0T P0, Param1T P1, Param2T P2) const { in operator()
251 return Func(P0, P1, P2, None); in operator()
[all …]
/external/clang/test/CodeGenObjC/
Dprotocols.m10 @protocol P0; protocol
37 Protocol *P0 = @protocol(P0);
43 Pbool([P0 conformsTo: P1]);
44 Pbool([P1 conformsTo: P0]);
Dforward-protocol-metadata-symbols.m6 @protocol P0; protocol
8 @interface A : NSObject <P0>
17 Protocol *P0 = @protocol(P0);
D2008-08-25-incompatible-cond-expr.m3 @protocol P0 protocol
5 @interface A <P0>
8 id f0(int a, id<P0> x, A* p) {
Ddebug-info-crash.m16 @protocol P0 @end protocol
20 - (I0<P0> *) im0 {
Dsynthesize_ivar.m33 @protocol P0 @end protocol
35 I0<P0> *iv0;
/external/llvm/test/Transforms/SLPVectorizer/X86/
Dextract.ll15 %P0 = getelementptr inbounds double, double* %ptr, i64 0
19 store double %A0, double* %P0, align 4
33 %P0 = getelementptr inbounds double, double* %ptr, i64 1 ; <--- incorrect order
37 store double %A0, double* %P0, align 4
51 %P0 = getelementptr inbounds double, double* %ptr, i64 0
55 store double %A0, double* %P0, align 4
/external/webp/src/dsp/
Dlossless_enc_mips32.c256 #define ADD_TO_OUT(A, B, C, D, E, P0, P1, P2) \ argument
257 "ulw %[temp0], " #A "(%[" #P0 "]) \n\t" \
258 "ulw %[temp1], " #B "(%[" #P0 "]) \n\t" \
259 "ulw %[temp2], " #C "(%[" #P0 "]) \n\t" \
260 "ulw %[temp3], " #D "(%[" #P0 "]) \n\t" \
269 "addiu %[" #P0 "], %[" #P0 "], 16 \n\t" \
278 "bne %[" #P0 "], %[LoopEnd], 1b \n\t" \
/external/deqp/framework/delibs/decpp/
DdeUniquePtr.hpp175 template<typename T, typename P0>
176 inline MovePtr<T> newMovePtr (P0 p0) { return MovePtr<T>(new T(p0)); } in newMovePtr()
177 template<typename T, typename P0, typename P1>
178 inline MovePtr<T> newMovePtr (P0 p0, P1 p1) { return MovePtr<T>(new T(p0, p1)); } in newMovePtr()
179 template<typename T, typename P0, typename P1, typename P2>
180 inline MovePtr<T> newMovePtr (P0 p0, P1 p1, P2 p2) { return MovePtr<T>(new T(p0, p1, p2)); } in newMovePtr()
/external/llvm/lib/Target/Hexagon/MCTargetDesc/
DHexagonMCCompound.cpp103 if ((Hexagon::P0 == DstReg || Hexagon::P1 == DstReg) && in getCompoundCandidateGroup()
116 if ((Hexagon::P0 == DstReg || Hexagon::P1 == DstReg) && in getCompoundCandidateGroup()
147 if ((Hexagon::P0 == DstReg || Hexagon::P1 == DstReg) && in getCompoundCandidateGroup()
161 if (Hexagon::P0 == Src1Reg || Hexagon::P1 == Src1Reg) in getCompoundCandidateGroup()
184 assert((PredReg == Hexagon::P0) || (PredReg == Hexagon::P1) || in getCompoundOp()
192 return (PredReg == Hexagon::P0) ? fp0_jump_nt : fp1_jump_nt; in getCompoundOp()
194 return (PredReg == Hexagon::P0) ? fp0_jump_t : fp1_jump_t; in getCompoundOp()
196 return (PredReg == Hexagon::P0) ? tp0_jump_nt : tp1_jump_nt; in getCompoundOp()
198 return (PredReg == Hexagon::P0) ? tp0_jump_t : tp1_jump_t; in getCompoundOp()
/external/clang/test/ASTMerge/Inputs/
Dinterface2.m49 @protocol P0 protocol
61 @interface I9 <P0>
67 @protocol P2 <P0>
Dinterface1.m50 @protocol P0 protocol
62 @interface I9 <P0>
68 @protocol P2 <P0>
/external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.cnstr/
Dconst_pair.pass.cpp34 typedef std::pair<double, char> P0; in main() typedef
36 constexpr P0 p0(2.5, 'a'); in main()
/external/libgsm/inc/
Dproto.h25 #undef P0
39 # define P0() (void) macro
53 # define P0() () macro
/external/llvm/lib/Target/Hexagon/
DHexagonIsetDx.td32 let Defs = [PC], Uses = [P0, R31], isCodeGenOnly = 1, isPredicated = 1, isPredicatedFalse = 1, isBr…
53 let Defs = [PC, R31, R29, R30], Uses = [R30, P0], isCodeGenOnly = 1, isPredicated = 1, isPredicated…
93 let Uses = [P0], isCodeGenOnly = 1, isPredicated = 1, isPredicatedNew = 1, hasSideEffects = 0, hasN…
122 let Defs = [PC], Uses = [P0, R31], isCodeGenOnly = 1, isPredicated = 1, isPredicatedNew = 1, isBran…
180 let Defs = [P0], isCodeGenOnly = 1, hasSideEffects = 0 in
211 let Defs = [PC, R31, R29, R30], Uses = [R30, P0], isCodeGenOnly = 1, isPredicated = 1, mayLoad = 1,…
409 let Uses = [P0], isCodeGenOnly = 1, isPredicated = 1, isPredicatedFalse = 1, hasSideEffects = 0, ha…
536 let Defs = [PC], Uses = [P0, R31], isCodeGenOnly = 1, isPredicated = 1, isPredicatedFalse = 1, isPr…
547 let Uses = [P0], isCodeGenOnly = 1, isPredicated = 1, hasSideEffects = 0, hasNewValue = 1, opNewVal…
599 let Defs = [PC], Uses = [P0, R31], isCodeGenOnly = 1, isPredicated = 1, isBranch = 1, isIndirectBra…
[all …]
/external/skia/src/core/
DSkGeometry.h334 Sk2s P0 = from_point(src[0]); in SkCubicCoeff() local
339 fA = P3 + three * (P1 - P2) - P0; in SkCubicCoeff()
340 fB = three * (P2 - times_2(P1) + P0); in SkCubicCoeff()
341 fC = three * (P1 - P0); in SkCubicCoeff()
342 fD = P0; in SkCubicCoeff()
/external/deqp/framework/common/
DtcuInterval.hpp229 #define TCU_INTERVAL_APPLY_MONOTONE2(DST, P0, A0, P1, A1, VAR, BODY) \ argument
231 DST, P0, A0, tmp2_, \
234 #define TCU_INTERVAL_APPLY_MONOTONE3(DST, P0, A0, P1, A1, P2, A2, VAR, BODY) \ argument
236 DST, P0, A0, tmp3_, \

12345