Home
last modified time | relevance | path

Searched refs:max_functions (Results 1 – 2 of 2) sorted by relevance

/external/v8/src/wasm/
Dwasm-code-manager.cc339 void NativeModule::ReserveCodeTableForTesting(uint32_t max_functions) { in ReserveCodeTableForTesting() argument
340 DCHECK_LE(num_functions(), max_functions); in ReserveCodeTableForTesting()
341 WasmCode** new_table = new WasmCode*[max_functions]; in ReserveCodeTableForTesting()
342 memset(new_table, 0, max_functions * sizeof(*new_table)); in ReserveCodeTableForTesting()
348 jump_table_ = CreateEmptyJumpTable(max_functions); in ReserveCodeTableForTesting()
Dwasm-code-manager.h315 void ReserveCodeTableForTesting(uint32_t max_functions);