Lines Matching refs:consume_count
426 uint32_t signatures_count = consume_count("types count", kV8MaxWasmTypes); in DecodeTypeSection()
441 consume_count("imports count", kV8MaxWasmImports); in DecodeImportSection()
533 consume_count("functions count", kV8MaxWasmFunctions); in DecodeFunctionSection()
561 uint32_t table_count = consume_count("table count", max_count); in DecodeTableSection()
577 uint32_t memory_count = consume_count("memory count", kV8MaxWasmMemories); in DecodeMemorySection()
590 uint32_t globals_count = consume_count("globals count", kV8MaxWasmGlobals); in DecodeGlobalSection()
606 consume_count("exports count", kV8MaxWasmExports); in DecodeExportSection()
706 consume_count("element count", FLAG_wasm_max_table_size); in DecodeElementSection()
728 consume_count("number of elements", kV8MaxWasmTableEntries); in DecodeElementSection()
786 consume_count("data segments count", kV8MaxWasmDataSegments); in DecodeDataSection()
832 consume_count("exception count", kV8MaxWasmExceptions); in DecodeExceptionSection()
1089 uint32_t consume_count(const char* name, size_t maximum) { in consume_count() function in v8::internal::wasm::ModuleDecoderImpl
1358 consume_count("param count", kV8MaxWasmFunctionParams); in consume_sig_internal()
1372 return_count = consume_count("return count", max_return_count); in consume_sig_internal()