Home
last modified time | relevance | path

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

12345678910>>...33

/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/smartptr/unique.ptr/unique.ptr.special/
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
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
/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/javaparser/javaparser-testing/src/test/java/com/github/javaparser/ast/visitor/
DNoCommentHashCodeVisitorTest.java15 CompilationUnit p2 = JavaParser.parse("class X { }"); in testEquals() local
22 CompilationUnit p2 = JavaParser.parse("/* b */ class X { } //c"); in testEqualsWithDifferentComments() local
31 CompilationUnit p2 = JavaParser.parse("class Y { }"); in testNotEquals() local
DNoCommentEqualsVisitorTest.java37 CompilationUnit p2 = JavaParser.parse("class X { }"); in testEquals() local
44 CompilationUnit p2 = JavaParser.parse("/* b */ class X { } //c"); in testEqualsWithDifferentComments() local
51 CompilationUnit p2 = JavaParser.parse("class Y { }"); in testNotEquals() local
DHashCodeVisitorTest.java14 CompilationUnit p2 = JavaParser.parse("class X { }"); in testEquals() local
21 CompilationUnit p2 = JavaParser.parse("class Y { }"); in testNotEquals() local
/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/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
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
Dcopy_ctor.pass.cpp26 P1 p2 = p1; in main() local
34 constexpr P1 p2 = p1; in main() local
/external/googletest/googlemock/include/gmock/
Dgmock-generated-actions.h436 #define GMOCK_INTERNAL_DECL_TYPE_AND_3_VALUE_PARAMS(p0, p1, p2) , \ argument
438 #define GMOCK_INTERNAL_DECL_TYPE_AND_4_VALUE_PARAMS(p0, p1, p2, p3) , \ argument
441 #define GMOCK_INTERNAL_DECL_TYPE_AND_5_VALUE_PARAMS(p0, p1, p2, p3, p4) , \ argument
444 #define GMOCK_INTERNAL_DECL_TYPE_AND_6_VALUE_PARAMS(p0, p1, p2, p3, p4, p5) , \ argument
447 #define GMOCK_INTERNAL_DECL_TYPE_AND_7_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, \ argument
451 #define GMOCK_INTERNAL_DECL_TYPE_AND_8_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, \ argument
455 #define GMOCK_INTERNAL_DECL_TYPE_AND_9_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, \ argument
459 #define GMOCK_INTERNAL_DECL_TYPE_AND_10_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, \ argument
473 #define GMOCK_INTERNAL_INIT_AND_3_VALUE_PARAMS(p0, p1, p2)\ argument
477 #define GMOCK_INTERNAL_INIT_AND_4_VALUE_PARAMS(p0, p1, p2, p3)\ argument
[all …]
Dgmock-generated-matchers.h426 #define MATCHER_P3(name, p0, p1, p2, description)\ argument
488 #define MATCHER_P4(name, p0, p1, p2, p3, description)\ argument
560 #define MATCHER_P5(name, p0, p1, p2, p3, p4, description)\ argument
636 #define MATCHER_P6(name, p0, p1, p2, p3, p4, p5, description)\ argument
715 #define MATCHER_P7(name, p0, p1, p2, p3, p4, p5, p6, description)\ argument
803 #define MATCHER_P8(name, p0, p1, p2, p3, p4, p5, p6, p7, description)\ argument
897 #define MATCHER_P9(name, p0, p1, p2, p3, p4, p5, p6, p7, p8, description)\ argument
995 #define MATCHER_P10(name, p0, p1, p2, p3, p4, p5, p6, p7, p8, p9, description)\ argument
/external/libjpeg-turbo/
Djerror.h237 #define ERREXIT2(cinfo, code, p1, p2) \ argument
242 #define ERREXIT3(cinfo, code, p1, p2, p3) \ argument
248 #define ERREXIT4(cinfo, code, p1, p2, p3, p4) \ argument
270 #define WARNMS2(cinfo, code, p1, p2) \ argument
284 #define TRACEMS2(cinfo, lvl, code, p1, p2) \ argument
289 #define TRACEMS3(cinfo, lvl, code, p1, p2, p3) \ argument
294 #define TRACEMS4(cinfo, lvl, code, p1, p2, p3, p4) \ argument
299 #define TRACEMS5(cinfo, lvl, code, p1, p2, p3, p4, p5) \ argument
305 #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.cpp54 std::exception_ptr p2; in main() local
74 std::exception_ptr p2; in main() local
94 std::exception_ptr p2; in main() local
/external/clang/test/Sema/
Denable_if.c98 int (*p2)(int) = isdigit2; in test5() local
126 …void (*p2)(void) = f2; // expected-error{{initializing 'void (*)(void)' with an expression of inco… in test6() local
135 …void (*p2)(int) = f3; // expected-error{{initializing 'void (*)(int)' with an expression of incomp… in test7() local
143 …void (*p2)(int) = f4; // expected-error{{cannot take address of function 'f4' becuase it has one o… in test8() local
/external/junit-params/src/test/java/junitparams/usage/
DSamplesOfUsageTest.java33 public void paramsInAnnotation(String p1, Integer p2) { } in paramsInAnnotation()
37 public void paramsInAnnotationPipeSeparated(String p1, Integer p2) { } in paramsInAnnotationPipeSeparated()
41 public void paramsInDefaultMethod(String p1, Integer p2) { } in paramsInDefaultMethod()
48 public void paramsInNamedMethod(String p1, Integer p2) { } in paramsInNamedMethod()
55 public void paramsInMultipleMethods(String p1, Integer p2) { } in paramsInMultipleMethods()
171 public void combineParamsInAnnotation(String p1, Integer p2) {} in combineParamsInAnnotation()
/external/aac/libFDK/src/
DFDK_matrixCalloc.cpp137 char *p2; in fdkCallocMatrix2D() local
158 char *p2; in fdkCallocMatrix2D_aligned() local
192 char *p2; in fdkCallocMatrix2D_int() local
215 char *p2; in fdkCallocMatrix2D_int_aligned() local
239 void **p2; in fdkCallocMatrix3D() local
282 void **p2; in fdkCallocMatrix3D_int() 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>>...33