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

  /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 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/chromium/base/
stringprintf_unittest.cc 89 // Test very large sprintfs that will cause the buffer to grow.
90 TEST(StringPrintfTest, Grow) {
  /external/llvm/include/llvm/ADT/
SmallPtrSet.h 37 /// array, we grow into the 'large set' case. SmallSet should be used when the
135 /// Grow - Allocate a larger backing store for the buckets and move it over.
136 void Grow(unsigned NewSize);
IntervalMap.h 291 // We want to grow, copy from sib.
359 /// Elements + Grow <= Nodes * Capacity.
372 /// Grow is set and NewSize[idx] == Capacity-1. The index points to the node
382 /// @param Grow Reserve space for a new element at Position.
386 unsigned Position, bool Grow);
593 /// possible. This may cause the node to grow by 1, or it may cause the node
856 /// fillLeft - Grow path to Height by taking leftmost branches.
    [all...]
  /external/v8/src/
utils.h 507 Grow(1);
521 Grow(size);
539 Grow(source.length());
599 void Grow(int min_capacity) {
spaces.h     [all...]
liveedit.cc     [all...]
spaces.cc     [all...]
heap.cc 930 // Grow the size of new space if there is room to grow and enough
932 new_space_.Grow();
    [all...]
  /external/chromium/googleurl/src/
url_canon.h 123 // Grow the buffer to hold at least one more item. Hopefully we won't have
125 if (!Grow(1))
136 if (!Grow(cur_len_ + str_len - buffer_len_))
147 bool Grow(int min_additional) {
    [all...]
  /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);

Completed in 291 milliseconds