/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 | 50 // Otherwise, hit the big set case, which will call grow. 54 // If more than 3/4 of the array is full, grow. 55 Grow(CurArraySize < 64 ? 128 : CurArraySize*2); 59 Grow(CurArraySize); 128 /// Grow - Allocate a larger backing store for the buckets and move it over. 130 void SmallPtrSetImpl::Grow(unsigned NewSize) {
|
/external/chromium_org/v8/src/ |
unique.h | 164 Grow(size_ + 1, zone); 172 Grow(size_ + 1, zone); 227 out->Grow(Min(this->size_, that->size_), zone); 255 out->Grow(this->size_ + that->size_, zone); 313 // Grow the size of internal storage to be at least {size} elements. 314 void Grow(int size, Zone* zone) {
|
utils.h | 633 Grow(1); 647 Grow(size); 665 Grow(source.length()); 718 void Grow(int min_capacity) { [all...] |
liveedit.cc | [all...] |
spaces.h | [all...] |
spaces.cc | [all...] |
/external/chromium/base/ |
stringprintf_unittest.cc | 89 // Test very large sprintfs that will cause the buffer to grow. 90 TEST(StringPrintfTest, Grow) {
|
/external/chromium_org/base/strings/ |
stringprintf_unittest.cc | 102 // Test very large sprintfs that will cause the buffer to grow. 103 TEST(StringPrintfTest, Grow) {
|
/external/llvm/include/llvm/ADT/ |
SmallPtrSet.h | 38 /// array, we grow into the 'large set' case. SmallSet should be used when the 128 /// Grow - Allocate a larger backing store for the buckets and move it over. 129 void Grow(unsigned NewSize);
|
IntervalMap.h | 311 // We want to grow, copy from sib. 379 /// Elements + Grow <= Nodes * Capacity. 392 /// Grow is set and NewSize[idx] == Capacity-1. The index points to the node 402 /// @param Grow Reserve space for a new element at Position. 406 unsigned Position, bool Grow); 613 /// possible. This may cause the node to grow by 1, or it may cause the node 876 /// fillLeft - Grow path to Height by taking leftmost branches. [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...] |
/external/chromium_org/url/ |
url_canon.h | 99 // Grow the buffer to hold at least one more item. Hopefully we won't have 101 if (!Grow(1)) 112 if (!Grow(cur_len_ + str_len - buffer_len_)) 123 bool Grow(int min_additional) { [all...] |
/external/chromium_org/third_party/libjingle/source/talk/base/ |
natsocketfactory.cc | 183 Grow(size + kNATEncodedIPv6AddressSize); 285 void Grow(size_t new_size) {
|
/external/v8/test/mjsunit/ |
array-store-and-grow.js | 29 // to an array that grow it by a single element. Test functions are 173 // Grow the empty array with a double store.
|
/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/v8/src/ |
utils.h | 541 Grow(1); 555 Grow(size); 573 Grow(source.length()); 626 void Grow(int min_capacity) {
|
liveedit.cc | [all...] |
spaces.h | [all...] |
spaces.cc | [all...] |
/external/chromium_org/v8/test/mjsunit/ |
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/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/ |
test-heap.cc | [all...] |
/external/chromium_org/v8/test/cctest/ |
test-heap.cc | [all...] |