Searched refs:temp_map (Results 1 - 8 of 8) sorted by relevance

/external/google-breakpad/src/common/windows/
H A Domap.cc631 Mapping temp_map; local
636 temp_map.push_back(mr);
641 if (temp_map.empty())
645 std::sort(temp_map.begin(), temp_map.end(), MappedRangeMappedLess);
650 mapped_ranges->push_back(AddressRange(temp_map[0].rva_transformed, 0));
651 for (size_t i = 1; i < temp_map.size(); ++i) {
652 if (temp_map[i].rva_transformed > mapped_ranges->back().rva)
653 mapped_ranges->push_back(AddressRange(temp_map[i].rva_transformed, 0));
667 DWORD rva_begin = temp_map[
[all...]
/external/mesa3d/src/gallium/drivers/svga/
H A Dsvga_tgsi_vgpu10.c128 } temp_map[VGPU10_MAX_TEMPS]; /**< arrayId, element */ member in struct:svga_shader_emitter_v10
712 return emit->temp_map[index].arrayId;
729 return emit->temp_map[index].index;
2249 /* Fill in the temp_map entries for this array */
2251 emit->temp_map[i].arrayId = arrayID;
2252 emit->temp_map[i].index = i - decl->Range.First;
2649 /* Fill in the temp_map entries for this temp array */
2651 emit->temp_map[i].arrayId = arrayID;
2652 emit->temp_map[i].index = i;
2729 /* Initialize the temp_map arra
[all...]
/external/v8/src/crankshaft/ia32/
H A Dlithium-ia32.h1916 LOperand* temp_map) {
1920 temps_[1] = temp_map;
1926 LOperand* temp_map() { return temps_[1]; } function in class:v8::internal::final
1913 LStoreNamedField(LOperand* obj, LOperand* val, LOperand* temp, LOperand* temp_map) argument
H A Dlithium-ia32.cc2244 LOperand* temp_map = needs_write_barrier_for_map ? TempRegister() : NULL; local
2246 return new(zone()) LStoreNamedField(obj, val, temp, temp_map);
H A Dlithium-codegen-ia32.cc3564 Register temp_map = ToRegister(instr->temp_map()); local
3566 __ RecordWriteForMap(object, transition, temp_map, temp, kSaveFPRegs);
/external/v8/src/crankshaft/x87/
H A Dlithium-x87.h1902 LOperand* temp_map) {
1906 temps_[1] = temp_map;
1912 LOperand* temp_map() { return temps_[1]; } function in class:v8::internal::final
1899 LStoreNamedField(LOperand* obj, LOperand* val, LOperand* temp, LOperand* temp_map) argument
H A Dlithium-codegen-x87.cc3852 Register temp_map = ToRegister(instr->temp_map()); local
3853 __ mov(temp_map, transition);
3854 __ mov(FieldOperand(object, HeapObject::kMapOffset), temp_map); local
3856 __ RecordWriteForMap(object, transition, temp_map, temp, kSaveFPRegs);
H A Dlithium-x87.cc2246 LOperand* temp_map = needs_write_barrier_for_map ? TempRegister() : NULL; local
2248 return new(zone()) LStoreNamedField(obj, val, temp, temp_map);

Completed in 385 milliseconds