Searched defs:Pool (Results 1 - 25 of 57) sorted by relevance

123

/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)
H A Dpool.py66 class Pool(): class in inherits:
H A Dexecution.py36 from pool import Pool namespace
335 pool = Pool(jobs)
/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/toolchain-utils/bestflags/
H A Dgeneration.py57 def Pool(self): member in class:Generation
/external/clang/tools/libclang/
H A DCXString.h81 std::vector<CXStringBuf *> Pool; member in class:clang::cxstring::CXStringPool
/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/lib/CodeGen/AsmPrinter/
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/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
/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/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/mesa3d/src/gallium/state_trackers/nine/
H A Dresource9.c41 D3DPOOL Pool,
48 "Type=%d Pool=%d Usage=%d\n",
50 Type, Pool, Usage);
96 This->pool = Pool;
36 NineResource9_ctor( struct NineResource9 *This, struct NineUnknownParams *pParams, struct pipe_resource *initResource, BOOL Allocate, D3DRESOURCETYPE Type, D3DPOOL Pool, DWORD Usage) argument
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...]
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 Dvolumetexture9.c36 D3DPOOL Pool,
47 "Usage=%d Format=%d Pool=%d pSharedHandle=%p\n",
49 Usage, Format, Pool, pSharedHandle);
53 /* user_assert(!pSharedHandle || Pool == D3DPOOL_DEFAULT, D3DERR_INVALIDCALL); */
63 Pool == D3DPOOL_SCRATCH);
108 D3DRTYPE_VOLUMETEXTURE, Format, Pool, Usage);
115 voldesc.Pool = Pool;
283 D3DPOOL Pool,
289 Usage, Format, Pool, pSharedHandl
31 NineVolumeTexture9_ctor( struct NineVolumeTexture9 *This, struct NineUnknownParams *pParams, UINT Width, UINT Height, UINT Depth, UINT Levels, DWORD Usage, D3DFORMAT Format, D3DPOOL Pool, HANDLE *pSharedHandle ) argument
279 NineVolumeTexture9_new( struct NineDevice9 *pDevice, UINT Width, UINT Height, UINT Depth, UINT Levels, DWORD Usage, D3DFORMAT Format, D3DPOOL Pool, struct NineVolumeTexture9 **ppOut, HANDLE *pSharedHandle ) argument
[all...]
/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/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/sanitizers/
H A Dsancov_merger.py32 from multiprocessing import Pool, cpu_count namespace
121 pool = Pool(CPUS)
H A Dsancov_formatter.py50 from multiprocessing import Pool, cpu_count namespace
222 pool = Pool(CPUS)
353 pool = Pool(CPUS)
/external/autotest/site_utils/lxc/container_pool/
H A Dpool.py43 class Pool(object): class in inherits:object
46 Containers are created using a factory that is passed to the Pool. A pool
48 Pool will attempt to maintain. Whenever the number of containers falls
49 below the given size, the Pool will start creating new containers to
56 Pool.errors). It is the client's responsibility to periodically check and
61 """Creates a new Pool instance.
67 @param size: The size of the Pool. The Pool attempts to keep this many
74 logging.debug('Pool.__init__ called. Size: %d', size)
96 logging.info('Pool
[all...]
/external/python/cpython2/Lib/multiprocessing/
H A D__init__.py51 'Event', 'Queue', 'JoinableQueue', 'Pool', 'Value', 'Array',
227 def Pool(processes=None, initializer=None, initargs=(), maxtasksperchild=None): function
231 from multiprocessing.pool import Pool namespace
232 return Pool(processes, initializer, initargs, maxtasksperchild)
/external/python/cpython2/Lib/multiprocessing/dummy/
H A D__init__.py38 'Event', 'Queue', 'Manager', 'Pipe', 'Pool', 'JoinableQueue'
149 def Pool(processes=None, initializer=None, initargs=()): function
/external/python/cpython3/Lib/multiprocessing/dummy/
H A D__init__.py13 'Event', 'Barrier', 'Queue', 'Manager', 'Pipe', 'Pool', 'JoinableQueue'
115 def Pool(processes=None, initializer=None, initargs=()): function

Completed in 625 milliseconds

123