Searched refs:Pool (Results 1 - 25 of 150) sorted by relevance

123456

/external/llvm/lib/Target/NVPTX/
H A DManagedStringPool.h1 //===-- ManagedStringPool.h - Managed String Pool ---------------*- C++ -*-===//
27 SmallVector<std::string *, 8> Pool; member in class:llvm::ManagedStringPool
32 SmallVectorImpl<std::string *>::iterator Current = Pool.begin();
33 while (Current != Pool.end()) {
41 Pool.push_back(Str);
/external/llvm/lib/CodeGen/AsmPrinter/
H A DAddressPool.cpp22 Pool.insert(std::make_pair(Sym, AddressPoolEntry(Pool.size(), TLS)));
28 if (Pool.empty())
35 SmallVector<const MCExpr *, 64> Entries(Pool.size());
37 for (const auto &I : Pool)
H A DDwarfStringPool.cpp19 : Pool(A), Prefix(Prefix),
24 auto I = Pool.insert(std::make_pair(Str, EntryTy()));
27 Entry.Index = Pool.size() - 1;
39 if (Pool.empty())
47 SmallVector<const StringMapEntry<EntryTy> *, 64> Entries(Pool.size());
49 for (const auto &E : Pool)
H A DAddressPool.h28 DenseMap<const MCSymbol *, AddressPoolEntry> Pool; member in class:llvm::AddressPool
45 bool isEmpty() { return Pool.empty(); }
H A DDwarfStringPool.h30 StringMap<EntryTy, BumpPtrAllocator &> Pool; member in class:llvm::DwarfStringPool
43 bool empty() const { return Pool.empty(); }
/external/llvm/unittests/Support/
H A DThreadPool.cpp93 ThreadPool Pool; local
95 Pool.async([this, &checked_in, i] {
102 Pool.wait();
113 ThreadPool Pool; local
115 Pool.async(TestFunc, std::ref(checked_in), i);
117 Pool.wait();
123 ThreadPool Pool; local
125 Pool.async([this, &i] {
129 Pool.async([&i] { ++i; });
132 Pool
157 ThreadPool Pool; local
[all...]
/external/tensorflow/tensorflow/compiler/xla/service/
H A Dpool.h27 // Pool of values, which are created as needed and destroyed when the `Pool` is
30 class Pool { class in namespace:xla
35 Pool<T>* pool;
38 // A pointer to a taken element of a `Pool` which returns it to the pool on
42 // Constructs a `Pool` with given factory function, which need not be
44 explicit Pool(std::function<std::unique_ptr<T>()> factory) function in class:xla::Pool
47 explicit Pool() : Pool([]() { return MakeUnique<T>(); }) {} function in class:xla::Pool
H A Dpool_test.cc26 Pool<int> pool;
H A Dservice_executable_run_options.h31 std::function<StatusOr<Pool<perftools::gputools::Stream>::SmartPtr>(int)>;
54 StatusOr<Pool<perftools::gputools::Stream>::SmartPtr> BorrowStream(
/external/toolchain-utils/bestflags/
H A Dsteering.py55 for task in [task for task in generation.Pool() if task not in cache]:
106 assert new_generation.Pool()
110 for new_task in new_generation.Pool():
H A Diterative_elimination.py112 for curr in [curr for curr in self.Pool() if curr != parent]:
135 for curr in [curr for curr in self.Pool() if curr != parent_task]:
174 parent = next(task for task in self.Pool() if task == self._parent_task)
/external/v8/tools/testrunner/local/
H A Dpool_unittest.py8 from pool import Pool namespace
18 pool = Pool(3)
25 pool = Pool(3)
36 pool = Pool(3)
/external/chromium-trace/catapult/common/py_utils/py_utils/refactor/
H A D__init__.py28 return multiprocessing.Pool().map(transform, file_paths)
/external/llvm/lib/Support/
H A DStringPool.cpp31 S->getValue().Pool = this;
/external/swiftshader/third_party/LLVM/lib/Support/
H A DStringPool.cpp31 S->getValue().Pool = this;
/external/mesa3d/src/gallium/state_trackers/nine/
H A Dtexture9.c46 D3DPOOL Pool,
58 DBG("(%p) Width=%u Height=%u Levels=%u Usage=%s Format=%s Pool=%s "
61 d3dformat_to_string(Format), nine_D3DPOOL_to_str(Pool), pSharedHandle);
71 (Pool == D3DPOOL_SYSTEMMEM && Levels == 1) ||
72 Pool == D3DPOOL_DEFAULT, D3DERR_INVALIDCALL);
75 (Pool != D3DPOOL_SYSTEMMEM && Pool != D3DPOOL_SCRATCH && Levels <= 1),
93 if (pSharedHandle && Pool == D3DPOOL_DEFAULT) {
110 Pool == D3DPOOL_SCRATCH);
151 if (pSharedHandle && *pSharedHandle) { /* Pool
41 NineTexture9_ctor( struct NineTexture9 *This, struct NineUnknownParams *pParams, UINT Width, UINT Height, UINT Levels, DWORD Usage, D3DFORMAT Format, D3DPOOL Pool, HANDLE *pSharedHandle ) argument
381 NineTexture9_new( struct NineDevice9 *pDevice, UINT Width, UINT Height, UINT Levels, DWORD Usage, D3DFORMAT Format, D3DPOOL Pool, struct NineTexture9 **ppOut, HANDLE *pSharedHandle ) argument
[all...]
H A Dcubetexture9.c39 D3DPOOL Pool,
52 "Format=%d Pool=%d pSharedHandle=%p\n",
54 Format, Pool, pSharedHandle);
58 /* user_assert(!pSharedHandle || Pool == D3DPOOL_DEFAULT, D3DERR_INVALIDCALL); */
62 (Pool != D3DPOOL_SYSTEMMEM && Levels <= 1), D3DERR_INVALIDCALL);
69 Pool == D3DPOOL_SCRATCH);
109 if (Pool != D3DPOOL_DEFAULT) {
124 Format, Pool, Usage);
136 sfdesc.Pool = Pool;
34 NineCubeTexture9_ctor( struct NineCubeTexture9 *This, struct NineUnknownParams *pParams, UINT EdgeLength, UINT Levels, DWORD Usage, D3DFORMAT Format, D3DPOOL Pool, HANDLE *pSharedHandle ) argument
338 NineCubeTexture9_new( struct NineDevice9 *pDevice, UINT EdgeLength, UINT Levels, DWORD Usage, D3DFORMAT Format, D3DPOOL Pool, struct NineCubeTexture9 **ppOut, HANDLE *pSharedHandle ) argument
[all...]
/external/clang/tools/libclang/
H A DCXString.cpp130 for (std::vector<CXStringBuf *>::iterator I = Pool.begin(), E = Pool.end();
137 if (Pool.empty())
140 CXStringBuf *Buf = Pool.back();
142 Pool.pop_back();
151 TU->StringPool->Pool.push_back(this);
/external/llvm/include/llvm/Support/
H A DStringPool.h15 // StringPool Pool;
16 // PooledStringPtr Str = Pool.intern("wakka wakka");
46 StringPool *Pool; ///< So the string can remove itself. member in struct:llvm::StringPool::PooledString
50 PooledString() : Pool(nullptr), Refcount(0) { }
106 S->getValue().Pool->InternTable.remove(S);
/external/swiftshader/third_party/LLVM/include/llvm/Support/
H A DStringPool.h15 // StringPool Pool;
16 // PooledStringPtr Str = Pool.intern("wakka wakka");
47 StringPool *Pool; ///< So the string can remove itself. member in struct:llvm::StringPool::PooledString
51 PooledString() : Pool(0), Refcount(0) { }
107 S->getValue().Pool->InternTable.remove(S);
/external/v8/tools/gcmole/
H A Dparallel.py38 pool = multiprocessing.Pool(processes=processes)
/external/llvm/include/llvm/DebugInfo/PDB/Raw/
H A DMappedBlockStream.h48 llvm::BumpPtrAllocator &getAllocator() { return Pool; }
61 mutable llvm::BumpPtrAllocator Pool; member in class:llvm::pdb::MappedBlockStream
/external/llvm/tools/llvm-dwp/
H A DDWPStringPool.h35 DenseMap<const char *, uint32_t, CStrDenseMapInfo> Pool; member in class:llvm::DWPStringPool
44 auto Pair = Pool.insert(std::make_pair(Str, Offset));
/external/universal-tween-engine/java/api/src/aurelienribon/tweenengine/
H A DPool.java9 abstract class Pool<T> { class
15 public Pool(int initCapacity, Callback<T> callback) { method in class:Pool
/external/llvm/include/llvm/CodeGen/PBQP/
H A DCostAllocator.h38 PoolEntry(ValuePool &Pool, ValueKeyT Value) argument
39 : Pool(Pool), Value(std::move(Value)) {}
40 ~PoolEntry() { Pool.removeEntry(this); }
43 ValuePool &Pool; member in class:llvm::PBQP::ValuePool::PoolEntry

Completed in 702 milliseconds

123456