Home
last modified time | relevance | path

Searched defs:p2 (Results 1 – 25 of 703) sorted by relevance

12345678910>>...29

/external/libcxx/test/std/utilities/utility/pairs/pairs.spec/
Dcomparison.pass.cpp31 P p2(3, static_cast<short>(4)); in main() local
42 P p2(3, static_cast<short>(4)); in main() local
53 P p2(3, static_cast<short>(4)); in main() local
64 P p2(2, static_cast<short>(4)); in main() local
75 P p2(3, static_cast<short>(2)); in main() local
88 constexpr P p2(3, static_cast<short>(2)); in main() local
/external/libldac/src/
Dstruct_ldac.h68 #define copy_data_ldac(p1, p2, n) memcpy_s((p2), (n), (p1), (n)) argument
69 #define copy_seq_s_ldac(p1, p2, n) memcpy_s((p2), (n)*sizeof(short), (p1), (n)*sizeof(short)) argument
70 #define copy_seq_l_ldac(p1, p2, n) memcpy_s((p2), (n)*sizeof(int), (p1), (n)*sizeof(int)) argument
71 #define copy_seq_f_ldac(p1, p2, n) memcpy_s((p2), (n)*sizeof(SCALAR), (p1), (n)*sizeof(SCALAR)) argument
72 #define move_seq_f_ldac(p1, p2, n) memmove_s((p2), (n)*sizeof(SCALAR), (p1), (n)*sizeof(SCALAR)) argument
74 #define copy_data_ldac(p1, p2, n) memcpy((p2), (p1), (n)) argument
75 #define copy_seq_s_ldac(p1, p2, n) memcpy((p2), (p1), (n)*sizeof(short)) argument
76 #define copy_seq_l_ldac(p1, p2, n) memcpy((p2), (p1), (n)*sizeof(int)) argument
77 #define copy_seq_f_ldac(p1, p2, n) memcpy((p2), (p1), (n)*sizeof(SCALAR)) argument
78 #define move_seq_f_ldac(p1, p2, n) memmove((p2), (p1), (n)*sizeof(SCALAR)) argument
/external/libcxx/test/std/utilities/memory/unique.ptr/unique.ptr.special/
Drel.pass.cpp60 const std::unique_ptr<A, Deleter<A> > p2(new A); in main() local
67 const std::unique_ptr<B, Deleter<B> > p2(new B); in main() local
74 const std::unique_ptr<A[], Deleter<A[]> > p2(new A[3]); in main() local
81 const std::unique_ptr<B[], Deleter<B[]> > p2(new B[3]); in main() local
88 const std::unique_ptr<A, Deleter<A> > p2; in main() local
95 const std::unique_ptr<B, Deleter<B> > p2; in main() local
Deq.pass.cpp52 const std::unique_ptr<A, Deleter<A> > p2(new A); in main() local
58 const std::unique_ptr<B, Deleter<B> > p2(new B); in main() local
64 const std::unique_ptr<A[], Deleter<A[]> > p2(new A[3]); in main() local
70 const std::unique_ptr<B[], Deleter<B[]> > p2(new B[3]); in main() local
76 const std::unique_ptr<A, Deleter<A> > p2; in main() local
82 const std::unique_ptr<B, Deleter<B> > p2; in main() local
/external/clang/test/CodeGen/
Denable_if.c14 void (*p2)(int) = &foo; in test1() local
37 void (*p2)(int) = &bar; in test2() local
60 void (*p2)(int) = &baz; in test3() local
77 void (*p2)(int) = &qux; in test4() local
/external/webrtc/webrtc/base/
Drefcount.h40 RefCountedObject(P1 p1, P2 p2) : T(p1, p2), ref_count_(0) { in RefCountedObject()
44 RefCountedObject(P1 p1, P2 p2, P3 p3) : T(p1, p2, p3), ref_count_(0) { in RefCountedObject()
48 RefCountedObject(P1 p1, P2 p2, P3 p3, P4 p4) in RefCountedObject()
53 RefCountedObject(P1 p1, P2 p2, P3 p3, P4 p4, P5 p5) in RefCountedObject()
59 RefCountedObject(P1 p1, P2 p2, P3 p3, P4 p4, P5 p5, P6 p6) in RefCountedObject()
65 RefCountedObject(P1 p1, P2 p2, P3 p3, P4 p4, P5 p5, P6 p6, P7 p7) in RefCountedObject()
71 RefCountedObject(P1 p1, P2 p2, P3 p3, P4 p4, P5 p5, P6 p6, P7 p7, P8 p8) in RefCountedObject()
78 P1 p1, P2 p2, P3 p3, P4 p4, P5 p5, P6 p6, P7 p7, P8 p8, P9 p9) in RefCountedObject()
85 P1 p1, P2 p2, P3 p3, P4 p4, P5 p5, P6 p6, P7 p7, P8 p8, P9 p9, P10 p10) in RefCountedObject()
93 P1 p1, P2 p2, P3 p3, P4 p4, P5 p5, P6 p6, P7 p7, P8 p8, P9 p9, P10 p10, in RefCountedObject()
/external/webrtc/webrtc/system_wrappers/include/
Dref_count.h52 RefCountImpl(P1 p1, P2 p2) : T(p1, p2), ref_count_(0) {} in RefCountImpl()
55 RefCountImpl(P1 p1, P2 p2, P3 p3) : T(p1, p2, p3), ref_count_(0) {} in RefCountImpl()
58 RefCountImpl(P1 p1, P2 p2, P3 p3, P4 p4) : T(p1, p2, p3, p4), ref_count_(0) {} in RefCountImpl()
61 RefCountImpl(P1 p1, P2 p2, P3 p3, P4 p4, P5 p5) in RefCountImpl()
/external/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.spec/
Dswap.pass.cpp37 std::shared_ptr<A> p2(ptr2); in main() local
55 std::shared_ptr<A> p2; in main() local
73 std::shared_ptr<A> p2(ptr2); in main() local
91 std::shared_ptr<A> p2; in main() local
/external/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.mod/
Dswap.pass.cpp37 std::shared_ptr<A> p2(ptr2); in main() local
55 std::shared_ptr<A> p2; in main() local
73 std::shared_ptr<A> p2(ptr2); in main() local
91 std::shared_ptr<A> p2; in main() local
/external/libchrome/sandbox/linux/seccomp-bpf/
Dsyscall.h49 Call(int nr, T0 p0, T1 p1, T2 p2, T3 p3, T4 p4, T5 p5, T6 p6, T7 p7) { in Call()
69 Call(int nr, T0 p0, T1 p1, T2 p2, T3 p3, T4 p4, T5 p5, T6 p6) { in Call()
83 Call(int nr, T0 p0, T1 p1, T2 p2, T3 p3, T4 p4, T5 p5) { in Call()
96 static inline intptr_t Call(int nr, T0 p0, T1 p1, T2 p2, T3 p3, T4 p4) { in Call()
101 static inline intptr_t Call(int nr, T0 p0, T1 p1, T2 p2, T3 p3) { in Call()
106 static inline intptr_t Call(int nr, T0 p0, T1 p1, T2 p2) { in Call()
/external/compiler-rt/lib/tsan/tests/unit/
Dtsan_mman_test.cc24 char *p2 = (char*)internal_alloc(MBlockScopedBuf, 20); in TEST() local
42 char *p2 = (char*)user_alloc(thr, pc, 20); in TEST() local
70 void *p2 = user_realloc(thr, pc, p, 0); in TEST() local
77 void *p2 = user_realloc(thr, pc, p, 10000); in TEST() local
88 void *p2 = user_realloc(thr, pc, p, 10); in TEST() local
100 char *p2 = (char*)user_alloc(thr, pc, 20); in TEST() local
/external/libcxx/test/std/utilities/utility/pairs/pairs.pair/
Dconst_pair_U_V.pass.cpp63 const P2 p2 = p1; in main() local
72 P2 p2(p1); in main() local
160 constexpr P2 p2 = p1; in main() local
168 constexpr P2 p2(p1); in main() local
176 constexpr P2 p2 = p1; in main() local
Dassign_rv_pair.pass.cpp54 P p2; in main() local
66 P p2(x2, std::move(y2)); in main() local
81 P p2; in main() local
91 P p2; in main() local
Dcopy_ctor.pass.cpp26 P1 p2 = p1; in main() local
34 constexpr P1 p2 = p1; in main() local
Drv_pair_U_V.pass.cpp73 P2 p2 = std::move(p1); in main() local
82 P2 p2(std::move(p1)); in main() local
166 constexpr std::pair<ExplicitT, ExplicitT> p2(std::move(p1)); in main() local
172 constexpr std::pair<ImplicitT, ImplicitT> p2 = std::move(p1); in main() local
/external/libcxx/test/std/experimental/filesystem/class.directory_entry/
Ddirectory_entry.mods.pass.cpp37 const path p2("abc"); in test_copy_assign_operator() local
58 const path p2("abc"); in test_move_assign_operator() local
72 const path p2("abc"); in test_path_assign_method() local
/external/pdfium/third_party/libjpeg/
Djerror.h212 #define ERREXIT2(cinfo,code,p1,p2) \ argument
217 #define ERREXIT3(cinfo,code,p1,p2,p3) \ argument
223 #define ERREXIT4(cinfo,code,p1,p2,p3,p4) \ argument
245 #define WARNMS2(cinfo,code,p1,p2) \ argument
259 #define TRACEMS2(cinfo,lvl,code,p1,p2) \ argument
264 #define TRACEMS3(cinfo,lvl,code,p1,p2,p3) \ argument
269 #define TRACEMS4(cinfo,lvl,code,p1,p2,p3,p4) \ argument
274 #define TRACEMS5(cinfo,lvl,code,p1,p2,p3,p4,p5) \ argument
280 #define TRACEMS8(cinfo,lvl,code,p1,p2,p3,p4,p5,p6,p7,p8) \ argument
/external/libjpeg-turbo/
Djerror.h238 #define ERREXIT2(cinfo,code,p1,p2) \ argument
243 #define ERREXIT3(cinfo,code,p1,p2,p3) \ argument
249 #define ERREXIT4(cinfo,code,p1,p2,p3,p4) \ argument
271 #define WARNMS2(cinfo,code,p1,p2) \ argument
285 #define TRACEMS2(cinfo,lvl,code,p1,p2) \ argument
290 #define TRACEMS3(cinfo,lvl,code,p1,p2,p3) \ argument
295 #define TRACEMS4(cinfo,lvl,code,p1,p2,p3,p4) \ argument
300 #define TRACEMS5(cinfo,lvl,code,p1,p2,p3,p4,p5) \ argument
306 #define TRACEMS8(cinfo,lvl,code,p1,p2,p3,p4,p5,p6,p7,p8) \ argument
/external/libcxx/test/std/language.support/support.exception/propagation/
Dcurrent_exception.pass.cpp50 std::exception_ptr p2; in main() local
70 std::exception_ptr p2; in main() local
90 std::exception_ptr p2; in main() local
/external/libcxx/test/std/numerics/rand/rand.dis/rand.dist.bern/rand.dist.bern.negbin/
Dparam_eq.pass.cpp27 param_type p2(3, 0.75); in main() local
34 param_type p2(3, 0.5); in main() local
/external/libcxx/test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.lognormal/
Dparam_eq.pass.cpp27 param_type p2(0.75, .5); in main() local
34 param_type p2(0.5, .5); in main() local
/external/libcxx/test/std/numerics/rand/rand.dis/rand.dist.pois/rand.dist.pois.gamma/
Dparam_eq.pass.cpp27 param_type p2(0.75, .5); in main() local
34 param_type p2(0.5, .5); in main() local
/external/libcxx/test/std/numerics/rand/rand.dis/rand.dist.pois/rand.dist.pois.extreme/
Dparam_eq.pass.cpp27 param_type p2(0.75, .5); in main() local
34 param_type p2(0.5, .5); in main() local
/external/libcxx/test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.chisq/
Dparam_eq.pass.cpp27 param_type p2(0.75); in main() local
34 param_type p2(0.5); in main() local
/external/libcxx/test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.t/
Dparam_eq.pass.cpp27 param_type p2(0.75); in main() local
34 param_type p2(0.5); in main() local

12345678910>>...29