Searched refs:max_functions (Results 1 – 2 of 2) sorted by relevance
339 void NativeModule::ReserveCodeTableForTesting(uint32_t max_functions) { in ReserveCodeTableForTesting() argument340 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()
315 void ReserveCodeTableForTesting(uint32_t max_functions);