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

1 2

  /external/v8/src/compiler/
value-numbering-reducer.h 24 void Grow();
value-numbering-reducer.cc 86 if (size_ * kCapacityToSizeRatio >= capacity_) Grow();
132 void ValueNumberingReducer::Grow() {
  /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 51 // Otherwise, hit the big set case, which will call grow.
55 // If more than 3/4 of the array is full, grow.
56 Grow(CurArraySize < 64 ? 128 : CurArraySize*2);
61 Grow(CurArraySize);
131 /// Grow - Allocate a larger backing store for the buckets and move it over.
133 void SmallPtrSetImplBase::Grow(unsigned NewSize) {
  /external/lzma/CPP/Common/
DynamicBuffer.h 15 void Grow(size_t size)
45 Grow(addSize - rem);
MyString.cpp 316 Grow(size);
349 void AString::Grow(unsigned n)
483 Grow(len);
491 Grow(s._len);
750 Grow(size);
783 void UString::Grow(unsigned n)
917 Grow(len);
925 Grow(s._len);
965 Grow(len);
MyString.h 175 void Grow(unsigned n);
333 void Grow(unsigned n);
  /external/v8/src/
collector.h 43 Grow(1);
57 Grow(size);
74 Grow(source.length());
133 void Grow(int min_capacity) {
  /external/v8/test/mjsunit/
ensure-growing-store-learns.js 11 // store required change to dictionary mode. Verify that stores that grow
68 // Grow a large array into large object space through the keyed store
69 // without deoptimizing. Grow by 10s. If we set elements too sparsely, the
array-store-and-grow.js 31 // to an array that grow it by a single element. Test functions are
178 // Grow the empty array with a double store.
191 // Verify that a grow store will deoptimize if the max gap (difference between
212 // Verify that a polymorphic store and grow IC when crankshafted is still
213 // a grow IC (earlier it would revert to a standard store in the polymorphic
221 f(a, 1, "hi"); // DOUBLE packed array -> tagged packed grow
228 // Should be a polymorphic grow stub. If not a grow stub it will deopt.
243 f(a, 0, "hi"); // DOUBLE packed array -> tagged packed grow
252 // An attempt to grow should cause deop
    [all...]
  /external/vixl/src/vixl/
code-buffer.h 81 void Grow(size_t new_capacity);
99 // backing store can then grow on demand. If false the backing store is
code-buffer.cc 98 void CodeBuffer::Grow(size_t new_capacity) {
  /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) {
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
msputils.h 43 WINBOOL Grow() {
54 if(!Grow()) return FALSE;
  /external/libchrome/base/strings/
stringprintf_unittest.cc 104 // Test very large sprintfs that will cause the buffer to grow.
105 TEST(StringPrintfTest, Grow) {
  /external/libweave/third_party/chromium/base/strings/
stringprintf_unittest.cc 104 // Test very large sprintfs that will cause the buffer to grow.
105 TEST(StringPrintfTest, Grow) {
  /packages/apps/Gallery/src/com/android/camera/
HighlightView.java 108 if (mMode == ModifyMode.Grow) {
298 // Don't let the cropping rectangle grow too fast.
299 // Grow at most half of the difference between the image rectangle and
392 enum ModifyMode { None, Move, Grow }
CropImage.java 666 : HighlightView.ModifyMode.Grow);
  /external/llvm/include/llvm/ADT/
SmallPtrSet.h 39 /// array, we grow into the 'large set' case. SmallSet should be used when the
133 /// Grow - Allocate a larger backing store for the buckets and move it over.
134 void Grow(unsigned NewSize);
IntervalMap.h 312 // We want to grow, copy from sib.
380 /// Elements + Grow <= Nodes * Capacity.
393 /// Grow is set and NewSize[idx] == Capacity-1. The index points to the node
403 /// @param Grow Reserve space for a new element at Position.
407 unsigned Position, bool Grow);
614 /// possible. This may cause the node to grow by 1, or it may cause the node
877 /// fillLeft - Grow path to Height by taking leftmost branches.
    [all...]
  /external/webrtc/webrtc/base/
natsocketfactory.cc 170 Grow(size + kNATEncodedIPv6AddressSize);
263 void Grow(size_t new_size) {
  /external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
Antlr.Runtime.Tools.pas 255 procedure Grow;
347 /// reasons, this space is preallocated on the stack and does not grow if
589 procedure TDictionary<TKey,TValue>.Grow;
750 Grow;
  /external/v8/test/cctest/heap/
test-heap.cc     [all...]
  /external/v8/src/debug/
liveedit.cc     [all...]
  /external/v8/src/heap/
spaces.h     [all...]

Completed in 283 milliseconds

1 2