Searched refs:none (Results 1 - 25 of 26) sorted by relevance

12

/gem5/src/cpu/testers/traffic_gen/
H A Dstream_gen.cc52 case Enums::none:
/gem5/src/dev/net/
H A Ddist_packet.hh67 enum class ReqType { immediate, collective, pending, none };
H A Ddist_iface.cc114 needExit = ReqType::none;
115 needCkpt = ReqType::none;
116 needStopSync = ReqType::none;
140 if (needCkpt != ReqType::none)
143 if (needExit != ReqType::none)
145 if (needStopSync != ReqType::none)
181 header.needCkpt = ReqType::none;
187 header.needExit = ReqType::none;
194 header.needStopSync = ReqType::none;
255 doCkpt = (do_ckpt != ReqType::none);
[all...]
/gem5/src/systemc/ext/tlm_core/1/req_rsp/ports/
H A Devent_finder.hh66 static sc_core::sc_event none; local
67 return none;
/gem5/util/m5/
H A DMakefile.thumb45 CROSS_COMPILE?=arm-none-linux-gnueabi-
/gem5/src/mem/
H A Dsnoop_filter.cc58 if ((sf_item.requested | sf_item.holder).none()) {
133 panic_if((sf_item.holder & req_port).none(),
142 panic_if((sf_item.holder & req_port).none(), "requester %x is not a " \
228 if (cpkt->isInvalidate() && sf_item.requested.none()) {
273 panic_if((sf_item.holder & rsp_mask).none(),
278 panic_if((sf_item.requested & req_mask).none(), "SF value %x.%x missing "\
366 panic_if((sf_item.requested & slave_mask).none(),
/gem5/src/systemc/ext/core/
H A Dsc_event.hh272 static const sc_gem5::InternalScEvent none; local
280 return none;
/gem5/src/mem/ruby/common/
H A DSet.hh160 return r.none();
188 bool isEmpty() const { return bits.none(); }
/gem5/ext/pybind11/tests/
H A Dtest_methods_and_attributes.cpp152 return py::none().release();
405 m.def("no_none1", &none1, py::arg().none(false));
406 m.def("no_none2", &none2, py::arg().none(false));
407 m.def("no_none3", &none3, py::arg().none(false));
408 m.def("no_none4", &none4, py::arg().none(false));
409 m.def("no_none5", &none5, py::arg().none(false));
411 m.def("ok_none2", &none2, py::arg().none(true));
413 m.def("ok_none4", &none4, py::arg().none(true));
H A Dtest_builtin_casters.cpp111 m.def("defer_none_cstring", [](py::none) { return true; });
113 m.def("defer_none_custom", [](py::none) { return true; });
115 m.def("nodefer_none_void", [](py::none) { return false; });
H A Dtest_stl.cpp177 m.def("nodefer_none_optional", [](py::none) { return false; });
H A Dtest_copy_move.cpp93 if (!src) return none().release();
/gem5/src/base/stats/
H A Dinfo.hh45 const FlagsType none = 0x0000; member in namespace:Stats
/gem5/ext/pybind11/include/pybind11/
H A Dfunctional.h87 return none().inc_ref();
H A Dattr.h127 bool none : 1; ///< True if None is allowed when loading member in struct:argument_record
129 argument_record(const char *name, const char *descr, handle value, bool convert, bool none) argument
130 : name(name), descr(descr), value(value), convert(convert), none(none) { }
360 r->args.emplace_back("self", nullptr, handle(), true /*convert*/, false /*none not allowed*/);
369 r->args.emplace_back("self", nullptr /*descr*/, handle() /*parent*/, true /*convert*/, false /*none not allowed*/);
480 /// Extract the ``type`` from the first `call_guard` in `Extras...` (or `void_type` if none found)
H A Dcast.h505 return none().release();
951 if (!src) return none().release(); \
1068 return none().inc_ref();
1108 return none().inc_ref();
1279 bool none = false;
1287 none = true;
1294 if (src == nullptr) return pybind11::none().inc_ref();
1307 operator CharT*() { return none ? nullptr : const_cast<CharT *>(static_cast<StringType &>(str_caster).c_str()); }
1309 if (none)
1792 arg &none(boo
[all...]
H A Dpybind11.h451 return none().release().ptr();
524 if (arg_rec && !arg_rec->none && arg.is_none()) {
820 sibling(getattr(*this, name_, none())), extra...);
979 attr(name) = property(fget.ptr() ? fget : none(),
980 fset.ptr() ? fset : none(),
981 /*deleter*/none(),
1112 sibling(getattr(*this, name_, none())), extra...);
1122 sibling(getattr(*this, name_, none())), extra...);
1444 ), none(), none(), "");
[all...]
H A Deigen.h233 handle eigen_ref_array(Type &src, handle parent = none()) { argument
234 // none here is to get past array's should-we-copy detection, which currently always
378 return eigen_array_cast<props>(src, none(), is_eigen_mutable_map<MapType>::value);
H A Dpytypes.h1012 class none : public object { class in inherits:object
1014 PYBIND11_OBJECT(none, object, detail::PyNone_Check)
1015 none() : object(Py_None, borrowed_t{}) { } function in class:none
/gem5/src/arch/hsail/insts/
H A Dmain.cc152 if (w->initMask.none()) {
/gem5/src/dev/arm/
H A Dufs_device.cc788 .flags(none);
792 .flags(none);
796 .flags(none);
802 .flags(none);
807 .flags(none);
812 .flags(none);
816 .flags(none);
820 .flags(none);
824 .flags(none);
858 .flags(none);
[all...]
H A Dflash_device.cc486 .flags(none);
/gem5/src/base/
H A Dcprintf_formats.hh49 enum { none, string, integer, character, floating } format; enumerator in enum:cp::Format::__anon2
67 format = none;
H A Dstatistics.cc161 : flags(none), precision(-1), prereq(0), storageParams(NULL)
/gem5/src/dev/serial/
H A Dterminal.cc152 case Enums::TerminalDump::none:

Completed in 62 milliseconds

12