Home | History | Annotate | Download | only in wasm

Lines Matching defs:vector

349                                                std::vector<int32_t>(), true,
418 module->function_tables.push_back({0, 0, false, std::vector<int32_t>(),
524 std::vector<WasmExport> sorted_exports(module->export_table);
539 DCHECK(!cmp_less(*it, *last)); // Vector must be sorted.
584 std::vector<uint32_t> vector;
585 module->table_inits.push_back({table_index, offset, vector});
917 uint32_t consume_index(const char* name, std::vector<T>& vector, T** ptr) {
920 if (index >= vector.size()) {
922 static_cast<int>(vector.size()));
926 *ptr = &vector[index];
1094 std::vector<ValueType> params;
1106 std::vector<ValueType> returns;
1151 // Find section with given section code. Return Vector of the payload, or null
1152 // Vector if section is not found or module bytes are invalid.
1153 Vector<const byte> FindSection(const byte* module_start, const byte* module_end,
1166 return Vector<const uint8_t>(section_iter.payload_start(),
1173 return Vector<const uint8_t>();
1237 Vector<const byte> code_section =
1291 std::vector<AsmJsOffsetEntry> func_asm_offsets;
1316 std::vector<CustomSectionOffset> DecodeCustomSections(const byte* start,
1322 std::vector<CustomSectionOffset> result;