HomeSort by relevance Sort by last modified time
    Searched refs:Grow (Results 1 - 24 of 24) 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 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 SmallPtrSetImplBase::Grow(unsigned NewSize) {
  /external/chromium_org/ppapi/proxy/
nacl_message_scanner.h 82 bool Grow(int64_t amount);
nacl_message_scanner_unittest.cc 183 // Without reserving quota, we should not be able to grow the file.
184 EXPECT_FALSE(fio->Grow(1));
204 // We should be able to grow the file within quota.
205 EXPECT_TRUE(fio->Grow(1));
209 // We should not be able to grow the file over quota.
210 EXPECT_FALSE(fio->Grow(kQuotaReservationAmount));
nacl_message_scanner.cc 268 bool NaClMessageScanner::FileIO::Grow(int64_t amount) {
416 if (!it->second->Grow(increase)) {
  /external/chromium_org/v8/src/
unique.h 158 Grow(size_ + 1, zone);
166 Grow(size_ + 1, zone);
328 // Grow the size of internal storage to be at least {size} elements.
329 void Grow(int size, Zone* zone) {
utils.h 549 Grow(1);
563 Grow(size);
581 Grow(source.length());
634 void Grow(int min_capacity) {
    [all...]
liveedit.cc     [all...]
spaces.h     [all...]
spaces.cc     [all...]
heap.cc     [all...]
  /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/chromium_org/base/strings/
stringprintf_unittest.cc 102 // Test very large sprintfs that will cause the buffer to grow.
103 TEST(StringPrintfTest, Grow) {
  /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/chromium_org/third_party/webrtc/base/
natsocketfactory.cc 166 Grow(size + kNATEncodedIPv6AddressSize);
268 void Grow(size_t new_size) {
  /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 38 /// array, we grow into the 'large set' case. SmallSet should be used when the
131 /// Grow - Allocate a larger backing store for the buckets and move it over.
132 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_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/chromium_org/v8/test/cctest/
test-heap.cc     [all...]
  /external/chromium_org/components/nacl/loader/
nacl_ipc_adapter.cc 135 if (increase <= 0 || file_io->Grow(increase))
  /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;

Completed in 974 milliseconds