Searched refs:kV8MaxWasmMemoryPages (Results 1 – 4 of 4) sorted by relevance
36 constexpr size_t kV8MaxWasmMemoryPages = 65536; // = 4 GiB variable
67 std::min(kV8MaxWasmMemoryPages,
1449 STATIC_ASSERT(kV8MaxWasmMemoryPages <= kMaxUInt32); in max_mem_pages()1450 return std::min(uint32_t{kV8MaxWasmMemoryPages}, FLAG_wasm_max_mem_pages); in max_mem_pages()
425 if (initial_pages > wasm::kV8MaxWasmMemoryPages) return nullptr; in AllocateWasmMemory()