/external/llvm/test/MC/Hexagon/instructions/ |
D | cr.s | 8 p1 = fastcorner9(p2, p3) define 12 p1 = any8(p2) define 14 p1 = all8(p2) define 46 p1 = and(p3, p2) define 48 p1 = and(p2, and(p3, p3)) define 50 p1 = or(p3, p2) define 52 p1 = and(p2, or(p3, p3)) define 54 p1 = xor(p2, p3) define 56 p1 = or(p2, and(p3, p3)) define 58 p1 = and(p2, !p3) define [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/MC/Hexagon/instructions/ |
D | cr.s | 8 p1 = fastcorner9(p2, p3) define 12 p1 = any8(p2) define 14 p1 = all8(p2) define 46 p1 = and(p3, p2) define 48 p1 = and(p2, and(p3, p3)) define 50 p1 = or(p3, p2) define 52 p1 = and(p2, or(p3, p3)) define 54 p1 = xor(p2, p3) define 56 p1 = or(p2, and(p3, p3)) define 58 p1 = and(p2, !p3) define [all …]
|
/external/libcxx/test/std/utilities/utility/pairs/pairs.spec/ |
D | comparison.pass.cpp | 30 P p1(3, static_cast<short>(4)); in main() local 41 P p1(2, static_cast<short>(4)); in main() local 52 P p1(3, static_cast<short>(2)); in main() local 63 P p1(3, static_cast<short>(4)); in main() local 74 P p1(3, static_cast<short>(4)); in main() local 87 constexpr P p1(3, static_cast<short>(4)); in main() local
|
D | make_pair.pass.cpp | 24 P1 p1 = std::make_pair(3, static_cast<short>(4)); in main() local 32 P1 p1 = std::make_pair(std::unique_ptr<int>(new int(3)), static_cast<short>(4)); in main() local 38 P1 p1 = std::make_pair(nullptr, static_cast<short>(4)); in main() local 46 constexpr P1 p1 = std::make_pair(3, static_cast<short>(4)); in main() local
|
/external/libcxx/test/std/utilities/utility/pairs/pairs.pair/ |
D | implicit_deduction_guides.pass.cpp | 53 std::pair p1(E{}, 42); in main() local 62 std::pair p1(p); in main() local 67 std::pair p1(p); in main() local 72 std::pair p1(std::move(p)); in main() local 77 std::pair p1(std::move(p)); in main() local
|
D | const_pair_U_V.pass.cpp | 62 const P1 p1(3, 4); in main() local 71 P1 p1(42, 101); in main() local 159 constexpr P1 p1(3, 4); in main() local 167 constexpr P1 p1(42, 101); in main() local 175 constexpr P1 p1(42, 101); in main() local
|
/external/libldac/src/ |
D | struct_ldac.h | 68 #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/kernel-headers/original/uapi/linux/ |
D | ultrasound.h | 76 #define _GUS_CMD(chn, voice, cmd, p1, p2) \ argument 84 #define GUS_NUMVOICES(chn, p1) _GUS_CMD(chn, 0, _GUS_NUMVOICES, (p1), 0) argument 85 #define GUS_VOICESAMPLE(chn, voice, p1) _GUS_CMD(chn, voice, _GUS_VOICESAMPLE, (p1), 0) /* OBSOLET… argument 86 #define GUS_VOICEON(chn, voice, p1) _GUS_CMD(chn, voice, _GUS_VOICEON, (p1), 0) argument 89 #define GUS_VOICEMODE(chn, voice, p1) _GUS_CMD(chn, voice, _GUS_VOICEMODE, (p1), 0) argument 90 #define GUS_VOICEBALA(chn, voice, p1) _GUS_CMD(chn, voice, _GUS_VOICEBALA, (p1), 0) argument 93 #define GUS_VOICEVOL(chn, voice, p1) _GUS_CMD(chn, voice, _GUS_VOICEVOL, (p1), 0) argument 94 #define GUS_VOICEVOL2(chn, voice, p1) _GUS_CMD(chn, voice, _GUS_VOICEVOL2, (p1), 0) argument 96 #define GUS_RAMPRATE(chn, voice, p1, p2) _GUS_CMD(chn, voice, _GUS_RAMPRATE, (p1), (p2)) argument 97 #define GUS_RAMPMODE(chn, voice, p1) _GUS_CMD(chn, voice, _GUS_RAMPMODE, (p1), 0) argument [all …]
|
/external/libcxx/test/std/utilities/smartptr/unique.ptr/unique.ptr.special/ |
D | eq.pass.cpp | 51 const std::unique_ptr<A, Deleter<A> > p1(new A); in main() local 57 const std::unique_ptr<A, Deleter<A> > p1(new A); in main() local 63 const std::unique_ptr<A[], Deleter<A[]> > p1(new A[3]); in main() local 69 const std::unique_ptr<A[], Deleter<A[]> > p1(new A[3]); in main() local 75 const std::unique_ptr<A, Deleter<A> > p1; in main() local 81 const std::unique_ptr<A, Deleter<A> > p1; in main() local
|
D | rel.pass.cpp | 59 const std::unique_ptr<A, Deleter<A> > p1(new A); in main() local 66 const std::unique_ptr<A, Deleter<A> > p1(new A); in main() local 73 const std::unique_ptr<A[], Deleter<A[]> > p1(new A[3]); in main() local 80 const std::unique_ptr<A[], Deleter<A[]> > p1(new A[3]); in main() local 87 const std::unique_ptr<A, Deleter<A> > p1; in main() local 94 const std::unique_ptr<A, Deleter<A> > p1; in main() local
|
/external/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.create/ |
D | make_shared.volatile.pass.cpp | 25 std::shared_ptr<T> p1 = std::make_shared<T>(t1); in test() local 33 std::shared_ptr<const T> p1 = std::make_shared<const T>(t1); in test() local 41 std::shared_ptr<volatile T> p1 = std::make_shared<volatile T>(t1); in test() local 49 std::shared_ptr<const volatile T> p1 = std::make_shared<const volatile T>(t1); in test() local
|
/external/pdfium/third_party/libpng16/ |
D | pngdebug.h | 63 # define png_debug1(l,m,p1) _RPT1(_CRT_WARN,m PNG_STRING_NEWLINE,p1) argument 66 # define png_debug2(l,m,p1,p2) \ argument 89 # define png_debug1(l,m,p1) \ argument 97 # define png_debug2(l,m,p1,p2) \ argument 117 # define png_debug1(l,m,p1) \ argument 128 # define png_debug2(l,m,p1,p2) \ argument 148 # define png_debug1(l, m, p1) ((void)0) argument 151 # define png_debug2(l, m, p1, p2) ((void)0) argument
|
/external/libpng/ |
D | pngdebug.h | 63 # define png_debug1(l,m,p1) _RPT1(_CRT_WARN,m PNG_STRING_NEWLINE,p1) argument 66 # define png_debug2(l,m,p1,p2) \ argument 89 # define png_debug1(l,m,p1) \ argument 97 # define png_debug2(l,m,p1,p2) \ argument 117 # define png_debug1(l,m,p1) \ argument 128 # define png_debug2(l,m,p1,p2) \ argument 148 # define png_debug1(l, m, p1) ((void)0) argument 151 # define png_debug2(l, m, p1, p2) ((void)0) argument
|
/external/libjpeg-turbo/ |
D | jerror.h | 233 #define ERREXIT1(cinfo, code, p1) \ argument 237 #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 266 #define WARNMS1(cinfo, code, p1) \ argument 270 #define WARNMS2(cinfo, code, p1, p2) \ argument 280 #define TRACEMS1(cinfo, lvl, code, p1) \ 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 [all …]
|
/external/webrtc/webrtc/base/ |
D | refcount.h | 40 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/ |
D | NoCommentHashCodeVisitorTest.java | 14 CompilationUnit p1 = JavaParser.parse("class X { }"); in testEquals() local 21 CompilationUnit p1 = JavaParser.parse("/* a */ class X { /** b */} //c"); in testEqualsWithDifferentComments() local 30 CompilationUnit p1 = JavaParser.parse("class X { }"); in testNotEquals() local
|
D | NoCommentEqualsVisitorTest.java | 36 CompilationUnit p1 = JavaParser.parse("class X { }"); in testEquals() local 43 CompilationUnit p1 = JavaParser.parse("/* a */ class X { /** b */} //c"); in testEqualsWithDifferentComments() local 50 CompilationUnit p1 = JavaParser.parse("class X { }"); in testNotEquals() local
|
/external/junit-params/src/test/java/junitparams/usage/ |
D | SamplesOfUsageTest.java | 33 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() 76 public void paramsInCollection(String p1) { } in paramsInCollection() 81 public void paramsInIterator(String p1) { } in paramsInIterator() 171 public void combineParamsInAnnotation(String p1, Integer p2) {} in combineParamsInAnnotation()
|
/external/googletest/googlemock/include/gmock/ |
D | gmock-generated-actions.h | 434 #define GMOCK_INTERNAL_DECL_TYPE_AND_2_VALUE_PARAMS(p0, p1) , \ argument 436 #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 470 #define GMOCK_INTERNAL_INIT_AND_2_VALUE_PARAMS(p0, p1)\ argument [all …]
|
D | gmock-generated-matchers.h | 367 #define MATCHER_P2(name, p0, p1, description)\ argument 426 #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/webrtc/webrtc/system_wrappers/include/ |
D | ref_count.h | 52 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/ |
D | swap.pass.cpp | 35 std::shared_ptr<A> p1(ptr1); in main() local 53 std::shared_ptr<A> p1(ptr1); in main() local 71 std::shared_ptr<A> p1; in main() local 89 std::shared_ptr<A> p1; in main() local
|
/external/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.mod/ |
D | swap.pass.cpp | 35 std::shared_ptr<A> p1(ptr1); in main() local 53 std::shared_ptr<A> p1(ptr1); in main() local 71 std::shared_ptr<A> p1; in main() local 89 std::shared_ptr<A> p1; in main() local
|
/external/clang/test/CodeGenObjC/ |
D | debug-info-property.m | 8 int p1; field 10 @property int p1; property
|
/external/skqp/samplecode/ |
D | SamplePathOverstroke.cpp | 68 SkPath quadPath(SkPoint p1, SkPoint p2) { in quadPath() 82 SkPath cubicPath(SkPoint p1, SkPoint p2) { in cubicPath() 96 SkPath linSemicirclePath(SkPoint p1, SkPoint p2) { in linSemicirclePath() 117 SkPath rectPath(SkPoint p1) { in rectPath() 131 SkPoint p1 = SkPoint::Make(50, 50); in onDrawContent() local
|