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.h2080 LOperand* temp_map) {
2084 temps_[1] = temp_map;
2090 LOperand* temp_map() { return temps_[1]; } function in class:v8::internal::final
2077 LStoreNamedField(LOperand* obj, LOperand* val, LOperand* temp, LOperand* temp_map) argument
H A Dlithium-ia32.cc2416 LOperand* temp_map = needs_write_barrier_for_map ? TempRegister() : NULL; local
2418 return new(zone()) LStoreNamedField(obj, val, temp, temp_map);
H A Dlithium-codegen-ia32.cc3812 Register temp_map = ToRegister(instr->temp_map()); local
3814 __ RecordWriteForMap(object, transition, temp_map, temp, kSaveFPRegs);
/external/v8/src/crankshaft/x87/
H A Dlithium-x87.h2084 LOperand* temp_map) {
2088 temps_[1] = temp_map;
2094 LOperand* temp_map() { return temps_[1]; } function in class:v8::internal::final
2081 LStoreNamedField(LOperand* obj, LOperand* val, LOperand* temp, LOperand* temp_map) argument
H A Dlithium-codegen-x87.cc4164 Register temp_map = ToRegister(instr->temp_map()); local
4165 __ mov(temp_map, transition);
4166 __ mov(FieldOperand(object, HeapObject::kMapOffset), temp_map); local
4168 __ RecordWriteForMap(object, transition, temp_map, temp, kSaveFPRegs);
H A Dlithium-x87.cc2420 LOperand* temp_map = needs_write_barrier_for_map ? TempRegister() : NULL; local
2422 return new(zone()) LStoreNamedField(obj, val, temp, temp_map);

Completed in 238 milliseconds