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/bison/src/
H A Dlalr.c76 goto_number *temp_map; local
79 temp_map = xnmalloc (nvars + 1, sizeof *temp_map);
102 temp_map[i - ntokens] = k;
107 goto_map[i - ntokens] = temp_map[i - ntokens];
110 temp_map[nsyms - ntokens] = ngotos;
122 goto_number k = temp_map[TRANSITION_SYMBOL (sp, i) - ntokens]++;
128 free (temp_map);
/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.cc3566 Register temp_map = ToRegister(instr->temp_map()); local
3568 __ 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.cc3845 Register temp_map = ToRegister(instr->temp_map()); local
3846 __ mov(temp_map, transition);
3847 __ mov(FieldOperand(object, HeapObject::kMapOffset), temp_map); local
3849 __ 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 219 milliseconds