/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
H A D | IntervalMap.cpp | 121 unsigned Position, bool Grow) { in distribute() 122 assert(Elements + Grow <= Nodes * Capacity && "Not enough room for elements"); in distribute() 128 const unsigned PerNode = (Elements + Grow) / Nodes; in distribute() 129 const unsigned Extra = (Elements + Grow) % Nodes; in distribute() 137 assert(Sum == Elements + Grow && "Bad distribution sum"); in distribute() 139 // Subtract the Grow element that was added. in distribute() 140 if (Grow) { in distribute() 142 assert(NewSize[PosPair.first] && "Too few elements to need Grow"); in distribute() 119 distribute(unsigned Nodes, unsigned Elements, unsigned Capacity, const unsigned *CurSize, unsigned NewSize[], unsigned Position, bool Grow) distribute() argument
|
H A D | SmallPtrSet.cpp | 43 Grow(CurArraySize < 64 ? 128 : CurArraySize * 2); in insert_imp_big() 47 Grow(CurArraySize); in insert_imp_big() 92 /// Grow - Allocate a larger backing store for the buckets and move it over. 94 void SmallPtrSetImplBase::Grow(unsigned NewSize) {
|
/third_party/node/deps/v8/src/base/ |
H A D | small-vector.h | 125 if (V8_UNLIKELY(end == end_of_storage_)) end = Grow(); in emplace_back() 138 if (new_size > capacity()) Grow(new_size); in resize_no_init() 156 V8_NOINLINE T* Grow() { return Grow(0); } in Grow() function in v8::base::SmallVector 159 V8_NOINLINE T* Grow(size_t min_capacity) { in Grow() function in v8::base::SmallVector 169 FATAL("Fatal process out of memory: base::SmallVector::Grow"); in Grow()
|
/third_party/lzma/CPP/Common/ |
H A D | MyString.cpp | 400 Grow(size);
in InsertSpace() 448 // Grow(1);
in Grow_1() 451 void AString::Grow(unsigned n)
in Grow() function in AString 651 Grow(len);
in operator +=() 665 Grow(s._len);
in operator +=() 673 Grow(10);
in Add_UInt32() 679 Grow(20);
in Add_UInt64() 687 Grow(len);
in AddFrom() 998 Grow(size);
in InsertSpace() 1046 void UString::Grow(unsigne function in UString [all...] |
H A D | DynamicBuffer.h | 19 void Grow(size_t size)
in Grow() function in CDynamicBuffer 50 Grow(addSize - rem);
in GetCurPtrAndGrow()
|
H A D | MyString.h | 285 void Grow(unsigned n);
566 void Grow(unsigned n);
|
/third_party/node/deps/v8/src/compiler/ |
H A D | value-numbering-reducer.cc | 61 if (size_ + size_ / 4 >= capacity_) Grow(); in Reduce() 151 void ValueNumberingReducer::Grow() { in Grow() function in v8::internal::ValueNumberingReducer
|
H A D | value-numbering-reducer.h | 30 void Grow();
|
/third_party/node/deps/v8/src/sandbox/ |
H A D | external-pointer-table-inl.h | 41 Grow(); in Init() 93 // and so requires an acquire load as well as a release store in Grow() to in Allocate() 107 freelist_head = Grow(); in Allocate()
|
H A D | external-pointer-table.cc | 59 uint32_t ExternalPointerTable::Grow() { in Grow() function in v8::internal::ExternalPointerTable 65 // Grow the table by one block. in Grow()
|
H A D | external-pointer-table.h | 128 uint32_t Grow(); 193 // Lock protecting the slow path for entry allocation, in particular Grow().
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/lib/Support/ |
H A D | SmallPtrSet.cpp | 43 Grow(CurArraySize < 64 ? 128 : CurArraySize * 2); in insert_imp_big() 47 Grow(CurArraySize); in insert_imp_big() 116 /// Grow - Allocate a larger backing store for the buckets and move it over. 118 void SmallPtrSetImplBase::Grow(unsigned NewSize) {
|
/third_party/node/deps/v8/src/heap/cppgc/ |
H A D | explicit-management.cc | 80 bool Grow(HeapObjectHeader& header, BasePage& base_page, size_t new_size, in Grow() function 156 return Grow(header, *base_page, new_size, new_size - old_size); in Resize()
|
/third_party/vixl/src/ |
H A D | code-buffer-vixl.h | 171 void Grow(size_t new_capacity); 183 if (is_full) Grow(capacity_ * 2 + amount); in EnsureSpaceFor()
|
H A D | code-buffer-vixl.cc | 179 void CodeBuffer::Grow(size_t new_capacity) { in Grow() function in vixl::CodeBuffer
|
/third_party/skia/third_party/externals/abseil-cpp/absl/synchronization/internal/ |
H A D | graphcycles.cc | 95 if (size_ == capacity_) Grow(size_ + 1); in push_back() 101 if (n > capacity_) Grow(n); in resize() 144 void Grow(uint32_t n) { in Grow() function in absl::synchronization_internal::__anon19421::Vec 180 if (occupied_ >= table_.size() - table_.size()/4) Grow(); in insert() 243 void Grow() { in Grow() function
|
/third_party/node/deps/v8/src/codegen/ |
H A D | assembler.cc | 111 std::unique_ptr<AssemblerBuffer> Grow(int new_size) override { 129 std::unique_ptr<AssemblerBuffer> Grow(int new_size) override {
|
H A D | assembler.h | 204 virtual std::unique_ptr<AssemblerBuffer> Grow(int new_size)
|
/third_party/node/deps/v8/src/objects/ |
H A D | ordered-hash-table.cc | 715 SmallOrderedHashSet::Grow(isolate, table); in Add() 758 SmallOrderedHashMap::Grow(isolate, table); in Add() 824 SmallOrderedNameDictionary::Grow(isolate, table); in Add() 988 MaybeHandle<Derived> SmallOrderedHashTable<Derived>::Grow( in Grow() function in v8::internal::SmallOrderedHashTable 1043 SmallOrderedHashTable<SmallOrderedHashSet>::Grow( 1062 SmallOrderedHashTable<SmallOrderedHashMap>::Grow(
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/ADT/ |
H A D | SmallPtrSet.h | 189 /// Grow - Allocate a larger backing store for the buckets and move it over. 190 void Grow(unsigned NewSize);
|
/third_party/node/deps/v8/src/runtime/ |
H A D | runtime-wasm.cc | 138 int ret = WasmMemoryObject::Grow( in RUNTIME_FUNCTION() 518 int result = WasmTableObject::Grow(isolate, table, delta, value); in RUNTIME_FUNCTION()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/ |
H A D | IntervalMap.h | 386 /// Elements + Grow <= Nodes * Capacity. 399 /// Grow is set and NewSize[idx] == Capacity-1. The index points to the node 409 /// @param Grow Reserve space for a new element at Position. 413 unsigned Position, bool Grow); 879 /// fillLeft - Grow path to Height by taking leftmost branches. 1848 bool Grow = P.leafOffset() == Size; 1854 Grow = P.leafOffset() == P.leafSize(); 1863 if (Grow)
|
H A D | SmallPtrSet.h | 201 /// Grow - Allocate a larger backing store for the buckets and move it over. 202 void Grow(unsigned NewSize);
|
/third_party/node/deps/v8/src/heap/ |
H A D | new-spaces.h | 64 // Grow the semispace to the new capacity. The new capacity requested must 263 // Grow the capacity of the semispaces. Assumes that they are not at 265 void Grow();
|
/third_party/skia/third_party/externals/swiftshader/third_party/marl/src/ |
H A D | containers_test.cpp | 326 TEST_F(ContainersListTest, Grow) { in TEST_F()
|