Home
last modified time | relevance | path

Searched defs:P (Results 1 – 25 of 1773) sorted by relevance

12345678910>>...71

/external/libcxx/test/libcxx/utilities/utility/pairs/pairs.pair/
Dtrivial_copy_move_ABI.pass.cpp87 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
Dnon_trivial_copy_move_ABI.pass.cpp92 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
Dassign_tuple_like.pass.cpp35 using P = std::pair<int, C>; in main() typedef
49 using P = std::pair<int, C>; in main() typedef
63 using P = std::pair<C, C>; in main() typedef
77 using P = std::pair<C, C>; in main() typedef
91 using P = std::pair<C, C>; in main() typedef
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Support/
DEndian.h340 template <typename T> inline T read(const void *P, endianness E) { in read()
344 template <typename T, endianness E> inline T read(const void *P) { in read()
348 inline uint16_t read16(const void *P, endianness E) { in read16()
351 inline uint32_t read32(const void *P, endianness E) { in read32()
354 inline uint64_t read64(const void *P, endianness E) { in read64()
358 template <endianness E> inline uint16_t read16(const void *P) { in read16()
361 template <endianness E> inline uint32_t read32(const void *P) { in read32()
364 template <endianness E> inline uint64_t read64(const void *P) { in read64()
368 inline uint16_t read16le(const void *P) { return read16<little>(P); } in read16le()
369 inline uint32_t read32le(const void *P) { return read32<little>(P); } in read32le()
[all …]
/external/swiftshader/src/Device/
DPoint.cpp39 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/swiftshader/src/Renderer/
DPoint.cpp39 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/libcxx/test/std/utilities/utility/pairs/pairs.spec/
Dcomparison.pass.cpp29 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/swiftshader/third_party/LLVM/include/llvm/Support/
DPointerLikeTypeTraits.h36 static inline void *getAsVoidPointer(T* P) { return P; } in getAsVoidPointer()
37 static inline T *getFromVoidPointer(void *P) { in getFromVoidPointer()
56 static inline const void *getAsVoidPointer(const T* P) { in getAsVoidPointer()
59 static inline const T *getFromVoidPointer(const void *P) { in getFromVoidPointer()
69 static inline void *getAsVoidPointer(uintptr_t P) { in getAsVoidPointer()
72 static inline uintptr_t getFromVoidPointer(void *P) { in getFromVoidPointer()
DPassNameParser.h57 virtual bool ignorablePassImpl(const PassInfo *P) const { return false; } in ignorablePassImpl()
59 inline bool ignorablePass(const PassInfo *P) const { in ignorablePass()
68 virtual void passRegistered(const PassInfo *P) { in passRegistered()
77 virtual void passEnumerate(const PassInfo *P) { passRegistered(P); } in passEnumerate()
108 bool ignorablePassImpl(const PassInfo *P) const { return !filter(*P); } in ignorablePassImpl()
/external/libcxx/test/std/numerics/rand/rand.dis/rand.dist.samp/rand.dist.samp.discrete/
Dparam_ctor_init.pass.cpp26 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
Dparam_ctor_iterator.pass.cpp25 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/swiftshader/third_party/llvm-subzero/include/llvm/Support/
DEndian.h303 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/llvm/include/llvm/Support/
DEndian.h304 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/libcxx/test/std/utilities/utility/pairs/pairs.pair/
Ddefault-sfinae.pass.cpp67 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/swiftshader/third_party/llvm-7.0/llvm/unittests/Support/
DCachePruningTest.cpp17 auto P = parseCachePruningPolicy(""); in TEST() local
25 auto P = parseCachePruningPolicy("prune_interval=1s"); in TEST() local
37 auto P = parseCachePruningPolicy("prune_after=1s"); in TEST() local
43 auto P = parseCachePruningPolicy("cache_size=100%"); in TEST() local
50 auto P = parseCachePruningPolicy("cache_size_bytes=1"); in TEST() local
69 auto P = parseCachePruningPolicy("prune_after=1s:cache_size=50%"); in TEST() local
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/IR/
DOptBisect.h36 virtual bool shouldRunPass(const Pass *P, const Module &U) { return true; } in shouldRunPass()
37 virtual bool shouldRunPass(const Pass *P, const Function &U) {return true; } in shouldRunPass()
38 virtual bool shouldRunPass(const Pass *P, const BasicBlock &U) { return true; } in shouldRunPass()
39 virtual bool shouldRunPass(const Pass *P, const Region &U) { return true; } in shouldRunPass()
40 virtual bool shouldRunPass(const Pass *P, const Loop &U) { return true; } in shouldRunPass()
41 virtual bool shouldRunPass(const Pass *P, const CallGraphSCC &U) { return true; } in shouldRunPass()
DLegacyPassNameParser.h58 virtual bool ignorablePassImpl(const PassInfo *P) const { return false; } in ignorablePassImpl()
60 inline bool ignorablePass(const PassInfo *P) const { in ignorablePass()
69 void passRegistered(const PassInfo *P) override { in passRegistered()
78 void passEnumerate(const PassInfo *P) override { passRegistered(P); } in passEnumerate()
108 bool ignorablePassImpl(const PassInfo *P) const override { in ignorablePassImpl()
/external/llvm/include/llvm/IR/
DLegacyPassNameParser.h58 virtual bool ignorablePassImpl(const PassInfo *P) const { return false; } in ignorablePassImpl()
60 inline bool ignorablePass(const PassInfo *P) const { in ignorablePass()
69 void passRegistered(const PassInfo *P) override { in passRegistered()
78 void passEnumerate(const PassInfo *P) override { passRegistered(P); } in passEnumerate()
108 bool ignorablePassImpl(const PassInfo *P) const override { in ignorablePassImpl()
/external/libcxx/test/std/algorithms/alg.modifying.operations/alg.partitions/
Dstable_partition.pass.cpp41 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/libcxx/test/std/containers/unord/unord.multiset/
Deq.pass.cpp31 typedef int P; in main() typedef
53 typedef int P; in main() typedef
75 typedef int P; in main() typedef
106 typedef int P; in main() typedef
129 typedef int P; in main() typedef
152 typedef int P; in main() typedef
/external/libcxx/test/std/containers/unord/unord.set/
Deq.pass.cpp31 typedef int P; in main() typedef
50 typedef int P; in main() typedef
69 typedef int P; in main() typedef
96 typedef int P; in main() typedef
115 typedef int P; in main() typedef
134 typedef int P; in main() typedef
/external/libcxx/test/std/containers/unord/unord.map/
Deq.pass.cpp32 typedef std::pair<int, std::string> P; in main() typedef
51 typedef std::pair<int, std::string> P; in main() typedef
70 typedef std::pair<int, std::string> P; in main() typedef
98 typedef std::pair<int, std::string> P; in main() typedef
118 typedef std::pair<int, std::string> P; in main() typedef
138 typedef std::pair<int, std::string> P; in main() typedef
/external/libcxx/test/std/containers/unord/unord.multimap/
Deq.pass.cpp32 typedef std::pair<int, std::string> P; in main() typedef
54 typedef std::pair<int, std::string> P; in main() typedef
76 typedef std::pair<int, std::string> P; in main() typedef
107 typedef std::pair<int, std::string> P; in main() typedef
130 typedef std::pair<int, std::string> P; in main() typedef
153 typedef std::pair<int, std::string> P; in main() typedef
/external/libcxx/test/std/utilities/utility/pairs/pair.astuple/
Dtuple_element.pass.cpp24 typedef std::pair<T1, T2> P; in test() typedef
31 typedef std::pair<T1, T2> const P; in test() typedef
38 typedef std::pair<T1, T2> volatile P; in test() typedef
45 typedef std::pair<T1, T2> const volatile P; in test() typedef
/external/harfbuzz_ng/src/
Dhb-atomic.hh64 #define hb_atomic_ptr_impl_set_relaxed(P, V) __atomic_store_n ((P), (V), __ATOMIC_RELAXED) argument
65 #define hb_atomic_ptr_impl_get_relaxed(P) __atomic_load_n ((P), __ATOMIC_RELAXED) argument
66 #define hb_atomic_ptr_impl_get(P) __atomic_load_n ((P), __ATOMIC_ACQUIRE) argument
68 _hb_atomic_ptr_impl_cmplexch (const void **P, const void *O_, const void *N) in _hb_atomic_ptr_impl_cmplexch()
73 #define hb_atomic_ptr_impl_cmpexch(P,O,N) _hb_atomic_ptr_impl_cmplexch ((const void **) (P), (O), (… argument
91 #define hb_atomic_ptr_impl_set_relaxed(P, V) (reinterpret_cast<std::atomic<void*> *> (P)->store ((V… argument
92 #define hb_atomic_ptr_impl_get_relaxed(P) (reinterpret_cast<std::atomic<void*> *> (P)->load (std::m… argument
93 #define hb_atomic_ptr_impl_get(P) (reinterpret_cast<std::atomic<void*> *> (P)->load (std::memory_o… argument
95 _hb_atomic_ptr_impl_cmplexch (const void **P, const void *O_, const void *N) in _hb_atomic_ptr_impl_cmplexch()
100 #define hb_atomic_ptr_impl_cmpexch(P,O,N) _hb_atomic_ptr_impl_cmplexch ((const void **) (P), (O), (… argument
[all …]

12345678910>>...71