Home
last modified time | relevance | path

Searched refs:PtrType (Results 1 – 25 of 56) sorted by relevance

123

/external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
DSmallPtrSet.h334 template <typename PtrType>
336 typedef PointerLikeTypeTraits<PtrType> PtrTraits;
349 typedef SmallPtrSetIterator<PtrType> iterator;
350 typedef SmallPtrSetIterator<PtrType> const_iterator;
358 std::pair<iterator, bool> insert(PtrType Ptr) {
365 bool erase(PtrType Ptr) {
370 size_type count(PtrType Ptr) const {
380 void insert(std::initializer_list<PtrType> IL) {
410 template<class PtrType, unsigned SmallSize>
411 class SmallPtrSet : public SmallPtrSetImpl<PtrType> {
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ADT/
DSmallPtrSet.h343 template <typename PtrType>
345 using ConstPtrType = typename add_const_past_pointer<PtrType>::type;
346 using PtrTraits = PointerLikeTypeTraits<PtrType>;
360 using iterator = SmallPtrSetIterator<PtrType>;
361 using const_iterator = SmallPtrSetIterator<PtrType>;
363 using value_type = PtrType;
371 std::pair<iterator, bool> insert(PtrType Ptr) {
378 bool erase(PtrType Ptr) {
393 void insert(std::initializer_list<PtrType> IL) {
417 template<class PtrType, unsigned SmallSize>
[all …]
/external/llvm/include/llvm/ADT/
DSmallPtrSet.h293 template <typename PtrType>
295 typedef PointerLikeTypeTraits<PtrType> PtrTraits;
310 typedef SmallPtrSetIterator<PtrType> iterator;
311 typedef SmallPtrSetIterator<PtrType> const_iterator;
317 std::pair<iterator, bool> insert(PtrType Ptr) {
324 bool erase(PtrType Ptr) {
329 size_type count(PtrType Ptr) const {
352 template<class PtrType, unsigned SmallSize>
353 class SmallPtrSet : public SmallPtrSetImpl<PtrType> {
359 typedef SmallPtrSetImpl<PtrType> BaseT;
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/test/DebugInfo/COFF/
Dtypes-ptr-to-member.ll31 ; CHECK: PtrType: Near64 (0xC)
45 ; CHECK: PtrType: Near64 (0xC)
59 ; CHECK: PtrType: Near64 (0xC)
73 ; CHECK: PtrType: Near64 (0xC)
90 ; CHECK: PtrType: Near64 (0xC)
104 ; CHECK: PtrType: Near64 (0xC)
118 ; CHECK: PtrType: Near64 (0xC)
132 ; CHECK: PtrType: Near64 (0xC)
148 ; CHECK: PtrType: Near64 (0xC)
164 ; CHECK: PtrType: Near64 (0xC)
Dtype-quals.ll56 ; CHECK: PtrType: Near64 (0xC)
103 ; CHECK: PtrType: Near64 (0xC)
116 ; CHECK: PtrType: Near64 (0xC)
129 ; CHECK: PtrType: Near64 (0xC)
174 ; CHECK: PtrType: Near64 (0xC)
187 ; CHECK: PtrType: Near64 (0xC)
256 ; CHECK: PtrType: Near64 (0xC)
317 ; CHECK: PtrType: Near64 (0xC)
332 ; CHECK: PtrType: Near64 (0xC)
Dtypes-basic.ll73 ; CHECK: PtrType: Near64 (0xC)
96 ; CHECK: PtrType: Near64 (0xC)
109 ; CHECK: PtrType: Near64 (0xC)
174 ; CHECK: PtrType: Near64 (0xC)
194 ; CHECK: PtrType: Near64 (0xC)
Ddefer-complete-type.ll34 ; CHECK: PtrType: Near64 (0xC)
76 ; CHECK: PtrType: Near64 (0xC)
/external/llvm/test/DebugInfo/COFF/
Dtypes-ptr-to-member.ll31 ; CHECK: PtrType: Near64 (0xC)
45 ; CHECK: PtrType: Near64 (0xC)
59 ; CHECK: PtrType: Near64 (0xC)
73 ; CHECK: PtrType: Near64 (0xC)
90 ; CHECK: PtrType: Near64 (0xC)
104 ; CHECK: PtrType: Near64 (0xC)
118 ; CHECK: PtrType: Near64 (0xC)
132 ; CHECK: PtrType: Near64 (0xC)
148 ; CHECK: PtrType: Near64 (0xC)
164 ; CHECK: PtrType: Near64 (0xC)
Dtypes-basic.ll73 ; CHECK: PtrType: Near64 (0xC)
96 ; CHECK: PtrType: Near64 (0xC)
109 ; CHECK: PtrType: Near64 (0xC)
174 ; CHECK: PtrType: Near64 (0xC)
194 ; CHECK: PtrType: Near64 (0xC)
Ddefer-complete-type.ll34 ; CHECK: PtrType: Near64 (0xC)
76 ; CHECK: PtrType: Near64 (0xC)
/external/llvm/unittests/Analysis/
DMixedTBAATest.cpp42 auto PtrType = Type::getInt32PtrTy(C); in TEST_F() local
44 auto *Addr = ConstantPointerNull::get(PtrType); in TEST_F()
DAliasAnalysisTest.cpp173 auto PtrType = Type::getInt32PtrTy(C); in TEST_F() local
175 auto *Addr = ConstantPointerNull::get(PtrType); in TEST_F()
180 auto *VAArg1 = new VAArgInst(Addr, PtrType, "vaarg", BB); in TEST_F()
/external/clang/test/CodeCompletion/
Dobjc-message.mm26 typedef typename RemovePointer<T>::Type* PtrType; field
28 explicit operator PtrType() const;
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/Analysis/
DTBAATest.cpp40 auto *PtrType = Type::getInt32PtrTy(C); in getFunctionWithSingleStore() local
42 ConstantPointerNull::get(PtrType), BB); in getFunctionWithSingleStore()
DAliasAnalysisTest.cpp173 auto PtrType = Type::getInt32PtrTy(C); in TEST_F() local
175 auto *Addr = ConstantPointerNull::get(PtrType); in TEST_F()
180 auto *VAArg1 = new VAArgInst(Addr, PtrType, "vaarg", BB); in TEST_F()
/external/clang/test/SemaObjCXX/
Ddeduction.mm17 typedef ValueType* PtrType;
18 RetainPtr(PtrType ptr);
/external/google-benchmark/src/
Dbenchmark.cc295 typedef std::unique_ptr<BenchmarkReporter> PtrType; in CreateReporter() typedef
297 return PtrType(new ConsoleReporter(output_opts)); in CreateReporter()
299 return PtrType(new JSONReporter); in CreateReporter()
301 return PtrType(new CSVReporter); in CreateReporter()
/external/libcxx/utils/google-benchmark/src/
Dbenchmark.cc294 typedef std::unique_ptr<BenchmarkReporter> PtrType; in CreateReporter() typedef
296 return PtrType(new ConsoleReporter(output_opts)); in CreateReporter()
298 return PtrType(new JSONReporter); in CreateReporter()
300 return PtrType(new CSVReporter); in CreateReporter()
/external/llvm/include/llvm/Transforms/IPO/
DInlinerPass.h28 template <class PtrType, unsigned SmallSize> class SmallPtrSet;
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AMDGPU/
DAMDGPUCallLowering.cpp54 LLT PtrType = getLLTForType(*PtrTy, DL); in lowerParameterPtr() local
55 unsigned DstReg = MRI.createGenericVirtualRegister(PtrType); in lowerParameterPtr()
/external/tensorflow/tensorflow/core/common_runtime/
Dprocess_state.cc52 ProcessState::MemDesc ProcessState::PtrType(const void* ptr) { in PtrType() function in tensorflow::ProcessState
Dprocess_state.h64 MemDesc PtrType(const void* ptr);
/external/eigen/unsupported/Eigen/CXX11/src/Tensor/
DTensorSyclExprConstructor.h30 template <typename PtrType, size_t N, typename... Params>
32 PtrType expr;
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/IR/
DIRBuilder.h2026 auto *PtrType = Ptr->getType(); in CreateLaunderInvariantGroup() local
2027 auto *Int8PtrTy = getInt8PtrTy(PtrType->getPointerAddressSpace()); in CreateLaunderInvariantGroup()
2028 if (PtrType != Int8PtrTy) in CreateLaunderInvariantGroup()
2041 if (PtrType != Int8PtrTy) in CreateLaunderInvariantGroup()
2042 return CreateBitCast(Fn, PtrType); in CreateLaunderInvariantGroup()
2054 auto *PtrType = Ptr->getType(); in CreateStripInvariantGroup() local
2055 auto *Int8PtrTy = getInt8PtrTy(PtrType->getPointerAddressSpace()); in CreateStripInvariantGroup()
2056 if (PtrType != Int8PtrTy) in CreateStripInvariantGroup()
2069 if (PtrType != Int8PtrTy) in CreateStripInvariantGroup()
2070 return CreateBitCast(Fn, PtrType); in CreateStripInvariantGroup()
/external/eigen/Eigen/src/Core/
DDenseStorage.h67 template<typename PtrType>
68 …EIGEN_ALWAYS_INLINE PtrType eigen_unaligned_array_assert_workaround_gcc47(PtrType array) { return … in eigen_unaligned_array_assert_workaround_gcc47()

123