HomeSort by relevance Sort by last modified time
    Searched refs:grow (Results 201 - 225 of 377) sorted by null

1 2 3 4 5 6 7 891011>>

  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/CodeGen/
LiveIntervalAnalysis.h 124 VirtRegIntervals.grow(Reg);
  /external/fmtlib/test/
util-test.cc 118 // A test buffer with a dummy grow method.
121 void grow(std::size_t size) { this->capacity_ = size; } function in struct:TestBuffer
128 void grow(std::size_t size) { function in struct:MockBuffer
199 // Check if resize calls grow.
327 TEST(MemoryBufferTest, Grow) {
333 void grow(std::size_t size) { Base::grow(size); } function in struct:TestMemoryBuffer
343 buffer.grow(20);
  /prebuilts/go/darwin-x86/src/vendor/golang_org/x/text/transform/
transform.go 548 // grow returns a new []byte that is longer than b, and copies the first n bytes
550 func grow(b []byte, n int) []byte { func
655 // If we got ErrShortDst or ErrShortSrc, do not grow as long as we can
659 dst = grow(dst, pDst)
663 src = grow(src, 0)
699 // Grow the destination buffer, but do not grow as long as we can make
702 dst = grow(dst, pDst)
  /prebuilts/go/linux-x86/src/vendor/golang_org/x/text/transform/
transform.go 548 // grow returns a new []byte that is longer than b, and copies the first n bytes
550 func grow(b []byte, n int) []byte { func
655 // If we got ErrShortDst or ErrShortSrc, do not grow as long as we can
659 dst = grow(dst, pDst)
663 src = grow(src, 0)
699 // Grow the destination buffer, but do not grow as long as we can make
702 dst = grow(dst, pDst)
  /libcore/ojluni/src/main/java/java/util/
Vector.java 36 * {@code Vector} can grow or shrink as needed to accommodate
111 * of the vector is doubled each time it needs to grow.
246 grow(minCapacity);
257 private void grow(int minCapacity) { method in class:Vector
    [all...]
  /libcore/ojluni/src/main/java/java/util/concurrent/
ScheduledThreadPoolExecutor.java 956 private void grow() { method in class:ScheduledThreadPoolExecutor.DelayedWorkQueue
1054 grow(); method
    [all...]
  /prebuilts/go/darwin-x86/src/runtime/
panic.go 189 // This must not grow the stack because there may be a frame without
201 // we don't grow newdefer's stack.
235 // This must not grow the stack because there may be a frame without a
253 // we don't grow freedefer's stack.
hashmap.go 755 // Iterator was started in the middle of a grow, and the grow isn't done yet.
784 // Special case: iterator was started during a grow to a larger size
785 // and the grow is not done yet. We're working on a bucket whose
790 // buckets during a grow).
873 // so keep the same number of buckets and "grow" laterally.
885 // commit the grow (atomic wrt gc)
917 // If the threshold is too high, maps that grow and shrink can hold on to lots of unused memory.
    [all...]
  /prebuilts/go/linux-x86/src/runtime/
panic.go 189 // This must not grow the stack because there may be a frame without
201 // we don't grow newdefer's stack.
235 // This must not grow the stack because there may be a frame without a
253 // we don't grow freedefer's stack.
hashmap.go 755 // Iterator was started in the middle of a grow, and the grow isn't done yet.
784 // Special case: iterator was started during a grow to a larger size
785 // and the grow is not done yet. We're working on a bucket whose
790 // buckets during a grow).
873 // so keep the same number of buckets and "grow" laterally.
885 // commit the grow (atomic wrt gc)
917 // If the threshold is too high, maps that grow and shrink can hold on to lots of unused memory.
    [all...]
  /external/llvm/utils/TableGen/
PseudoLoweringEmitter.cpp 154 OperandMap.grow(NumMIOperands);
  /external/swiftshader/third_party/LLVM/lib/CodeGen/
LiveRangeEdit.cpp 37 VRM.grow();
  /external/v8/src/js/
collection.js 162 // Need to grow, bail out to runtime.
343 // Need to grow, bail out to runtime.
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/geometry/
Quad.java 239 * Grow the Quad outwards by the specified factor.
248 public Quad grow(float factor) { method in class:Quad
  /external/swiftshader/third_party/subzero/src/
IceBitVector.h 421 /// resize - Grow or shrink the bitvector.
425 grow(N);
444 grow(N);
665 // following assert, we make sure BitVectorTmpls grow in a single step from
670 // Grow the bitvector to have enough elements.
766 void grow(unsigned NewSize) {
  /frameworks/minikin/tools/
mk_hyb_file.py 71 def grow(self): member in class:Freelist
85 self.grow()
93 self.grow()
  /hardware/interfaces/graphics/composer/2.1/default/
IComposerCommandBuffer.h 616 void growData(uint32_t grow)
618 uint32_t newWritten = mDataWritten + grow;
621 ", growing by %" PRIu32, mDataWritten, grow);
  /prebuilts/tools/common/m2/repository/xom/xom/1.0/
xom-1.0.jar 
  /external/llvm/lib/CodeGen/
LiveRangeEdit.cpp 429 VRM->grow();
RenameIndependentSubregs.cpp 177 Classes.grow(NumComponents);
  /external/swiftshader/third_party/LLVM/lib/Target/SystemZ/
SystemZFrameLowering.cpp 50 RegSpillOffsets.grow(SystemZ::NUM_TARGET_REGS);
  /prebuilts/go/darwin-x86/src/net/
lookup.go 53 const maxProtoLength = len("RSVP-E2E-IGNORE") + 10 // with room to grow
66 const maxServiceLength = len("mobility-header") + 10 // with room to grow
  /prebuilts/go/linux-x86/src/net/
lookup.go 53 const maxProtoLength = len("RSVP-E2E-IGNORE") + 10 // with room to grow
66 const maxServiceLength = len("mobility-header") + 10 // with room to grow
  /external/fmtlib/fmt/
format.h 666 virtual void grow(std::size_t size) = 0;
682 grow(new_size);
693 grow(capacity);
700 grow(size_ + 1);
717 grow(new_size);
738 void grow(std::size_t size) FMT_OVERRIDE;
783 void MemoryBuffer<T, SIZE, Allocator>::grow(std::size_t size) { function in class:fmt::internal::MemoryBuffer
809 FMT_API void grow(std::size_t size) FMT_OVERRIDE;
    [all...]
  /external/skia/src/core/
SkTextBlob.cpp 257 void grow(uint32_t count) { function in namespace:__anon30926
582 run->grow(count);

Completed in 934 milliseconds

1 2 3 4 5 6 7 891011>>