Searched refs:temp_map (Results 1 – 10 of 10) sorted by relevance
/external/google-breakpad/src/common/windows/ |
D | omap.cc | 631 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/bison/src/ |
D | lalr.c | 76 goto_number *temp_map; in set_goto_map() local 79 temp_map = xnmalloc (nvars + 1, sizeof *temp_map); in set_goto_map() 102 temp_map[i - ntokens] = k; in set_goto_map() 107 goto_map[i - ntokens] = temp_map[i - ntokens]; in set_goto_map() 110 temp_map[nsyms - ntokens] = ngotos; in set_goto_map() 122 goto_number k = temp_map[TRANSITION_SYMBOL (sp, i) - ntokens]++; in set_goto_map() 128 free (temp_map); in set_goto_map()
|
/external/mesa3d/src/gallium/drivers/svga/ |
D | svga_tgsi_vgpu10.c | 128 } temp_map[VGPU10_MAX_TEMPS]; /**< arrayId, element */ member 712 return emit->temp_map[index].arrayId; in get_temp_array_id() 729 return emit->temp_map[index].index; in remap_temp_index() 2251 emit->temp_map[i].arrayId = arrayID; in emit_vgpu10_declaration() 2252 emit->temp_map[i].index = i - decl->Range.First; in emit_vgpu10_declaration() 2651 emit->temp_map[i].arrayId = arrayID; in emit_temporaries_declaration() 2652 emit->temp_map[i].index = i; in emit_temporaries_declaration() 2761 if (emit->temp_map[i].arrayId == 0) { in emit_temporaries_declaration() 2762 emit->temp_map[i].index = reg++; in emit_temporaries_declaration() 2770 i, emit->temp_map[i].arrayId, emit->temp_map[i].index); in emit_temporaries_declaration()
|
/external/v8/src/crankshaft/ia32/ |
D | lithium-ia32.h | 1916 LOperand* temp_map) { in LStoreNamedField() argument 1920 temps_[1] = temp_map; in LStoreNamedField() 1926 LOperand* temp_map() { return temps_[1]; } in temp_map() function
|
D | lithium-ia32.cc | 2244 LOperand* temp_map = needs_write_barrier_for_map ? TempRegister() : NULL; in DoStoreNamedField() local 2246 return new(zone()) LStoreNamedField(obj, val, temp, temp_map); in DoStoreNamedField()
|
D | lithium-codegen-ia32.cc | 3564 Register temp_map = ToRegister(instr->temp_map()); in DoStoreNamedField() local 3566 __ RecordWriteForMap(object, transition, temp_map, temp, kSaveFPRegs); in DoStoreNamedField()
|
/external/v8/src/crankshaft/x87/ |
D | lithium-x87.h | 1902 LOperand* temp_map) { in LStoreNamedField() argument 1906 temps_[1] = temp_map; in LStoreNamedField() 1912 LOperand* temp_map() { return temps_[1]; } in temp_map() function
|
D | lithium-codegen-x87.cc | 3852 Register temp_map = ToRegister(instr->temp_map()); in DoStoreNamedField() local 3853 __ mov(temp_map, transition); in DoStoreNamedField() 3854 __ mov(FieldOperand(object, HeapObject::kMapOffset), temp_map); in DoStoreNamedField() 3856 __ RecordWriteForMap(object, transition, temp_map, temp, kSaveFPRegs); in DoStoreNamedField()
|
D | lithium-x87.cc | 2246 LOperand* temp_map = needs_write_barrier_for_map ? TempRegister() : NULL; in DoStoreNamedField() local 2248 return new(zone()) LStoreNamedField(obj, val, temp, temp_map); in DoStoreNamedField()
|
/external/bison/ |
D | ChangeLog-2012 | 11552 * src/lalr.c (set_goto_map): Likewise, for temp_map.
|