Home
last modified time | relevance | path

Searched refs:kSpecMaxMemoryPages (Results 1 – 5 of 5) sorted by relevance

/third_party/node/deps/v8/src/wasm/
Dwasm-limits.h25 constexpr size_t kSpecMaxMemoryPages = 65536; variable
Dmodule-decoder.cc841 "memory", "pages", kSpecMaxMemoryPages, &module_->initial_pages, in DecodeImportSection()
842 &module_->has_maximum_pages, kSpecMaxMemoryPages, in DecodeImportSection()
939 consume_resizable_limits("memory", "pages", kSpecMaxMemoryPages, in DecodeMemorySection()
941 &module_->has_maximum_pages, kSpecMaxMemoryPages, in DecodeMemorySection()
Dwasm-js.cc1247 &initial, 0, i::wasm::kSpecMaxMemoryPages)) { in WebAssemblyMemory()
1254 initial, i::wasm::kSpecMaxMemoryPages)) { in WebAssemblyMemory()
Dc-api.cc2057 if (minimum > i::wasm::kSpecMaxMemoryPages) return nullptr; in make()
2061 if (maximum > i::wasm::kSpecMaxMemoryPages) return nullptr; in make()
Dwasm-objects.cc939 uint32_t max_pages = wasm::kSpecMaxMemoryPages; in Grow()