HomeSort by relevance Sort by last modified time
    Searched full:maxelements (Results 1 - 25 of 33) sorted by null

1 2

  /external/guava/guava/src/com/google/common/util/concurrent/
ForwardingBlockingQueue.java 45 Collection<? super E> c, int maxElements) {
46 return delegate().drainTo(c, maxElements);
  /external/libgdx/extensions/gdx-bullet/jni/src/bullet/LinearMath/
btPoolAllocator.h 33 btPoolAllocator(int elemSize, int maxElements)
35 m_maxElements(maxElements)
  /external/guava/guava/src/com/google/common/collect/
ForwardingBlockingDeque.java 120 public int drainTo(Collection<? super E> c, int maxElements) {
121 return delegate().drainTo(c, maxElements);
  /external/libgdx/extensions/gdx-bullet/jni/swig-src/linearmath/com/badlogic/gdx/physics/bullet/linearmath/
btPoolAllocator.java 60 public btPoolAllocator(int elemSize, int maxElements) {
61 this(LinearMathJNI.new_btPoolAllocator(elemSize, maxElements), true);
  /external/guava/guava-tests/test/com/google/common/collect/
QueuesTest.java 71 private static <T> int drain(BlockingQueue<T> q, Collection<? super T> buffer, int maxElements,
74 ? Queues.drain(q, buffer, maxElements, timeout, unit)
75 : Queues.drainUninterruptibly(q, buffer, maxElements, timeout, unit);
  /external/llvm/lib/Transforms/IPO/
ArgumentPromotion.cpp 76 explicit ArgPromotion(unsigned maxElements = 3)
77 : CallGraphSCCPass(ID), maxElements(maxElements) {
97 unsigned maxElements;
110 Pass *llvm::createArgumentPromotionPass(unsigned maxElements) {
111 return new ArgPromotion(maxElements);
288 if (maxElements > 0 && STy->getNumElements() > maxElements) {
291 << " than " << maxElements << " arguments to the function.\n");
555 if (maxElements > 0 && ToPromote.size() == maxElements)
    [all...]
  /libcore/luni/src/main/java/java/util/concurrent/
DelayQueue.java 338 public int drainTo(Collection<? super E> c, int maxElements) {
343 if (maxElements <= 0)
349 for (E e; n < maxElements && (e = peekExpired()) != null;) {
BlockingQueue.java 336 * @param maxElements the maximum number of elements to transfer
347 int drainTo(Collection<? super E> c, int maxElements);
LinkedBlockingDeque.java 713 public int drainTo(Collection<? super E> c, int maxElements) {
718 if (maxElements <= 0)
723 int n = Math.min(maxElements, count);
    [all...]
LinkedBlockingQueue.java 674 public int drainTo(Collection<? super E> c, int maxElements) {
679 if (maxElements <= 0)
685 int n = Math.min(maxElements, count.get());
    [all...]
PriorityBlockingQueue.java 701 public int drainTo(Collection<? super E> c, int maxElements) {
706 if (maxElements <= 0)
711 int n = Math.min(size, maxElements);
    [all...]
ArrayBlockingQueue.java 636 public int drainTo(Collection<? super E> c, int maxElements) {
640 if (maxElements <= 0)
646 int n = Math.min(maxElements, count);
    [all...]
ScheduledThreadPoolExecutor.java     [all...]
SynchronousQueue.java     [all...]
LinkedTransferQueue.java     [all...]
  /external/clang/lib/Sema/
SemaInit.cpp 736 int maxElements = 0x7FFFFFFF;
739 maxElements = static_cast<int>(CAT->getSize().getZExtValue());
741 return maxElements;
    [all...]
  /external/guava/guava-tests/benchmark/com/google/common/util/concurrent/
MonitorBasedArrayBlockingQueue.java 629 public int drainTo(Collection<? super E> c, int maxElements) {
634 if (maxElements <= 0)
642 int max = (maxElements < count) ? maxElements : count;
MonitorBasedPriorityBlockingQueue.java 422 public int drainTo(Collection<? super E> c, int maxElements) {
427 if (maxElements <= 0)
434 while (n < maxElements && (e = q.poll()) != null) {
  /external/aac/libSBRenc/src/
sbr.h 158 INT maxElements;
  /external/llvm/include/llvm/Transforms/
IPO.h 147 /// equal to maxElements (maxElements == 0 means always promote).
149 Pass *createArgumentPromotionPass(unsigned maxElements = 3);
  /external/aac/libAACenc/src/
aacEnc_ram.h 149 INT maxElements;
aacenc.cpp 403 hAacEnc->maxElements = nElements;
    [all...]
  /external/jetty/src/java/org/eclipse/jetty/util/
BlockingArrayQueue.java 657 public int drainTo(Collection<? super E> c, int maxElements)
  /prebuilts/sdk/13/
android.jar 
  /prebuilts/tools/common/m2/repository/commons-collections/commons-collections/3.2.1/
commons-collections-3.2.1.jar 

Completed in 1285 milliseconds

1 2