Lines Matching defs:grow
278 int grow = static_cast<int>(new_size) - old_capacity;
280 grow = std::max(grow, old_capacity);
281 // Never grow larger than the max size.
282 grow = std::min(grow, static_cast<int>(max_size - old_capacity));
284 handle(table->entries(), isolate), grow);
292 // necessary. We simply have to grow the raw tables in each instance
866 // and then grow with realloc.
956 FATAL("could not grow wasm memory");
969 // grow the same memory object can come in from different workers.
979 // Check if the non-shared memory could grow in-place.
998 // To avoid overall quadratic complexity of many small grow operations, we
999 // grow by at least 0.5 MB + 12.5% of the existing memory size.
1009 FATAL("could not grow wasm memory");