Searched refs:P2 (Results 1 - 25 of 64) sorted by relevance

123

/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...]
/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
H A Dredecl-merge-left.h14 @protocol P2
/external/webrtc/src/system_wrappers/interface/
H A Dref_count.h51 template<typename P1, typename P2>
52 RefCountImpl(P1 p1, P2 p2) : T(p1, p2), ref_count_(0) {}
54 template<typename P1, typename P2, typename P3>
55 RefCountImpl(P1 p1, P2 p2, P3 p3) : T(p1, p2, p3), ref_count_(0) {}
57 template<typename P1, typename P2, typename P3, typename P4>
58 RefCountImpl(P1 p1, P2 p2, P3 p3, P4 p4) : T(p1, p2, p3, p4), ref_count_(0) {}
60 template<typename P1, typename P2, typename P3, typename P4, typename P5>
61 RefCountImpl(P1 p1, P2 p2, P3 p3, P4 p4, P5 p5)
/external/chromium/base/
H A Dbind.h51 template <typename Sig, typename P1, typename P2>
52 internal::InvokerStorageHolder<internal::InvokerStorage2<Sig,P1, P2> >
53 Bind(Sig f, const P1& p1, const P2& p2) {
55 new internal::InvokerStorage2<Sig, P1, P2>(
59 template <typename Sig, typename P1, typename P2, typename P3>
60 internal::InvokerStorageHolder<internal::InvokerStorage3<Sig,P1, P2, P3> >
61 Bind(Sig f, const P1& p1, const P2& p2, const P3& p3) {
63 new internal::InvokerStorage3<Sig, P1, P2, P3>(
67 template <typename Sig, typename P1, typename P2, typename P3, typename P4>
68 internal::InvokerStorageHolder<internal::InvokerStorage4<Sig,P1, P2, P
[all...]
/external/libgsm/inc/
H A Dunproto.h15 #undef P2 macro
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
/external/webkit/Source/WebCore/fileapi/
H A DFileThreadTask.h99 template<typename T, typename P1, typename MP1, typename P2, typename MP2>
103 typedef FileThreadTask2<T, P1, MP1, P2, MP2> FileThreadTaskImpl;
105 typedef typename CrossThreadTaskTraits<P2>::ParamType Param2;
129 P2 m_parameter2;
132 template<typename T, typename P1, typename MP1, typename P2, typename MP2, typename P3, typename MP3>
136 typedef FileThreadTask3<T, P1, MP1, P2, MP2, P3, MP3> FileThreadTaskImpl;
138 typedef typename CrossThreadTaskTraits<P2>::ParamType Param2;
164 P2 m_parameter2;
195 template<typename T, typename P1, typename MP1, typename P2, typename MP2>
200 const P2
[all...]
/external/webkit/Source/WebCore/platform/graphics/chromium/cc/
H A DCCMainThreadTask.h92 template<typename T, typename P1, typename MP1, typename P2, typename MP2>
96 typedef MainThreadTask2<T, P1, MP1, P2, MP2> MainThreadTaskImpl;
98 typedef typename CrossThreadTaskTraits<P2>::ParamType Param2;
122 P2 m_parameter2;
125 template<typename T, typename P1, typename MP1, typename P2, typename MP2, typename P3, typename MP3>
129 typedef MainThreadTask3<T, P1, MP1, P2, MP2, P3, MP3> MainThreadTaskImpl;
131 typedef typename CrossThreadTaskTraits<P2>::ParamType Param2;
157 P2 m_parameter2;
188 template<typename T, typename P1, typename MP1, typename P2, typename MP2>
193 const P2
[all...]
H A DCCThreadTask.h92 template<typename T, typename P1, typename MP1, typename P2, typename MP2>
96 typedef CCThreadTask2<T, P1, MP1, P2, MP2> CCThreadTaskImpl;
98 typedef typename CrossThreadTaskTraits<P2>::ParamType Param2;
122 P2 m_parameter2;
125 template<typename T, typename P1, typename MP1, typename P2, typename MP2, typename P3, typename MP3>
129 typedef CCThreadTask3<T, P1, MP1, P2, MP2, P3, MP3> CCThreadTaskImpl;
131 typedef typename CrossThreadTaskTraits<P2>::ParamType Param2;
157 P2 m_parameter2;
162 template<typename T, typename P1, typename MP1, typename P2, typename MP2, typename P3, typename MP3, typename P4, typename MP4>
166 typedef CCThreadTask4<T, P1, MP1, P2, MP
[all...]
/external/webkit/Source/WebCore/dom/
H A DCrossThreadTask.h89 template<typename P1, typename MP1, typename P2, typename MP2>
93 typedef CrossThreadTask2<P1, MP1, P2, MP2> CrossThreadTask;
95 typedef typename CrossThreadTaskTraits<P2>::ParamType Param2;
118 P2 m_parameter2;
121 template<typename P1, typename MP1, typename P2, typename MP2, typename P3, typename MP3>
125 typedef CrossThreadTask3<P1, MP1, P2, MP2, P3, MP3> CrossThreadTask;
127 typedef typename CrossThreadTaskTraits<P2>::ParamType Param2;
152 P2 m_parameter2;
156 template<typename P1, typename MP1, typename P2, typename MP2, typename P3, typename MP3, typename P4, typename MP4>
160 typedef CrossThreadTask4<P1, MP1, P2, MP
[all...]
/external/webkit/Source/WebKit2/Platform/CoreIPC/
H A DHandleMessage.h22 template<typename C, typename MF, typename P1, typename P2>
23 void callMemberFunction(const Arguments2<P1, P2>& args, C* object, MF function)
28 template<typename C, typename MF, typename P1, typename P2, typename P3>
29 void callMemberFunction(const Arguments3<P1, P2, P3>& args, C* object, MF function)
34 template<typename C, typename MF, typename P1, typename P2, typename P3, typename P4>
35 void callMemberFunction(const Arguments4<P1, P2, P3, P4>& args, C* object, MF function)
40 template<typename C, typename MF, typename P1, typename P2, typename P3, typename P4, typename P5>
41 void callMemberFunction(const Arguments5<P1, P2, P3, P4, P5>& args, C* object, MF function)
46 template<typename C, typename MF, typename P1, typename P2, typename P3, typename P4, typename P5, typename P6>
47 void callMemberFunction(const Arguments6<P1, P2, P
[all...]
/external/chromium/testing/
H A Dgmock_mutant.h324 template <typename R, typename T, typename Method, typename P1, typename P2>
326 const Tuple2<P1, P2>& p,
330 template <typename R, typename Function, typename P1, typename P2>
332 const Tuple2<P1, P2>& p,
338 template <typename R, typename T, typename Method, typename P1, typename P2,
341 const Tuple2<P1, P2>& p,
345 template <typename R, typename Function, typename P1, typename P2, typename C1>
347 const Tuple2<P1, P2>& p,
353 template <typename R, typename T, typename Method, typename P1, typename P2,
356 const Tuple2<P1, P2>
[all...]
/external/libgsm/src/
H A Dadd.c23 word gsm_add P2((a,b), word a, word b)
29 word gsm_sub P2((a,b), word a, word b)
35 word gsm_mult P2((a,b), word a, word b)
41 word gsm_mult_r P2((a,b), word a, word b)
56 longword gsm_L_mult P2((a,b),word a, word b)
62 longword gsm_L_add P2((a,b), longword a, longword b)
78 longword gsm_L_sub P2((a,b), longword a, longword b)
153 longword gsm_L_asl P2((a,n), longword a, int n)
161 word gsm_asl P2((a,n), word a, int n)
169 longword gsm_L_asr P2((
[all...]
H A Ddebug.c62 void gsm_debug_longword P2( (name, value),
69 void gsm_debug_word P2( (name, value),
H A Ddecode.c19 static void Postprocessing P2((S,s),
/external/clang/include/clang/StaticAnalyzer/Core/
H A DCheckerManager.h50 template <typename RET, typename P1, typename P2, typename P3, typename P4,
52 class CheckerFn<RET(P1, P2, P3, P4, P5)> {
53 typedef RET (*Func)(void *, P1, P2, P3, P4, P5);
58 RET operator()(P1 p1, P2 p2, P3 p3, P4 p4, P5 p5) const {
63 template <typename RET, typename P1, typename P2, typename P3, typename P4>
64 class CheckerFn<RET(P1, P2, P3, P4)> {
65 typedef RET (*Func)(void *, P1, P2, P3, P4);
70 RET operator()(P1 p1, P2 p2, P3 p3, P4 p4) const {
75 template <typename RET, typename P1, typename P2, typename P3>
76 class CheckerFn<RET(P1, P2, P
[all...]
/external/clang/test/Index/
H A Dcomplete-method-decls.m12 @protocol P2<P1>
21 @interface B : A<P2>
/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))));
/external/libpng/contrib/gregbook/
H A Dmakevms.com97 $! P2 = Command to make it
127 $ write sys$output P2
128 $ 'P2
/external/llvm/tools/opt/
H A DAnalysisWrappers.cpp94 P2("print-callgraph", "Print a call graph");
H A DGraphPrinters.cpp90 static RegisterPass<CallGraphPrinter> P2("dot-callgraph",
/external/valgrind/unittest/
H A Dthread_wrappers.h205 template <class P1, class P2>
206 Closure *NewCallback(void (*f)(P1, P2), P1 p1, P2 p2) {
208 CHECK(sizeof(P2) <= sizeof(void*));
/external/llvm/test/Bindings/Ocaml/
H A Dvmcore.ml853 let p2 = param fn 1 ++ set_value_name "P2" in
967 (* RUN: grep "build_invoke.*invoke.*P1.*P2" < %t.ll
987 (* RUN: grep "%build_add = add i32 %P1, %P2" < %t.ll
988 * RUN: grep "%build_nsw_add = add nsw i32 %P1, %P2" < %t.ll
989 * RUN: grep "%build_nuw_add = add nuw i32 %P1, %P2" < %t.ll
991 * RUN: grep "%build_sub = sub i32 %P1, %P2" < %t.ll
992 * RUN: grep "%build_nsw_sub = sub nsw i32 %P1, %P2" < %t.ll
993 * RUN: grep "%build_nuw_sub = sub nuw i32 %P1, %P2" < %t.ll
995 * RUN: grep "%build_mul = mul i32 %P1, %P2" < %t.ll
996 * RUN: grep "%build_nsw_mul = mul nsw i32 %P1, %P2" <
[all...]

Completed in 1182 milliseconds

123