Searched refs:temp (Results 51 - 65 of 65) sorted by relevance

123

/gem5/ext/mcpat/
H A Darray.cc270 l_ip.temp = (unsigned int)round(temperature/10.0)*10;
H A Dlogic.cc233 l_ip.temp = (unsigned int)round(temperature/10.0)*10;
674 interface_ip.temp = (unsigned int)round(temperature/10.0)*10;
923 l_ip.temp = (unsigned int)round(temperature/10.0)*10;
/gem5/ext/googletest/googlemock/scripts/generator/cpp/
H A Dast.py1240 temp = self._GetNextToken()
1241 if temp.token_type == tokenize.SYNTAX and temp.name == '(':
1250 assert temp.name == ';', (temp, name_tokens, var_token)
/gem5/src/dev/net/
H A Di8254xGBe.cc1171 T *temp; local
1173 temp = new T;
1175 (uint8_t*)temp,sizeof(T));
1176 usedCache.push_back(temp);
1182 temp = new T;
1184 (uint8_t*)temp,sizeof(T));
1185 unusedCache.push_back(temp);
/gem5/ext/pybind11/include/pybind11/
H A Dcast.h697 auto temp = reinterpret_steal<object>(converter(src.ptr(), typeinfo->type)); local
698 if (load_impl<ThisT>(temp, false)) {
699 loader_life_support::add_patient(temp);
1176 object temp;
1193 temp = reinterpret_steal<object>(PyUnicode_FromObject(load_src.ptr()));
1194 if (!temp) { PyErr_Clear(); return false; }
1195 load_src = temp;
/gem5/src/systemc/ext/dt/bit/
H A Dsc_bit_proxies.hh2081 sc_digit temp; local
2084 temp = this->m_obj.get_word(wi);
2085 temp = (temp & ~(1 << bi)) | ((w & 1) << bi);
2086 this->m_obj.set_word(wi, temp);
2097 sc_digit temp; local
2100 temp = this->m_obj.get_cword(wi);
2101 temp = (temp & ~(1 << bi)) | ((w & 1) << bi);
2102 this->m_obj.set_cword(wi, temp);
[all...]
/gem5/ext/googletest/googletest/test/
H A Dgtest-port_test.cc1058 int temp = value_; local
1086 value_ = temp + 1;
/gem5/src/cpu/o3/
H A Dlsq_unit_impl.hh339 DynInstPtr temp = memDepViolator; local
343 return temp;
/gem5/ext/systemc/src/sysc/datatypes/bit/
H A Dsc_bit_proxies.h2346 sc_digit temp; local
2349 temp = this->m_obj.get_word(wi);
2350 temp = (temp & ~(1 << bi)) | ((w&1) << bi);
2351 this->m_obj.set_word(wi, temp);
2364 sc_digit temp; local
2367 temp = this->m_obj.get_cword(wi);
2368 temp = (temp & ~(1 << bi)) | ((w&1) << bi);
2369 this->m_obj.set_cword(wi, temp);
[all...]
/gem5/ext/googletest/googlemock/test/
H A Dgmock-generated-actions_test.cc629 arg2_type temp = arg2; local
630 (*temp)++;
/gem5/src/systemc/ext/dt/int/
H A Dsc_signed.hh936 sc_unsigned temp(length());
937 a->to_sc_unsigned(temp);
938 return operator = (temp);
H A Dsc_unsigned.hh2054 sc_unsigned temp(length());
2055 a->to_sc_unsigned(temp);
2056 return *this = temp;
/gem5/ext/systemc/src/sysc/datatypes/int/
H A Dsc_signed.h1039 sc_unsigned temp( length() );
1040 a->to_sc_unsigned(temp);
1041 return operator = (temp);
H A Dsc_unsigned.h2041 sc_unsigned temp( length() );
2042 a->to_sc_unsigned(temp);
2043 return *this = temp;
/gem5/src/sim/
H A Dsyscall_emul.hh2349 Process *temp = sys->threadContexts[i]->getProcessPtr(); local
2350 if (temp->pid() == tid) {
2351 tgt_proc = temp;

Completed in 106 milliseconds

123