Home
last modified time | relevance | path

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

/external/google-breakpad/src/common/windows/
Domap.cc631 Mapping temp_map; in MapAddressRange() local
636 temp_map.push_back(mr); in MapAddressRange()
641 if (temp_map.empty()) in MapAddressRange()
645 std::sort(temp_map.begin(), temp_map.end(), MappedRangeMappedLess); in MapAddressRange()
650 mapped_ranges->push_back(AddressRange(temp_map[0].rva_transformed, 0)); in MapAddressRange()
651 for (size_t i = 1; i < temp_map.size(); ++i) { in MapAddressRange()
652 if (temp_map[i].rva_transformed > mapped_ranges->back().rva) in MapAddressRange()
653 mapped_ranges->push_back(AddressRange(temp_map[i].rva_transformed, 0)); in MapAddressRange()
667 DWORD rva_begin = temp_map[0].rva_transformed; in MapAddressRange()
668 DWORD rva_cur_content = rva_begin + temp_map[0].length; in MapAddressRange()
[all …]
/external/mesa3d/src/gallium/drivers/svga/
Dsvga_tgsi_vgpu10.c128 } temp_map[VGPU10_MAX_TEMPS]; /**< arrayId, element */ member
714 return emit->temp_map[index].arrayId; in get_temp_array_id()
731 return emit->temp_map[index].index; in remap_temp_index()
2257 emit->temp_map[i].arrayId = arrayID; in emit_vgpu10_declaration()
2258 emit->temp_map[i].index = i - decl->Range.First; in emit_vgpu10_declaration()
2667 emit->temp_map[i].arrayId = arrayID; in emit_temporaries_declaration()
2668 emit->temp_map[i].index = i; in emit_temporaries_declaration()
2776 if (emit->temp_map[i].arrayId == 0) { in emit_temporaries_declaration()
2777 emit->temp_map[i].index = reg++; in emit_temporaries_declaration()
2785 i, emit->temp_map[i].arrayId, emit->temp_map[i].index); in emit_temporaries_declaration()