/external/llvm-project/clang/test/Analysis/ |
D | smart-ptr.cpp | 13 void derefAfterMove(std::unique_ptr<int> P) { in derefAfterMove() 46 std::unique_ptr<A> P(new A()); in derefAfterValidCtr() local 51 void derefOfUnknown(std::unique_ptr<A> P) { in derefOfUnknown() 56 std::unique_ptr<A> P; in derefAfterDefaultCtr() local 62 std::unique_ptr<A> P(nullptr); in derefAfterCtrWithNull() local 69 std::unique_ptr<A> P(InnerPtr); in derefAfterCtrWithNullVariable() local 75 std::unique_ptr<A> P(new A()); in derefAfterRelease() local 82 std::unique_ptr<A> P(new A()); in derefAfterReset() local 89 std::unique_ptr<A> P(new A()); in derefAfterResetWithNull() local 95 std::unique_ptr<A> P; in derefAfterResetWithNonNull() local [all …]
|
D | smart-ptr-text-output.cpp | 19 std::unique_ptr<A> P; // expected-note {{Default constructed smart pointer 'P' is null}} in derefAfterDefaultCtr() local 26 …std::unique_ptr<A> P(NullInnerPtr); // expected-note {{Smart pointer 'P' is constructed using a nu… in derefAfterCtrWithNull() local 33 …std::unique_ptr<A> P(NullInnerPtr); // expected-note {{Smart pointer 'P' is constructed using a nu… in derefAfterCtrWithNullVariable() local 39 std::unique_ptr<A> P(new A()); // expected-note {{Smart pointer 'P' is constructed}} in derefAfterRelease() local 47 std::unique_ptr<A> P(new A()); // expected-note {{Smart pointer 'P' is constructed}} in derefAfterReset() local 55 std::unique_ptr<A> P(new A()); // expected-note {{Smart pointer 'P' is constructed}} in derefAfterResetWithNull() local 64 std::unique_ptr<A> P; // FIXME: add note "Default constructed smart pointer 'P' is null" in derefOnReleasedNullRawPtr() local 71 std::unique_ptr<A> P(new A()); // expected-note {{Smart pointer 'P' is constructed}} in derefOnSwappedNullPtr() local 81 std::unique_ptr<A> P; // expected-note {{Default constructed smart pointer 'P' is null}} in derefOnStdSwappedNullPtr() local 91 std::unique_ptr<A> P; member [all …]
|
/external/libcxx/test/libcxx/utilities/utility/pairs/pairs.pair/ |
D | trivial_copy_move_ABI.pass.cpp | 87 typedef std::pair<int, short> P; in main() typedef 93 typedef std::pair<int, short> P; in main() typedef 98 using P = std::pair<NonTrivialDtor, int>; in main() typedef 107 using P = std::pair<NonTrivialCopy, int>; in main() typedef 115 using P = std::pair<NonTrivialMove, int>; in main() typedef 123 using P = std::pair<DeletedCopy, int>; in main() typedef 131 using P = std::pair<Trivial, int>; in main() typedef 139 using P = std::pair<TrivialMove, int>; in main() typedef
|
D | non_trivial_copy_move_ABI.pass.cpp | 92 typedef std::pair<int, short> P; in main() typedef 98 typedef std::pair<int, short> P; in main() typedef 103 using P = std::pair<NonTrivialDtor, int>; in main() typedef 112 using P = std::pair<NonTrivialCopy, int>; in main() typedef 120 using P = std::pair<NonTrivialMove, int>; in main() typedef 128 using P = std::pair<DeletedCopy, int>; in main() typedef 136 using P = std::pair<Trivial, int>; in main() typedef 144 using P = std::pair<TrivialMove, int>; in main() typedef
|
/external/llvm-project/libcxx/test/libcxx/utilities/utility/pairs/pairs.pair/ |
D | trivial_copy_move_ABI.pass.cpp | 84 typedef std::pair<int, short> P; in test_trivial() typedef 90 typedef std::pair<int, short> P; in test_trivial() typedef 95 using P = std::pair<NonTrivialDtor, int>; in test_trivial() typedef 104 using P = std::pair<NonTrivialCopy, int>; in test_trivial() typedef 112 using P = std::pair<NonTrivialMove, int>; in test_trivial() typedef 120 using P = std::pair<DeletedCopy, int>; in test_trivial() typedef 128 using P = std::pair<Trivial, int>; in test_trivial() typedef 136 using P = std::pair<TrivialMove, int>; in test_trivial() typedef
|
D | non_trivial_copy_move_ABI.pass.cpp | 89 typedef std::pair<int, short> P; in test_trivial() typedef 95 typedef std::pair<int, short> P; in test_trivial() typedef 100 using P = std::pair<NonTrivialDtor, int>; in test_trivial() typedef 109 using P = std::pair<NonTrivialCopy, int>; in test_trivial() typedef 117 using P = std::pair<NonTrivialMove, int>; in test_trivial() typedef 125 using P = std::pair<DeletedCopy, int>; in test_trivial() typedef 133 using P = std::pair<Trivial, int>; in test_trivial() typedef 141 using P = std::pair<TrivialMove, int>; in test_trivial() typedef
|
/external/llvm-project/clang/test/CodeGen/X86/ |
D | movbe-builtins.c | 7 short test_loadbe_i16(const short *P) { in test_loadbe_i16() 14 void test_storebe_i16(short *P, short D) { in test_storebe_i16() 21 int test_loadbe_i32(const int *P) { in test_loadbe_i32() 28 void test_storebe_i32(int *P, int D) { in test_storebe_i32() 36 long long test_loadbe_i64(const long long *P) { in test_loadbe_i64() 43 void test_storebe_i64(long long *P, long long D) { in test_storebe_i64()
|
/external/llvm-project/llvm/include/llvm/Support/ |
D | Endian.h | 352 template <typename T> inline T read(const void *P, endianness E) { in read() 356 template <typename T, endianness E> inline T read(const void *P) { in read() 360 inline uint16_t read16(const void *P, endianness E) { in read16() 363 inline uint32_t read32(const void *P, endianness E) { in read32() 366 inline uint64_t read64(const void *P, endianness E) { in read64() 370 template <endianness E> inline uint16_t read16(const void *P) { in read16() 373 template <endianness E> inline uint32_t read32(const void *P) { in read32() 376 template <endianness E> inline uint64_t read64(const void *P) { in read64() 380 inline uint16_t read16le(const void *P) { return read16<little>(P); } in read16le() 381 inline uint32_t read32le(const void *P) { return read32<little>(P); } in read32le() [all …]
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/ |
D | Endian.h | 354 template <typename T> inline T read(const void *P, endianness E) { in read() 358 template <typename T, endianness E> inline T read(const void *P) { in read() 362 inline uint16_t read16(const void *P, endianness E) { in read16() 365 inline uint32_t read32(const void *P, endianness E) { in read32() 368 inline uint64_t read64(const void *P, endianness E) { in read64() 372 template <endianness E> inline uint16_t read16(const void *P) { in read16() 375 template <endianness E> inline uint32_t read32(const void *P) { in read32() 378 template <endianness E> inline uint64_t read64(const void *P) { in read64() 382 inline uint16_t read16le(const void *P) { return read16<little>(P); } in read16le() 383 inline uint32_t read32le(const void *P) { return read32<little>(P); } in read32le() [all …]
|
/external/swiftshader/src/Renderer/ |
D | Point.cpp | 39 Point operator+(const Point &P, const Vector &v) in operator +() 44 Point operator-(const Point &P, const Vector &v) in operator -() 49 Vector operator-(const Point &P, const Point &Q) in operator -() 54 Point operator*(const Matrix &M, const Point &P) in operator *() 61 Point operator*(const Point &P, const Matrix &M) in operator *() 68 Point &operator*=(Point &P, const Matrix &M) in operator *=() 83 float Point::d(const Point &P, const Point &Q) in d() 88 float Point::d2(const Point &P, const Point &Q) in d2()
|
/external/llvm/include/llvm/Support/ |
D | Endian.h | 304 template <typename T, endianness E> inline T read(const void *P) { in read() 308 template <endianness E> inline uint16_t read16(const void *P) { in read16() 311 template <endianness E> inline uint32_t read32(const void *P) { in read32() 314 template <endianness E> inline uint64_t read64(const void *P) { in read64() 318 inline uint16_t read16le(const void *P) { return read16<little>(P); } in read16le() 319 inline uint32_t read32le(const void *P) { return read32<little>(P); } in read32le() 320 inline uint64_t read64le(const void *P) { return read64<little>(P); } in read64le() 321 inline uint16_t read16be(const void *P) { return read16<big>(P); } in read16be() 322 inline uint32_t read32be(const void *P) { return read32<big>(P); } in read32be() 323 inline uint64_t read64be(const void *P) { return read64<big>(P); } in read64be() [all …]
|
/external/swiftshader/third_party/llvm-subzero/include/llvm/Support/ |
D | Endian.h | 303 template <typename T, endianness E> inline T read(const void *P) { in read() 307 template <endianness E> inline uint16_t read16(const void *P) { in read16() 310 template <endianness E> inline uint32_t read32(const void *P) { in read32() 313 template <endianness E> inline uint64_t read64(const void *P) { in read64() 317 inline uint16_t read16le(const void *P) { return read16<little>(P); } in read16le() 318 inline uint32_t read32le(const void *P) { return read32<little>(P); } in read32le() 319 inline uint64_t read64le(const void *P) { return read64<little>(P); } in read64le() 320 inline uint16_t read16be(const void *P) { return read16<big>(P); } in read16be() 321 inline uint32_t read32be(const void *P) { return read32<big>(P); } in read32be() 322 inline uint64_t read64be(const void *P) { return read64<big>(P); } in read64be() [all …]
|
/external/libcxx/test/std/utilities/utility/pairs/pairs.spec/ |
D | comparison.pass.cpp | 29 typedef std::pair<int, short> P; in main() typedef 40 typedef std::pair<int, short> P; in main() typedef 51 typedef std::pair<int, short> P; in main() typedef 62 typedef std::pair<int, short> P; in main() typedef 73 typedef std::pair<int, short> P; in main() typedef 86 typedef std::pair<int, short> P; in main() typedef
|
/external/llvm-project/clang-tools-extra/clangd/ |
D | Protocol.cpp | 54 bool fromJSON(const llvm::json::Value &E, URIForFile &R, llvm::json::Path P) { in fromJSON() 89 llvm::json::Path P) { in fromJSON() 101 VersionedTextDocumentIdentifier &R, llvm::json::Path P) { in fromJSON() 108 llvm::json::Path P) { in fromJSON() 113 llvm::json::Value toJSON(const Position &P) { in toJSON() 120 llvm::raw_ostream &operator<<(llvm::raw_ostream &OS, const Position &P) { in operator <<() 124 bool fromJSON(const llvm::json::Value &Params, Range &R, llvm::json::Path P) { in fromJSON() 129 llvm::json::Value toJSON(const Range &P) { in toJSON() 140 llvm::json::Value toJSON(const Location &P) { in toJSON() 152 llvm::json::Path P) { in fromJSON() [all …]
|
/external/libcxx/test/std/numerics/rand/rand.dis/rand.dist.samp/rand.dist.samp.discrete/ |
D | param_ctor_init.pass.cpp | 26 typedef D::param_type P; in main() typedef 34 typedef D::param_type P; in main() typedef 42 typedef D::param_type P; in main() typedef 51 typedef D::param_type P; in main() typedef 60 typedef D::param_type P; in main() typedef 70 typedef D::param_type P; in main() typedef 80 typedef D::param_type P; in main() typedef
|
D | param_ctor_iterator.pass.cpp | 25 typedef D::param_type P; in main() typedef 34 typedef D::param_type P; in main() typedef 43 typedef D::param_type P; in main() typedef 53 typedef D::param_type P; in main() typedef 63 typedef D::param_type P; in main() typedef 74 typedef D::param_type P; in main() typedef 85 typedef D::param_type P; in main() typedef
|
/external/llvm-project/libcxx/test/std/utilities/utility/pairs/pairs.spec/ |
D | comparison.pass.cpp | 29 typedef std::pair<int, short> P; in main() typedef 40 typedef std::pair<int, short> P; in main() typedef 51 typedef std::pair<int, short> P; in main() typedef 62 typedef std::pair<int, short> P; in main() typedef 73 typedef std::pair<int, short> P; in main() typedef 86 typedef std::pair<int, short> P; in main() typedef
|
/external/llvm-project/libcxx/test/std/numerics/rand/rand.dis/rand.dist.samp/rand.dist.samp.discrete/ |
D | param_ctor_init.pass.cpp | 27 typedef D::param_type P; in main() typedef 35 typedef D::param_type P; in main() typedef 43 typedef D::param_type P; in main() typedef 52 typedef D::param_type P; in main() typedef 61 typedef D::param_type P; in main() typedef 71 typedef D::param_type P; in main() typedef 81 typedef D::param_type P; in main() typedef
|
D | param_ctor_iterator.pass.cpp | 26 typedef D::param_type P; in main() typedef 35 typedef D::param_type P; in main() typedef 44 typedef D::param_type P; in main() typedef 54 typedef D::param_type P; in main() typedef 64 typedef D::param_type P; in main() typedef 75 typedef D::param_type P; in main() typedef 86 typedef D::param_type P; in main() typedef
|
/external/libcxx/test/std/utilities/utility/pairs/pairs.pair/ |
D | default-sfinae.pass.cpp | 67 typedef std::pair<int, Tp> P; in test_not_is_default_constructible() typedef 72 typedef std::pair<Tp, int> P; in test_not_is_default_constructible() typedef 77 typedef std::pair<Tp, Tp> P; in test_not_is_default_constructible() typedef 87 typedef std::pair<int, Tp> P; in test_is_default_constructible() typedef 91 typedef std::pair<Tp, int> P; in test_is_default_constructible() typedef 95 typedef std::pair<Tp, Tp> P; in test_is_default_constructible() typedef 122 typedef std::pair<IllFormedDefault, int> P; in test_illformed_default() typedef 128 typedef std::pair<int, IllFormedDefault> P; in test_illformed_default() typedef 135 typedef std::pair<IllFormedDefault, IllFormedDefault> P; in test_illformed_default() typedef
|
/external/llvm-project/libcxx/test/std/utilities/utility/pairs/pairs.pair/ |
D | default-sfinae.pass.cpp | 66 typedef std::pair<int, Tp> P; in test_not_is_default_constructible() typedef 71 typedef std::pair<Tp, int> P; in test_not_is_default_constructible() typedef 76 typedef std::pair<Tp, Tp> P; in test_not_is_default_constructible() typedef 86 typedef std::pair<int, Tp> P; in test_is_default_constructible() typedef 90 typedef std::pair<Tp, int> P; in test_is_default_constructible() typedef 94 typedef std::pair<Tp, Tp> P; in test_is_default_constructible() typedef 121 typedef std::pair<IllFormedDefault, int> P; in test_illformed_default() typedef 127 typedef std::pair<int, IllFormedDefault> P; in test_illformed_default() typedef 134 typedef std::pair<IllFormedDefault, IllFormedDefault> P; in test_illformed_default() typedef
|
/external/libcxx/test/std/algorithms/alg.modifying.operations/alg.partitions/ |
D | stable_partition.pass.cpp | 41 typedef std::pair<int,int> P; in test() typedef 70 typedef std::pair<int,int> P; in test() typedef 110 typedef std::pair<int,int> P; in test() typedef 139 typedef std::pair<int,int> P; in test() typedef 168 typedef std::pair<int,int> P; in test() typedef 197 typedef std::pair<int,int> P; in test() typedef 226 typedef std::pair<int,int> P; in test() typedef 255 typedef std::pair<int,int> P; in test() typedef
|
/external/llvm-project/llvm/unittests/Support/ |
D | CachePruningTest.cpp | 16 auto P = parseCachePruningPolicy(""); in TEST() local 24 auto P = parseCachePruningPolicy("prune_interval=1s"); in TEST() local 36 auto P = parseCachePruningPolicy("prune_after=1s"); in TEST() local 42 auto P = parseCachePruningPolicy("cache_size=100%"); in TEST() local 49 auto P = parseCachePruningPolicy("cache_size_bytes=1"); in TEST() local 68 auto P = parseCachePruningPolicy("prune_after=1s:cache_size=50%"); in TEST() local
|
/external/llvm-project/libcxx/test/std/algorithms/alg.modifying.operations/alg.partitions/ |
D | stable_partition.pass.cpp | 40 typedef std::pair<int,int> P; in test() typedef 69 typedef std::pair<int,int> P; in test() typedef 109 typedef std::pair<int,int> P; in test() typedef 138 typedef std::pair<int,int> P; in test() typedef 167 typedef std::pair<int,int> P; in test() typedef 196 typedef std::pair<int,int> P; in test() typedef 225 typedef std::pair<int,int> P; in test() typedef 254 typedef std::pair<int,int> P; in test() typedef
|
/external/python/cpython3/Modules/_blake2/impl/ |
D | blake2b-ref.c | 85 static inline int blake2b_param_set_digest_length( blake2b_param *P, const uint8_t digest_length ) in blake2b_param_set_digest_length() 91 static inline int blake2b_param_set_fanout( blake2b_param *P, const uint8_t fanout ) in blake2b_param_set_fanout() 97 static inline int blake2b_param_set_max_depth( blake2b_param *P, const uint8_t depth ) in blake2b_param_set_max_depth() 103 static inline int blake2b_param_set_leaf_length( blake2b_param *P, const uint32_t leaf_length ) in blake2b_param_set_leaf_length() 109 static inline int blake2b_param_set_node_offset( blake2b_param *P, const uint64_t node_offset ) in blake2b_param_set_node_offset() 115 static inline int blake2b_param_set_node_depth( blake2b_param *P, const uint8_t node_depth ) in blake2b_param_set_node_depth() 121 static inline int blake2b_param_set_inner_length( blake2b_param *P, const uint8_t inner_length ) in blake2b_param_set_inner_length() 127 static inline int blake2b_param_set_salt( blake2b_param *P, const uint8_t salt[BLAKE2B_SALTBYTES] ) in blake2b_param_set_salt() 133 static inline int blake2b_param_set_personal( blake2b_param *P, const uint8_t personal[BLAKE2B_PERS… in blake2b_param_set_personal() 162 int blake2b_init_param( blake2b_state *S, const blake2b_param *P ) in blake2b_init_param() [all …]
|