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

1 2 3 4 5 6

  /external/llvm/lib/Support/
IntervalMap.cpp 122 unsigned Position, bool Grow) {
123 assert(Elements + Grow <= Nodes * Capacity && "Not enough room for elements");
129 const unsigned PerNode = (Elements + Grow) / Nodes;
130 const unsigned Extra = (Elements + Grow) % Nodes;
138 assert(Sum == Elements + Grow && "Bad distribution sum");
140 // Subtract the Grow element that was added.
141 if (Grow) {
143 assert(NewSize[PosPair.first] && "Too few elements to need Grow");
SmallPtrSet.cpp 41 // If more than 3/4 of the array is full, grow.
42 Grow(CurArraySize < 64 ? 128 : CurArraySize * 2);
46 Grow(CurArraySize);
115 /// Grow - Allocate a larger backing store for the buckets and move it over.
117 void SmallPtrSetImplBase::Grow(unsigned NewSize) {
  /external/swiftshader/third_party/LLVM/lib/Support/
IntervalMap.cpp 122 unsigned Position, bool Grow) {
123 assert(Elements + Grow <= Nodes * Capacity && "Not enough room for elements");
129 const unsigned PerNode = (Elements + Grow) / Nodes;
130 const unsigned Extra = (Elements + Grow) % Nodes;
138 assert(Sum == Elements + Grow && "Bad distribution sum");
140 // Subtract the Grow element that was added.
141 if (Grow) {
143 assert(NewSize[PosPair.first] && "Too few elements to need Grow");
SmallPtrSet.cpp 52 // Otherwise, hit the big set case, which will call grow.
56 // If more than 3/4 of the array is full, grow.
57 Grow(CurArraySize < 64 ? 128 : CurArraySize*2);
61 Grow(CurArraySize);
130 /// Grow - Allocate a larger backing store for the buckets and move it over.
132 void SmallPtrSetImpl::Grow(unsigned NewSize) {
  /external/v8/src/compiler/
value-numbering-reducer.h 28 void Grow();
value-numbering-reducer.cc 96 if (size_ + size_ / 4 >= capacity_) Grow();
186 void ValueNumberingReducer::Grow() {
  /external/lzma/CPP/Common/
DynamicBuffer.h 15 void Grow(size_t size)
46 Grow(addSize - rem);
MyString.cpp 338 Grow(size);
383 void AString::Grow(unsigned n)
574 Grow(len);
582 Grow(s._len);
890 Grow(size);
933 void UString::Grow(unsigned n)
1097 Grow(len);
1105 Grow(s._len);
1146 Grow(len);
  /prebuilts/go/darwin-x86/src/strings/
builder.go 59 // grow copies the buffer to a new, larger buffer so that there are at least n
61 func (b *Builder) grow(n int) { func
67 // Grow grows b's capacity, if necessary, to guarantee space for
68 // another n bytes. After Grow(n), at least n bytes can be written to b
69 // without another allocation. If n is negative, Grow panics.
70 func (b *Builder) Grow(n int) {
73 panic("strings.Builder.Grow: negative count")
76 b.grow(n)
106 b.grow(utf8.UTFMax)
builder_test.go 90 b.Grow(growLen)
97 t.Errorf("growLen=%d: bad data written after Grow", growLen)
171 b.Grow(5)
188 b.Grow(5)
284 name: "Grow",
288 a.Grow(1)
290 b.Grow(2)
  /prebuilts/go/linux-x86/src/strings/
builder.go 59 // grow copies the buffer to a new, larger buffer so that there are at least n
61 func (b *Builder) grow(n int) { func
67 // Grow grows b's capacity, if necessary, to guarantee space for
68 // another n bytes. After Grow(n), at least n bytes can be written to b
69 // without another allocation. If n is negative, Grow panics.
70 func (b *Builder) Grow(n int) {
73 panic("strings.Builder.Grow: negative count")
76 b.grow(n)
106 b.grow(utf8.UTFMax)
builder_test.go 90 b.Grow(growLen)
97 t.Errorf("growLen=%d: bad data written after Grow", growLen)
171 b.Grow(5)
188 b.Grow(5)
284 name: "Grow",
288 a.Grow(1)
290 b.Grow(2)
  /external/v8/src/
collector.h 43 Grow(1);
57 Grow(size);
74 Grow(source.length());
133 void Grow(int min_capacity) {
  /prebuilts/go/darwin-x86/src/cmd/link/internal/sym/
symbol.go 71 func (s *Symbol) Grow(siz int64) {
143 s.Grow(s.Size)
168 s.Grow(s.Size)
192 s.Grow(s.Size)
215 s.Grow(s.Size)
231 s.Grow(s.Size)
259 s.Grow(s.Size)
  /prebuilts/go/linux-x86/src/cmd/link/internal/sym/
symbol.go 71 func (s *Symbol) Grow(siz int64) {
143 s.Grow(s.Size)
168 s.Grow(s.Size)
192 s.Grow(s.Size)
215 s.Grow(s.Size)
231 s.Grow(s.Size)
259 s.Grow(s.Size)
  /external/vixl/src/
code-buffer-vixl.h 153 void Grow(size_t new_capacity);
165 if (is_full) Grow(capacity_ * 2 + amount);
178 // backing store can then grow on demand. If false the backing store is
  /prebuilts/go/darwin-x86/misc/cgo/test/
issue9400_linux.go 42 // Grow the stack and put down a test pattern
  /prebuilts/go/darwin-x86/test/
clearfat.go 50 // Grow and poison the stack space that will be used by clearfat$
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue10353.go 33 // Grow stack so that partial call x becomes invalid if allocated on stack.
  /prebuilts/go/linux-x86/misc/cgo/test/
issue9400_linux.go 42 // Grow the stack and put down a test pattern
  /prebuilts/go/linux-x86/test/
clearfat.go 50 // Grow and poison the stack space that will be used by clearfat$
  /prebuilts/go/linux-x86/test/fixedbugs/
issue10353.go 33 // Grow stack so that partial call x becomes invalid if allocated on stack.
  /external/swiftshader/third_party/llvm-subzero/lib/Support/
SmallPtrSet.cpp 42 // If more than 3/4 of the array is full, grow.
43 Grow(CurArraySize < 64 ? 128 : CurArraySize * 2);
47 Grow(CurArraySize);
116 /// Grow - Allocate a larger backing store for the buckets and move it over.
118 void SmallPtrSetImplBase::Grow(unsigned NewSize) {
  /external/tensorflow/tensorflow/core/lib/gtl/
inlined_vector.h 106 if (s < vs) { // grow
254 Grow<Move>(n);
365 Grow<Move, Construct>(s + 1, std::forward<Args>(args)...);
369 // Movers for Grow
403 // Initialization methods for Grow.
416 // Grow so that capacity >= n. Uses Mover to move existing elements
424 void Grow(size_t n, Args&&... args) {
546 Grow<Nop>(n); // Must use Nop in case T is not copyable
556 Grow<Nop>(n); // Can use Nop since we know we have nothing to copy
580 Grow<Move>(s + 1)
    [all...]
  /external/v8/src/crankshaft/
unique.h 173 Grow(size_ + 1, zone);
181 Grow(size_ + 1, zone);
343 // Grow the size of internal storage to be at least {size} elements.
344 void Grow(int size, Zone* zone) {

Completed in 1712 milliseconds

1 2 3 4 5 6