Home
last modified time | relevance | path

Searched refs:Impl (Results 1 – 25 of 110) sorted by relevance

12345

/external/llvm/include/llvm/Analysis/
DTargetTransformInfo.h67 template <typename T> TargetTransformInfo(T Impl);
641 T Impl; variable
644 Model(T Impl) : Impl(std::move(Impl)) {} in Model() argument
648 return Impl.getDataLayout(); in getDataLayout()
652 return Impl.getOperationCost(Opcode, Ty, OpTy); in getOperationCost()
656 return Impl.getGEPCost(PointeeType, Ptr, Operands); in getGEPCost()
659 return Impl.getCallCost(FTy, NumArgs); in getCallCost()
662 return Impl.getCallCost(F, NumArgs); in getCallCost()
666 return Impl.getCallCost(F, Arguments); in getCallCost()
670 return Impl.getIntrinsicCost(IID, RetTy, ParamTys); in getIntrinsicCost()
[all …]
DTargetLibraryInfo.h184 const TargetLibraryInfoImpl *Impl; variable
187 explicit TargetLibraryInfo(const TargetLibraryInfoImpl &Impl) : Impl(&Impl) {} in TargetLibraryInfo() argument
190 TargetLibraryInfo(const TargetLibraryInfo &TLI) : Impl(TLI.Impl) {} in TargetLibraryInfo()
191 TargetLibraryInfo(TargetLibraryInfo &&TLI) : Impl(TLI.Impl) {} in TargetLibraryInfo()
193 Impl = TLI.Impl;
197 Impl = TLI.Impl;
206 return Impl->getLibFunc(funcName, F); in getLibFunc()
211 return Impl->getState(F) != TargetLibraryInfoImpl::Unavailable; in has()
214 return Impl->isFunctionVectorizable(F, VF); in isFunctionVectorizable()
217 return Impl->isFunctionVectorizable(F); in isFunctionVectorizable()
[all …]
/external/skia/src/gpu/batches/
DGrTInstanceBatch.h42 template <typename Impl>
47 typedef typename Impl::Geometry Geometry;
51 const char* name() const override { return Impl::Name(); } in name()
56 str.append(Impl::DumpInfo(fGeoData[i], i)); in dumpInfo()
67 Impl::InitInvariantOutputCoverage(coverage); in computePipelineOptimizations()
80 Impl::SetBounds(geo, &fBounds); in init()
85 Impl::UpdateBoundsAfterAppend(geo, &fBounds); in updateBoundsAfterAppend()
92 SkAutoTUnref<const GrGeometryProcessor> gp(Impl::CreateGP(this->seedGeometry(), in onPrepareDraws()
105 Impl::GetIndexBuffer(target->resourceProvider())); in onPrepareDraws()
108 indexBuffer, Impl::kVertsPerInstance, in onPrepareDraws()
[all …]
/external/opencv3/modules/core/src/
Dopengl.cpp290 class cv::ogl::Buffer::Impl class in cv::ogl::Buffer
296 class cv::ogl::Buffer::Impl class in cv::ogl::Buffer
299 static const Ptr<Impl>& empty();
301 Impl(GLuint bufId, bool autoRelease);
302 Impl(GLsizeiptr size, const GLvoid* data, GLenum target, bool autoRelease);
303 ~Impl();
328 Impl();
338 const Ptr<cv::ogl::Buffer::Impl>& cv::ogl::Buffer::Impl::empty() in empty()
340 static Ptr<Impl> p(new Impl); in empty()
344 cv::ogl::Buffer::Impl::Impl() : bufId_(0), autoRelease_(false) in Impl() function in cv::ogl::Buffer::Impl
[all …]
Dcuda_stream.cpp262 class cv::cuda::Stream::Impl class in cv::cuda::Stream
265 Impl(void* ptr = 0) in Impl() function in cv::cuda::Stream::Impl
279 class cv::cuda::Stream::Impl class in cv::cuda::Stream
285 Impl();
286 Impl(cudaStream_t stream);
288 ~Impl();
291 cv::cuda::Stream::Impl::Impl() : stream(0) in Impl() function in cv::cuda::Stream::Impl
298 cv::cuda::Stream::Impl::Impl(cudaStream_t stream_) : stream(stream_) in Impl() function in cv::cuda::Stream::Impl
303 cv::cuda::Stream::Impl::~Impl() in ~Impl()
374 Ptr<Stream::Impl> impl = makePtr<Stream::Impl>(stream); in getNullStream()
[all …]
/external/skia/src/core/
DSkRefDict.cpp13 struct SkRefDict::Impl { struct in SkRefDict
14 Impl* fNext; argument
30 Impl* rec = fImpl; in find()
45 Impl* rec = fImpl; in set()
46 Impl* prev = nullptr; in set()
72 rec = new Impl; in set()
81 Impl* rec = fImpl; in removeAll()
83 Impl* next = rec->fNext; in removeAll()
/external/clang/include/clang/Basic/
DVirtualFileSystem.h116 std::shared_ptr<detail::DirIterImpl> Impl; // Input iterator semantics on copy variable
119 directory_iterator(std::shared_ptr<detail::DirIterImpl> I) : Impl(I) { in directory_iterator()
120 assert(Impl.get() != nullptr && "requires non-null implementation"); in directory_iterator()
121 if (!Impl->CurrentEntry.isStatusKnown()) in directory_iterator()
122 Impl.reset(); // Normalize the end iterator to Impl == nullptr. in directory_iterator()
130 assert(Impl && "attempting to increment past end"); in increment()
131 EC = Impl->increment(); in increment()
132 if (EC || !Impl->CurrentEntry.isStatusKnown()) in increment()
133 Impl.reset(); // Normalize the end iterator to Impl == nullptr. in increment()
137 const Status &operator*() const { return Impl->CurrentEntry; }
[all …]
/external/opencv3/modules/cudacodec/src/
Dthread.cpp70 class cv::cudacodec::detail::Thread::Impl class in cv::cudacodec::detail::Thread
73 Impl(Thread::Func func, void* userData) in Impl() function in cv::cudacodec::detail::Thread::Impl
87 ~Impl() in ~Impl()
123 class cv::cudacodec::detail::Thread::Impl class in cv::cudacodec::detail::Thread
126 Impl(Thread::Func func, void* userData) in Impl() function in cv::cudacodec::detail::Thread::Impl
134 ~Impl() in ~Impl()
152 impl_(new Impl(func, userData)) in Thread()
/external/clang/include/clang/AST/
DASTUnresolvedSet.h89 mutable ASTUnresolvedSet Impl; variable
95 if (Impl.Decls.isLazy()) in get()
97 return Impl; in get()
100 void reserve(ASTContext &C, unsigned N) { Impl.reserve(C, N); } in reserve()
102 assert(Impl.empty() || Impl.Decls.isLazy()); in addLazyDecl()
103 Impl.Decls.setLazy(true); in addLazyDecl()
104 Impl.addDecl(C, reinterpret_cast<NamedDecl*>(ID << 2), AS); in addLazyDecl()
/external/gmock/include/gmock/
Dgmock-actions.h351 template <typename Impl>
354 explicit PolymorphicAction(const Impl& impl) : impl_(impl) {} in PolymorphicAction()
368 explicit MonomorphicImpl(const Impl& impl) : impl_(impl) {} in MonomorphicImpl()
375 Impl impl_;
380 Impl impl_;
399 template <typename Impl>
400 inline PolymorphicAction<Impl> MakePolymorphicAction(const Impl& impl) { in MakePolymorphicAction()
401 return PolymorphicAction<Impl>(impl); in MakePolymorphicAction()
474 return Action<F>(new Impl<F>(value_));
480 class Impl : public ActionInterface<F> {
[all …]
/external/google-breakpad/src/testing/include/gmock/
Dgmock-actions.h351 template <typename Impl>
354 explicit PolymorphicAction(const Impl& impl) : impl_(impl) {} in PolymorphicAction()
368 explicit MonomorphicImpl(const Impl& impl) : impl_(impl) {} in MonomorphicImpl()
375 Impl impl_;
380 Impl impl_;
399 template <typename Impl>
400 inline PolymorphicAction<Impl> MakePolymorphicAction(const Impl& impl) { in MakePolymorphicAction()
401 return PolymorphicAction<Impl>(impl); in MakePolymorphicAction()
474 return Action<F>(new Impl<F>(value_));
480 class Impl : public ActionInterface<F> {
[all …]
Dgmock-matchers.h316 template <class Impl>
319 explicit PolymorphicMatcher(const Impl& an_impl) : impl_(an_impl) {} in PolymorphicMatcher()
323 Impl& mutable_impl() { return impl_; } in mutable_impl()
327 const Impl& impl() const { return impl_; } in impl()
338 explicit MonomorphicImpl(const Impl& impl) : impl_(impl) {} in MonomorphicImpl()
353 const Impl impl_;
358 Impl impl_;
382 template <class Impl>
383 inline PolymorphicMatcher<Impl> MakePolymorphicMatcher(const Impl& impl) { in MakePolymorphicMatcher()
384 return PolymorphicMatcher<Impl>(impl); in MakePolymorphicMatcher()
[all …]
/external/v8/include/
Dv8-util.h42 typedef std::map<K, PersistentContainerValue> Impl; typedef
43 typedef typename Impl::iterator Iterator;
45 static bool Empty(Impl* impl) { return impl->empty(); } in Empty()
46 static size_t Size(Impl* impl) { return impl->size(); } in Size()
47 static void Swap(Impl& a, Impl& b) { std::swap(a, b); } // NOLINT in Swap()
48 static Iterator Begin(Impl* impl) { return impl->begin(); } in Begin()
49 static Iterator End(Impl* impl) { return impl->end(); } in End()
52 static PersistentContainerValue Set(Impl* impl, K key, in Set()
62 static PersistentContainerValue Get(Impl* impl, K key) { in Get()
67 static PersistentContainerValue Remove(Impl* impl, K key) { in Remove()
[all …]
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
DExplodedGraph.h399 ImplTy Impl; variable
404 Impl.insert(N); in ExplodedNodeSet()
410 if (N && !static_cast<ExplodedNode*>(N)->isSink()) Impl.insert(N); in Add()
416 unsigned size() const { return Impl.size(); } in size()
417 bool empty() const { return Impl.empty(); } in empty()
418 bool erase(ExplodedNode *N) { return Impl.erase(N); } in erase()
420 void clear() { Impl.clear(); } in clear()
424 Impl = S.Impl; in insert()
426 Impl.insert(S.begin(), S.end()); in insert()
429 inline iterator begin() { return Impl.begin(); } in begin()
[all …]
/external/clang/lib/ARCMigrate/
DTransformActions.cpp603 Impl = new TransformActionsImpl(capturedDiags, ctx, PP); in TransformActions()
607 delete static_cast<TransformActionsImpl*>(Impl); in ~TransformActions()
611 static_cast<TransformActionsImpl*>(Impl)->startTransaction(); in startTransaction()
615 return static_cast<TransformActionsImpl*>(Impl)->commitTransaction(); in commitTransaction()
619 static_cast<TransformActionsImpl*>(Impl)->abortTransaction(); in abortTransaction()
624 static_cast<TransformActionsImpl*>(Impl)->insert(loc, text); in insert()
629 static_cast<TransformActionsImpl*>(Impl)->insertAfterToken(loc, text); in insertAfterToken()
633 static_cast<TransformActionsImpl*>(Impl)->remove(range); in remove()
637 static_cast<TransformActionsImpl*>(Impl)->removeStmt(S); in removeStmt()
641 static_cast<TransformActionsImpl*>(Impl)->replace(range, text); in replace()
[all …]
/external/guava/guava-tests/benchmark/com/google/common/util/concurrent/
DFuturesCombineBenchmark.java37 enum Impl { enum in FuturesCombineBenchmark
76 @Param Impl impl;
85 Impl impl = this.impl;
100 Impl impl = this.impl;
110 Impl impl = this.impl;
125 Impl impl = this.impl;
/external/llvm/lib/ExecutionEngine/RuntimeDyld/
DRuntimeDyldMachO.h143 template <typename Impl>
146 Impl &impl() { return static_cast<Impl &>(*this); } in impl()
147 const Impl &impl() const { return static_cast<const Impl &>(*this); } in impl()
/external/clang/lib/AST/
DParentMap.cpp95 ParentMap::ParentMap(Stmt *S) : Impl(nullptr) { in ParentMap()
99 Impl = M; in ParentMap()
104 delete (MapTy*) Impl; in ~ParentMap()
109 BuildParentMap(*(MapTy*) Impl, S); in addStmt()
116 MapTy *M = reinterpret_cast<MapTy *>(Impl); in setParent()
121 MapTy* M = (MapTy*) Impl; in getParent()
/external/clang/test/SemaTemplate/
Dqualified-id.cpp23 class Impl { class
27 template <class T> class Magic : public Impl {
29 return Impl::foo(); in foo()
/external/llvm/lib/Support/
DCrashRecoveryContext.cpp98 CrashRecoveryContextImpl *CRCI = (CrashRecoveryContextImpl *) Impl; in ~CrashRecoveryContext()
319 assert(!Impl && "Crash recovery context already initialized!"); in RunSafely()
321 Impl = CRCI; in RunSafely()
333 CrashRecoveryContextImpl *CRCI = (CrashRecoveryContextImpl *) Impl; in HandleCrash()
339 CrashRecoveryContextImpl *CRC = (CrashRecoveryContextImpl *) Impl; in getBacktrace()
383 if (CrashRecoveryContextImpl *CRC = (CrashRecoveryContextImpl *)Impl) in RunSafelyOnThread()
/external/opencv3/modules/core/include/opencv2/core/
Docl.hpp229 struct Impl;
230 Impl* p;
258 struct Impl;
259 Impl* p;
275 struct Impl;
276 Impl* p;
297 struct Impl;
298 Impl* p;
529 struct Impl;
532 Impl* p;
[all …]
/external/conscrypt/src/main/java/org/conscrypt/
DFileClientSessionCache.java55 static class Impl implements SSLClientSessionCache { class in FileClientSessionCache
77 Impl(File directory) throws IOException { in Impl() method in FileClientSessionCache.Impl
315 static final Map<File, FileClientSessionCache.Impl> caches
316 = new HashMap<File, FileClientSessionCache.Impl>();
330 FileClientSessionCache.Impl cache = caches.get(directory); in usingDirectory()
332 cache = new FileClientSessionCache.Impl(directory); in usingDirectory()
/external/clang/include/clang/Analysis/
DCFG.h356 ImplTy Impl; variable
358 ElementList(BumpVectorContext &C) : Impl(C, 4) {} in ElementList()
366 void push_back(CFGElement e, BumpVectorContext &C) { Impl.push_back(e, C); } in push_back()
369 return Impl.insert(I, Cnt, E, C); in insert()
372 const_reference front() const { return Impl.back(); } in front()
373 const_reference back() const { return Impl.front(); } in back()
375 iterator begin() { return Impl.rbegin(); } in begin()
376 iterator end() { return Impl.rend(); } in end()
377 const_iterator begin() const { return Impl.rbegin(); } in begin()
378 const_iterator end() const { return Impl.rend(); } in end()
[all …]
/external/eigen/Eigen/src/Core/
DBlock.h106 …l<XprType, BlockRows, BlockCols, InnerPanel, typename internal::traits<XprType>::StorageKind> Impl;
109 typedef Impl Base;
115 inline Block(XprType& xpr, Index i) : Impl(xpr,i)
125 : Impl(xpr, a_startRow, a_startCol)
137 : Impl(xpr, a_startRow, a_startCol, blockRows, blockCols)
152 typedef internal::BlockImpl_dense<XprType, BlockRows, BlockCols, InnerPanel> Impl;
155 typedef Impl Base;
157 inline BlockImpl(XprType& xpr, Index i) : Impl(xpr,i) {}
158 …inline BlockImpl(XprType& xpr, Index a_startRow, Index a_startCol) : Impl(xpr, a_startRow, a_start…
160 : Impl(xpr, a_startRow, a_startCol, blockRows, blockCols) {}
/external/v8/src/base/
Dlogging.h59 if (std::string* _msg = ::v8::base::Check##name##Impl( \
112 V8_INLINE std::string* Check##NAME##Impl(Lhs const& lhs, Rhs const& rhs, \
116 V8_INLINE std::string* Check##NAME##Impl(int lhs, int rhs, \
120 extern template std::string* Check##NAME##Impl<float, float>( \
122 extern template std::string* Check##NAME##Impl<double, double>( \

12345