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

/gem5/src/arch/sparc/
H A Dtlb_map.hh58 if (r.real == i->first.real &&
62 (r.real || r.contextId == i->first.contextId))
71 if (r.real != i->first.real)
73 if (!r.real && r.contextId != i->first.contextId)
160 i->first.real << " " << i->second << std::endl;
H A Dpagetable.cc45 SERIALIZE_SCALAR(range.real);
62 UNSERIALIZE_SCALAR(range.real);
H A Dpagetable.hh189 bool real; member in struct:SparcISA::TlbRange
194 if (real && !r2.real)
196 if (!real && r2.real)
199 if (!real && !r2.real) {
223 real == r2.real;
258 range.real
[all...]
H A Dtlb.hh108 /** lookup an entry in the TLB based on the partition id, and real bit if
109 * real is true or the partition id, and context id if real is false.
112 * @param real is this a real->phys or virt->phys translation
119 TlbEntry *lookup(Addr va, int partition_id, bool real, int context_id = 0,
127 void insert(Addr vpn, int partition_id, int context_id, bool real,
141 void demapPage(Addr va, int partition_id, bool real, int context_id);
H A Dtlb.cc97 TLB::insert(Addr va, int partition_id, int context_id, bool real, argument
111 tr.real = real;
116 va, PTE.paddr(), partition_id, context_id, (int)real, entry);
120 if (tlb[x].range.real == real &&
124 (real || tlb[x].range.contextId == context_id ))
178 new_entry->range.real = real;
198 TLB::lookup(Addr va, int partition_id, bool real, in argument
256 demapPage(Addr va, int partition_id, bool real, int context_id) argument
613 bool real = false; local
[all...]
/gem5/ext/pybind11/include/pybind11/
H A Dcomplex.h50 if (result.real == -1.0 && PyErr_Occurred()) {
54 value = std::complex<T>((T) result.real, (T) result.imag);
59 return PyComplex_FromDoubles((double) src.real(), (double) src.imag());
/gem5/ext/pybind11/tests/
H A Dtest_numpy_dtypes.cpp434 ptr[i].cflt.real(float(i));
436 ptr[i].cdbl.real(double(i) + 0.5);
H A Dtest_builtin_casters.cpp157 m.def("complex_cast", [](std::complex<float> x) { return "({}, {})"_s.format(x.real(), x.imag()); });

Completed in 13 milliseconds