HomeSort by relevance Sort by last modified time
    Searched refs:poolSize (Results 1 - 25 of 49) sorted by null

1 2

  /libcore/ojluni/src/main/java/sun/nio/ch/
ThreadPool.java 58 private final int poolSize;
62 int poolSize)
66 this.poolSize = poolSize;
77 int poolSize() {
78 return poolSize;
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
BytesBufferPool.java 68 public BytesBufferPool(int poolSize, int bufferSize) {
69 mList = new ArrayList<BytesBuffer>(poolSize);
70 mPoolSize = poolSize;
  /external/skia/src/gpu/vk/
GrVkDescriptorPool.cpp 22 VkDescriptorPoolSize& poolSize = poolSizes.get()[currentPool++];
23 poolSize.type = (VkDescriptorType)i;
24 poolSize.descriptorCount = fTypeCounts.fDescriptorTypeCount[i];
  /external/deqp/framework/referencerenderer/
rrVertexPacket.cpp 80 const size_t poolSize = 8;
83 m_singleAllocPool = allocArray(poolSize);
  /external/glide/library/src/main/java/com/bumptech/glide/load/engine/executor/
FifoPriorityThreadPoolExecutor.java 24 * @param poolSize The number of threads.
26 public FifoPriorityThreadPoolExecutor(int poolSize) {
27 this(poolSize, poolSize, 0, TimeUnit.MILLISECONDS, new DefaultThreadFactory());
  /external/valgrind/include/
pub_tool_oset.h 215 SizeT poolSize,
222 // (if poolSize is 0, maxEltSize is not relevant for the OSet).
  /hardware/ti/omap3/dspbridge/inc/
mem.h 430 * poolSize size of the physical memory pool.
438 IN DWORD poolSize);
  /hardware/ti/omap3/dspbridge/libbridge/inc/
mem.h 430 * poolSize size of the physical memory pool.
438 IN DWORD poolSize);
  /libcore/jsr166-tests/src/test/java/jsr166/
ScheduledExecutorSubclassTest.java 720 final int poolSize = 2;
723 final CustomExecutor p = new CustomExecutor(poolSize);
724 final CountDownLatch threadsStarted = new CountDownLatch(poolSize);
735 assertEquals(poolSize, p.getActiveCount());
745 assertEquals(count - poolSize, queuedTasks.size());
748 assertEquals(poolSize, ran.get());
749 assertEquals(poolSize, p.getCompletedTaskCount());
798 final int poolSize = 2;
799 final CustomExecutor p = new CustomExecutor(poolSize);
    [all...]
ScheduledExecutorTest.java 668 final int poolSize = 2;
672 new ScheduledThreadPoolExecutor(poolSize);
673 final CountDownLatch threadsStarted = new CountDownLatch(poolSize);
684 assertEquals(poolSize, p.getActiveCount());
694 assertEquals(count - poolSize, queuedTasks.size());
697 assertEquals(poolSize, ran.get());
698 assertEquals(poolSize, p.getCompletedTaskCount());
746 final int poolSize = 2;
748 = new ScheduledThreadPoolExecutor(poolSize);
763 // Strategy: Wedge the pool with poolSize "blocker" thread
    [all...]
ThreadPoolExecutorSubclassTest.java 765 final int poolSize = 2;
769 new CustomTPE(poolSize, poolSize,
772 final CountDownLatch threadsStarted = new CountDownLatch(poolSize);
783 assertEquals(poolSize, p.getActiveCount());
793 assertEquals(count - poolSize, queuedTasks.size());
796 assertEquals(poolSize, ran.get());
797 assertEquals(poolSize, p.getCompletedTaskCount());
    [all...]
ThreadPoolExecutorTest.java 650 final int poolSize = 2;
654 new ThreadPoolExecutor(poolSize, poolSize,
657 final CountDownLatch threadsStarted = new CountDownLatch(poolSize);
668 assertEquals(poolSize, p.getActiveCount());
678 assertEquals(count - poolSize, queuedTasks.size());
681 assertEquals(poolSize, ran.get());
682 assertEquals(poolSize, p.getCompletedTaskCount());
    [all...]
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/
ConnectionPoolTest.java 80 private void setUp(int poolSize) throws Exception {
105 pool = new ConnectionPool(poolSize, KEEP_ALIVE_DURATION_MS);
142 private void resetWithPoolSize(int poolSize) throws Exception {
144 setUp(poolSize);
  /external/caliper/caliper/src/main/java/com/google/caliper/runner/
ExperimentingRunnerModule.java 85 int poolSize = Integer.parseInt(config.properties().get(RUNNER_MAX_PARALLELISM_OPTION));
86 return MoreExecutors.listeningDecorator(Executors.newFixedThreadPool(poolSize));
  /external/icu/icu4c/source/i18n/
uspoof_conf.cpp 352 int32_t poolSize = stringPool->size();
354 for (i=0; i<poolSize; i++) {
  /external/opencv3/modules/cudafeatures2d/src/
orb.cpp 431 static void initializeOrbPattern(const Point* pattern0, Mat& pattern, int ntuples, int tupleSize, int poolSize)
447 int idx = rng.uniform(0, poolSize);
    [all...]
  /external/valgrind/coregrind/
m_oset.c 320 SizeT poolSize,
327 vg_assert (poolSize > 0);
332 poolSize,
  /prebuilts/tools/common/m2/repository/org/codehaus/groovy/modules/http-builder/http-builder/0.7.2/
http-builder-0.7.2.jar 
  /external/icu/android_icu4j/src/main/java/android/icu/text/
SpoofChecker.java     [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
SpoofChecker.java     [all...]
  /external/opencv3/modules/features2d/src/
orb.cpp 347 static void initializeOrbPattern( const Point* pattern0, std::vector<Point>& pattern, int ntuples, int tupleSize, int poolSize )
359 int idx = rng.uniform(0, poolSize);
    [all...]
  /external/opencv3/modules/core/src/
ocl.cpp     [all...]
  /external/replicaisland/src/com/replica/replicaisland/
GameObjectFactory.java 207 public int poolSize;
210 poolSize = size;
261 mComponentPools.add(new GameComponentPool(component.type, component.poolSize));
    [all...]
  /prebuilts/gradle-plugin/com/android/tools/build/builder/2.0.0/
builder-2.0.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/builder/2.0.0-alpha3/
builder-2.0.0-alpha3.jar 

Completed in 5797 milliseconds

1 2