Lines Matching defs:maximum
194 uint32_t initial, bool has_maximum, uint32_t maximum,
210 max = isolate->factory()->NewNumberFromUint(maximum);
811 Isolate* isolate, MaybeHandle<JSArrayBuffer> maybe_buffer, int maximum) {
827 memory_object->set_maximum_pages(maximum);
843 int initial, int maximum,
845 bool has_maximum = maximum != kNoMaximum;
846 int heuristic_maximum = maximum;
859 // We try to reserve the maximum, but at most 1GB to avoid OOMs.
860 heuristic_maximum = std::min(maximum, kGBPages);
862 // If shared memory has no maximum, we use an implicit maximum of 1GB.
865 // If non-shared memory has no maximum, we only allocate the initial size
881 return New(isolate, buffer, maximum);
931 // Check for maximum memory size.