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

1 2

  /external/skia/src/gpu/vk/
GrVkDescriptorPool.cpp 18 VkDescriptorPoolSize poolSize;
19 memset(&poolSize, 0, sizeof(VkDescriptorPoolSize));
20 poolSize.descriptorCount = count;
21 poolSize.type = type;
31 createInfo.pPoolSizes = &poolSize;
  /libcore/ojluni/src/main/java/sun/nio/ch/
ThreadPool.java 50 private final int poolSize;
54 int poolSize)
58 this.poolSize = poolSize;
69 int poolSize() {
70 return poolSize;
AsynchronousChannelGroupImpl.java 101 return pool.poolSize();
103 return pool.poolSize() + internalThreadCount;
136 if (pool.poolSize() > 0) {
139 for (int i=0; i<pool.poolSize(); i++) {
  /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/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());
  /frameworks/ml/nn/runtime/
ModelBuilder.cpp 119 size_t poolSize = 0;
123 poolSize += alignBytesNeeded(poolSize, operand.location.length);
124 operand.location.offset = poolSize;
125 poolSize += operand.location.length;
129 int n = mLargeValueMemory.create(poolSize);
139 VLOG(MODEL) << "Allocated large value pool of size " << poolSize << " at index "
  /external/valgrind/include/
pub_tool_oset.h 210 SizeT poolSize,
217 // (if poolSize is 0, maxEltSize is not relevant for the OSet).
  /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/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 311 int32_t poolSize = stringPool->size();
313 for (i=0; i<poolSize; i++) {
  /external/valgrind/coregrind/
m_oset.c 320 SizeT poolSize,
327 vg_assert (poolSize > 0);
332 poolSize,
  /external/vulkan-validation-layers/tests/
vkrenderframework.cpp 472 VkDescriptorPoolSize poolSize;
475 poolSize.descriptorCount = it->second;
476 poolSize.type = it->first;
477 sizes.push_back(poolSize);
    [all...]
  /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/deqp/external/vulkancts/modules/vulkan/spirv_assembly/
vktSpvAsmGraphicsShaderTestUtil.cpp     [all...]
  /prebuilts/tools/common/m2/repository/org/codehaus/groovy/modules/http-builder/http-builder/0.7.2/
http-builder-0.7.2.jar 
  /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...]
  /external/deqp/external/vulkancts/modules/vulkan/renderpass/
vktRenderPassTests.cpp     [all...]
  /prebuilts/tools/common/m2/repository/com/github/bumptech/glide/glide/3.6.1/
glide-3.6.1.jar 
  /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 972 milliseconds

1 2