Home
last modified time | relevance | path

Searched refs:P0 (Results 1 – 25 of 111) 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.h118 template <typename P0>
119 ReturnType Call(P0 p0) { in Call()
121 test_graph_signature_->VerifyParams<P0>(); in Call()
127 template <typename P0, typename P1>
128 ReturnType Call(P0 p0, P1 p1) { in Call()
130 test_graph_signature_->VerifyParams<P0, P1>(); in Call()
137 template <typename P0, typename P1, typename P2>
138 ReturnType Call(P0 p0, P1 p1, P2 p2) { in Call()
140 test_graph_signature_->VerifyParams<P0, P1, P2>(); in Call()
147 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) {
/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/opencv3/modules/cudev/include/opencv2/cudev/util/
Dtuple.hpp69 template <typename P0, typename P1, typename P2, typename P3, typename P4, typename P5, typename P6…
70 struct TupleTraits< tuple<P0, P1, P2, P3, P4, P5, P6, P7, P8, P9> >
73 enum { size = tuple_size< tuple<P0, P1, P2, P3, P4, P5, P6, P7, P8, P9> >::value };
/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/opencv3/modules/core/include/opencv2/core/cuda/detail/
Dreduce.hpp137 …template <typename P0, typename P1, typename P2, typename P3, typename P4, typename P5, typename P…
139 …__device__ __forceinline__ void loadToSmem(const thrust::tuple<P0, P1, P2, P3, P4, P5, P6, P7, P8,… in loadToSmem() argument
143 …For<0, thrust::tuple_size<thrust::tuple<P0, P1, P2, P3, P4, P5, P6, P7, P8, P9> >::value>::loadToS… in loadToSmem()
145 …template <typename P0, typename P1, typename P2, typename P3, typename P4, typename P5, typename P…
147 …__device__ __forceinline__ void loadFromSmem(const thrust::tuple<P0, P1, P2, P3, P4, P5, P6, P7, P… in loadFromSmem() argument
151 …For<0, thrust::tuple_size<thrust::tuple<P0, P1, P2, P3, P4, P5, P6, P7, P8, P9> >::value>::loadFro… in loadFromSmem()
166 …template <typename P0, typename P1, typename P2, typename P3, typename P4, typename P5, typename P…
169 …__device__ __forceinline__ void merge(const thrust::tuple<P0, P1, P2, P3, P4, P5, P6, P7, P8, P9>&… in merge() argument
175 …For<0, thrust::tuple_size<thrust::tuple<P0, P1, P2, P3, P4, P5, P6, P7, P8, P9> >::value>::merge(s… in merge()
/external/opencv3/modules/cudev/include/opencv2/cudev/block/detail/
Dreduce.hpp157 …template <typename P0, typename P1, typename P2, typename P3, typename P4, typename P5, typename P…
159 …__device__ __forceinline__ void loadToSmem(const tuple<P0, P1, P2, P3, P4, P5, P6, P7, P8, P9>& sm… in loadToSmem() argument
163 …For<0, tuple_size<tuple<P0, P1, P2, P3, P4, P5, P6, P7, P8, P9> >::value>::loadToSmem(smem, val, t… in loadToSmem()
166 …template <typename P0, typename P1, typename P2, typename P3, typename P4, typename P5, typename P…
168 …__device__ __forceinline__ void loadFromSmem(const tuple<P0, P1, P2, P3, P4, P5, P6, P7, P8, P9>& … in loadFromSmem() argument
172 …For<0, tuple_size<tuple<P0, P1, P2, P3, P4, P5, P6, P7, P8, P9> >::value>::loadFromSmem(smem, val,… in loadFromSmem()
184 …template <typename P0, typename P1, typename P2, typename P3, typename P4, typename P5, typename P…
187 __device__ __forceinline__ void merge(const tuple<P0, P1, P2, P3, P4, P5, P6, P7, P8, P9>& smem, in merge() argument
193 …For<0, tuple_size<tuple<P0, P1, P2, P3, P4, P5, P6, P7, P8, P9> >::value>::merge(smem, val, tid, d… in merge()
/external/opencv3/modules/cudev/include/opencv2/cudev/warp/detail/
Dreduce.hpp137 …template <typename P0, typename P1, typename P2, typename P3, typename P4, typename P5, typename P…
139 …__device__ __forceinline__ void loadToSmem(const tuple<P0, P1, P2, P3, P4, P5, P6, P7, P8, P9>& sm… in loadToSmem() argument
143 …For<0, tuple_size<tuple<P0, P1, P2, P3, P4, P5, P6, P7, P8, P9> >::value>::loadToSmem(smem, val, t… in loadToSmem()
155 …template <typename P0, typename P1, typename P2, typename P3, typename P4, typename P5, typename P…
158 __device__ __forceinline__ void merge(const tuple<P0, P1, P2, P3, P4, P5, P6, P7, P8, P9>& smem, in merge() argument
164 …For<0, tuple_size<tuple<P0, P1, P2, P3, P4, P5, P6, P7, P8, P9> >::value>::merge(smem, val, tid, d… in merge()
/external/v8/test/cctest/wasm/
Dwasm-run-utils.h344 template <typename P0>
345 ReturnType Call(P0 p0) { in Call()
349 template <typename P0, typename P1>
350 ReturnType Call(P0 p0, P1 p1) { in Call()
354 template <typename P0, typename P1, typename P2>
355 ReturnType Call(P0 p0, P1 p1, P2 p2) { in Call()
359 template <typename P0, typename P1, typename P2, typename P3>
360 ReturnType Call(P0 p0, P1 p1, P2 p2, P3 p3) { in Call()
/external/clang/test/ASTMerge/Inputs/
Dinterface1.m50 @protocol P0 protocol
62 @interface I9 <P0>
68 @protocol P2 <P0>
Dinterface2.m49 @protocol P0 protocol
61 @interface I9 <P0>
67 @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

12345