HomeSort by relevance Sort by last modified time
    Searched refs:Pool (Results 126 - 150 of 219) sorted by null

1 2 3 4 56 7 8 9

  /external/libgdx/backends/gdx-backend-robovm/src/com/badlogic/gdx/backends/iosrobovm/
IOSInput.java 55 import com.badlogic.gdx.utils.Pool;
95 Pool<TouchEvent> touchEventPool = new Pool<TouchEvent>() {
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/
ModelInstance.java 31 import com.badlogic.gdx.utils.Pool;
326 * Renderables are obtained from the provided pool. The resulting array can be rendered via a {@link ModelBatch}.
329 * @param pool the pool to obtain Renderables from */
330 public void getRenderables (Array<Renderable> renderables, Pool<Renderable> pool) {
332 getRenderables(node, renderables, pool);
358 protected void getRenderables (Node node, Array<Renderable> renderables, Pool<Renderable> pool) {
361 if (nodePart.enabled) renderables.add(getRenderable(pool.obtain(), node, nodePart));
    [all...]
ModelCache.java 32 import com.badlogic.gdx.utils.Pool;
43 * specified amount of vertices and indices. Call the {@link #flush()} method to flush the pool ant release all previously
342 public void getRenderables (Array<Renderable> renderables, Pool<Renderable> pool) {
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
dxvahd.h 399 STDMETHOD_(HRESULT,CreateVideoSurface)(THIS_ UINT Width,UINT Height,D3DFORMAT Format,D3DPOOL Pool,DWORD Usage,DXVAHD_SURFACE_TYPE Type,UINT NumSurfaces,IDirect3DSurface9 **ppSurfaces,HANDLE *pSharedHandle) PURE;
414 #define IDXVAHD_Device_CreateVideoSurface(This,Width,Height,Format,Pool,Usage,Type,NumSurfaces,ppSurfaces,pSharedHandle) (This)->lpVtbl->CreateVideoSurface(This,Width,Height,Format,Pool,Usage,Type,NumSurfaces,ppSurfaces,pSharedHandle)
d3d8types.h     [all...]
d3d9types.h     [all...]
  /external/mesa3d/src/gallium/drivers/r300/compiler/
radeon_pair_schedule.c 489 rc_list_add(&s->PendingTEX, rc_list(&s->C->Pool, readytex));
1142 rc_list_add(&writer->TexReaders, rc_list(&s->C->Pool, reader));
    [all...]
r500_fragprog_emit.c 466 memory_pool_array_reserve(&s->C->Pool, struct r500_loop_info,
481 memory_pool_array_reserve(&s->C->Pool, int, loop->Brks,
496 memory_pool_array_reserve(&s->C->Pool, int, loop->Conts,
546 memory_pool_array_reserve(&s->C->Pool, struct branch_info,
  /cts/tools/utils/
buildCts.py 28 from multiprocessing import Pool
96 pool = Pool(processes=2)
100 pool.close()
101 pool.join()
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/bin/
s3put 36 from multiprocessing import Pool
212 pool = Pool(processes=parallel_processes)
218 pool.apply_async(_upload_part, [bucketname, aws_key, aws_secret, mp.id,
221 pool.close()
222 pool.join()
  /external/libgdx/gdx/src/com/badlogic/gdx/scenes/scene2d/ui/
TextArea.java 30 import com.badlogic.gdx.utils.Pool;
273 Pool<GlyphLayout> layoutPool = Pools.get(GlyphLayout.class);
SelectBox.java 46 import com.badlogic.gdx.utils.Pool;
180 Pool<GlyphLayout> layoutPool = Pools.get(GlyphLayout.class);
  /external/ppp/pppd/plugins/radius/etc/
dictionary.ascend 40 ATTRIBUTE Ascend-Assign-IP-Global-Pool 146 string
42 ATTRIBUTE Ascend-DHCP-Pool-Number 148 integer
111 ATTRIBUTE Ascend-IP-Pool-Definition 217 string
112 ATTRIBUTE Ascend-Assign-IP-Pool 218 integer
  /external/v8/tools/testrunner/local/
execution.py 36 from pool import Pool
226 def _MaybeRerun(self, pool, test):
246 pool.add([TestJob(test)])
250 def _ProcessTestNormal(self, test, result, pool):
268 self._MaybeRerun(pool, test)
272 def _ProcessTestPredictable(self, test, result, pool):
311 pool.add([TestJob(test)])
326 pool = Pool(jobs
    [all...]
  /external/chromium-trace/catapult/third_party/closure_linter/closure_linter/
gjslint.py 105 pool = multiprocessing.Pool()
107 path_results = pool.imap(_CheckPath, paths)
115 pool.close()
116 pool.join()
117 del pool
  /external/pdfium/testing/tools/
run_corpus_tests.py 134 pool = multiprocessing.Pool(options.num_workers)
137 worker_results = pool.imap(worker_func, test_cases)
144 pool.close()
146 pool.terminate()
148 pool.join()
  /external/v8/build/android/
tombstones.py 169 pool = multiprocessing.Pool(processes=jobs)
170 data = pool.map(_ResolveTombstone, tombstones)
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_multiprocessing.py 35 import multiprocessing.pool namespace
1110 papply = self.pool.apply
1115 pmap = self.pool.map
1122 self.pool.map_async(sqr, [], chunksize=1).get(timeout=TIMEOUT1)
1124 self.fail("pool.map_async with chunksize stalled on null list")
1127 res = self.pool.apply_async(sqr, (7, TIMEOUT1,))
1133 res = self.pool.apply_async(sqr, (6, TIMEOUT2 + 0.2))
1139 it = self.pool.imap(sqr, range(10))
1142 it = self.pool.imap(sqr, range(10))
1147 it = self.pool.imap(sqr, range(1000), chunksize=100
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_multiprocessing.py 35 import multiprocessing.pool namespace
1110 papply = self.pool.apply
1115 pmap = self.pool.map
1122 self.pool.map_async(sqr, [], chunksize=1).get(timeout=TIMEOUT1)
1124 self.fail("pool.map_async with chunksize stalled on null list")
1127 res = self.pool.apply_async(sqr, (7, TIMEOUT1,))
1133 res = self.pool.apply_async(sqr, (6, TIMEOUT2 + 0.2))
1139 it = self.pool.imap(sqr, range(10))
1142 it = self.pool.imap(sqr, range(10))
1147 it = self.pool.imap(sqr, range(1000), chunksize=100
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_multiprocessing.py 35 import multiprocessing.pool namespace
1110 papply = self.pool.apply
1115 pmap = self.pool.map
1122 self.pool.map_async(sqr, [], chunksize=1).get(timeout=TIMEOUT1)
1124 self.fail("pool.map_async with chunksize stalled on null list")
1127 res = self.pool.apply_async(sqr, (7, TIMEOUT1,))
1133 res = self.pool.apply_async(sqr, (6, TIMEOUT2 + 0.2))
1139 it = self.pool.imap(sqr, range(10))
1142 it = self.pool.imap(sqr, range(10))
1147 it = self.pool.imap(sqr, range(1000), chunksize=100
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_multiprocessing.py 35 import multiprocessing.pool namespace
1110 papply = self.pool.apply
1115 pmap = self.pool.map
1122 self.pool.map_async(sqr, [], chunksize=1).get(timeout=TIMEOUT1)
1124 self.fail("pool.map_async with chunksize stalled on null list")
1127 res = self.pool.apply_async(sqr, (7, TIMEOUT1,))
1133 res = self.pool.apply_async(sqr, (6, TIMEOUT2 + 0.2))
1139 it = self.pool.imap(sqr, range(10))
1142 it = self.pool.imap(sqr, range(10))
1147 it = self.pool.imap(sqr, range(1000), chunksize=100
    [all...]
  /external/libgdx/extensions/gdx-bullet/jni/swig/collision/
collision.i 15 // FIXME reuse btDispatcher and fix ptr/array typemap/pool
45 import com.badlogic.gdx.utils.Pool;
  /external/libgdx/gdx/src/com/badlogic/gdx/scenes/scene2d/actions/
Actions.java 25 import com.badlogic.gdx.utils.Pool;
33 Pool<T> pool = Pools.get(type); local
34 T action = pool.obtain();
35 action.setPool(pool);
  /external/libvpx/libvpx/vp8/common/arm/armv6/
dequant_idct_v6.asm 185 ; Constant Pool
iwalsh_v6.asm 134 ; Constant Pool

Completed in 1442 milliseconds

1 2 3 4 56 7 8 9