Searched refs:nullptr (Results 126 - 150 of 327) sorted by relevance

1234567891011>>

/gem5/src/mem/qos/
H A Dq_policy.hh106 : memCtrl(nullptr)
/gem5/src/systemc/core/
H A Dprocess_types.hh59 Process(name, func, internal), ctx(nullptr)
H A Dprocess.hh112 void clearDynamic() { setDynamic(nullptr); }
212 _process(p), _signal(nullptr), _sync(s), _value(v)
H A Dsc_prim.cc46 sc_prim_channel::sc_prim_channel() : _gem5_channel(nullptr)
58 sc_object(_name), _gem5_channel(nullptr)
/gem5/src/systemc/ext/tlm_core/2/interfaces/
H A Ddmi.hh50 m_dmi_ptr = nullptr;
/gem5/src/arch/riscv/
H A Dstacktrace.hh87 return tc != nullptr;
H A Disa.cc129 std::time(nullptr));
130 return std::time(nullptr);
/gem5/src/cpu/checker/
H A Dcpu.cc71 unverifiedReq(nullptr),
72 unverifiedMemData(nullptr)
197 predicate = (mem_req != nullptr);
282 predicate = (mem_req != nullptr);
/gem5/src/mem/ruby/system/
H A DVIPERCoalescer.cc220 nullptr);
251 nullptr);
279 nullptr);
295 nullptr);
/gem5/src/mem/
H A Dport.cc88 _slavePort = nullptr;
/gem5/src/base/stats/
H A Dgroup.cc52 : mergedParent(name ? nullptr : parent)
/gem5/ext/pybind11/tests/
H A Dtest_opaque_types.cpp59 m.def("return_null_str", []() { return (char *) nullptr; });
H A Dtest_builtin_casters.cpp103 m.def("return_none_string", []() -> std::string * { return nullptr; });
104 m.def("return_none_char", []() -> const char * { return nullptr; });
105 m.def("return_none_bool", []() -> bool * { return nullptr; });
106 m.def("return_none_int", []() -> int * { return nullptr; });
107 m.def("return_none_float", []() -> float * { return nullptr; });
/gem5/ext/pybind11/include/pybind11/
H A Dpybind11.h72 (detail::function_signature_t<Func> *) nullptr, extra...);
79 (Return (*) (Class *, Arg...)) nullptr, extra...);
86 (Return (*)(const Class *, Arg ...)) nullptr, extra...);
274 if (arg_index != args || types[type_index] != nullptr)
293 detail::function_record *chain = nullptr, *chain_start = rec;
301 chain = nullptr;
364 for (auto it = chain_start; it != nullptr; it = it->next) {
428 const function_record *overloads = (function_record *) PyCapsule_GetPointer(self, nullptr),
434 handle parent = n_args_in > 0 ? PyTuple_GET_ITEM(args_in, 0) : nullptr,
445 return nullptr;
794 module(const char *name, const char *doc = nullptr) argument
837 def_submodule(const char *name, const char *doc = nullptr) argument
1523 value(char const* name_, object value, const char *doc = nullptr) argument
1586 value(char const* name, Type value, const char *doc = nullptr) argument
[all...]
H A Dpytypes.h176 /// The default constructor creates a handle with a ``nullptr``-valued pointer
205 explicit operator bool() const { return m_ptr != nullptr; }
215 bool check() const { return m_ptr != nullptr; }
217 PyObject *m_ptr = nullptr;
238 object(object &&other) noexcept { m_ptr = other.m_ptr; other.m_ptr = nullptr; }
243 Resets the internal pointer to ``nullptr`` without without decreasing the
249 m_ptr = nullptr;
264 other.m_ptr = nullptr;
374 template <> inline bool isinstance<object>(handle obj) { return obj.ptr() != nullptr; }
711 PyObject *key = nullptr, *valu
1151 capsule(const void *value, const char *name = nullptr, void (*destructor)(PyObject *) = nullptr) argument
[all...]
/gem5/src/systemc/tlm_bridge/
H A Dgem5_to_tlm.cc135 blockingRequest = nullptr;
198 return nullptr;
397 blockingResponse = nullptr;
467 system(params->system), blockingRequest(nullptr),
468 needToSendRequestRetry(false), blockingResponse(nullptr),
/gem5/src/cpu/minor/
H A Dexec_context.hh119 return execute.getLSQ().pushRequest(inst, true /* load */, nullptr,
120 size, addr, flags, nullptr, nullptr, byteEnable);
131 size, addr, flags, res, nullptr, byteEnable);
139 return execute.getLSQ().pushRequest(inst, false /* amo */, nullptr,
140 size, addr, flags, nullptr, std::move(amo_op));
/gem5/ext/dsent/
H A Dinterface.cc79 ms_model = nullptr;
103 ms_model = nullptr;
/gem5/src/dev/pci/
H A Dhost.cc78 return device != devices.end() ? device->second : nullptr;
85 return device != devices.end() ? device->second : nullptr;
/gem5/src/mem/ruby/network/simple/
H A DThrottle.cc95 if (out == nullptr || in == nullptr) {
/gem5/util/tlm/src/
H A Dsim_control.cc63 Gem5SimControl* Gem5SimControl::instance = nullptr;
74 if (instance != nullptr) {
/gem5/src/mem/ruby/network/
H A DNetwork.cc182 m_toNetQueues[id].push_back(nullptr);
193 m_fromNetQueues[id].push_back(nullptr);
/gem5/src/systemc/utils/
H A Dsc_report.cc65 _msgType = r._msgType ? strdup(r._msgType) : nullptr;
67 _msg = r._msg ? strdup(r._msg) : nullptr;
/gem5/src/base/
H A Dstr.hh117 long long r = std::stoll(value, nullptr, 0);
129 unsigned long long r = std::stoull(value, nullptr, 0);
/gem5/src/mem/cache/tags/
H A Dfa_lru.hh87 FALRUBlk() : CacheBlk(), prev(nullptr), next(nullptr), inCachesMask(0) {}
180 * case nullptr pointer is returned. This has all the implications of a
336 * updates statistics. If the input block is nullptr then we

Completed in 44 milliseconds

1234567891011>>