Searched full:foo* (Results 201 - 225 of 234) sorted by relevance

12345678910

/gem5/src/base/
H A Dbitfield.hh244 #define __has_builtin(foo) 0
/gem5/src/gpu-compute/
H A Dcompute_unit.cc1186 uint8_t foo = 0; local
1187 prefetch_pkt->dataStatic(&foo);
/gem5/src/doc/
H A Dse-files.txt121 /home/me/gem5_folder/cpuinfo __OR__ /nonsensical_name/foo_bar, etc.. The
/gem5/src/python/m5/
H A Dparams.py1285 # type as Enum(foo) where foo is either a list or dictionary of
H A DSimObject.py611 # Set attribute (called on foo.attr = value when foo is an
1283 # Set attribute (called on foo.attr = value when foo is an
/gem5/src/sim/
H A Dprocess.cc462 // Determine how large the interpreters footprint will be in the process
/gem5/src/mem/ruby/protocol/
H A DMOESI_AMD_Base-CorePair.sm2380 d_deallocateTBE; // FOO
2389 d_deallocateTBE; // FOO
H A DMOESI_AMD_Base-Region-CorePair.sm2475 d_deallocateTBE; // FOO
2485 d_deallocateTBE; // FOO
/gem5/src/mem/slicc/symbols/
H A DStateMachine.py1570 <!- Column footer->
/gem5/
H A DSConstruct71 # % cd <path-to-src>/gem5 ; scons /local/foo/build/ALPHA/gem5.debug
72 # % cd /local/foo/build/ALPHA; scons -C <path-to-src>/gem5 gem5.debug
234 # example, for target 'foo/bar/build/ALPHA_SE/arch/alpha/blah.do' we
/gem5/ext/pybind11/include/pybind11/
H A Dattr.h80 m.def("foo", foo, py::call_guard<T>());
86 m.def("foo", [](args...) {
88 return foo(args...); // forwarded arguments
H A Dpytypes.h859 void foo(py::iterator it) {
/gem5/ext/pybind11/docs/
H A Dconf.py200 # If true, "Created using Sphinx" is shown in the HTML footer. Default is True.
203 # If true, "(C) Copyright ..." is shown in the HTML footer. Default is True.
306 # How to display URL addresses: 'footnote', 'no', or 'inline'.
307 #texinfo_show_urls = 'footnote'
H A Dfaq.rst84 int foo(int &i) { i++; return 123; }
90 m.def("foo", [](int i) { int rv = foo(i); return std::make_tuple(rv, i); });
H A Dchangelog.rst517 * Allow aliasing pybind11 methods: ``cls.attr("foo") = cls.attr("bar")``.
536 int foo() { return 42; }
543 .def("foo", &Derived::foo); // function is actually from `Base`
967 notation such as ``foo(a1, a2, *args, "ka"_a=1, "kb"_a=2, **kwargs)``. `#372 <https://github.com/pybind/pybind11/pull/372>`_.
H A Dclasses.rst417 int foo(int x, float y);
418 int foo(int x, float y) const;
422 .def("foo_mutable", py::overload_cast<int, float>(&Widget::foo))
423 .def("foo_const", py::overload_cast<int, float>(&Widget::foo, py::const_));
/gem5/ext/pybind11/tests/
H A Dtest_methods_and_attributes.py263 assert not hasattr(instance, "foo")
264 assert "foo" not in dir(instance)
267 instance.foo = 42
268 assert hasattr(instance, "foo")
269 assert instance.foo == 42
270 assert "foo" in dir(instance)
273 assert "foo" in instance.__dict__
275 assert not hasattr(instance, "foo")
293 derived.foobar = 100
294 assert derived.foobar
[all...]
H A Dtest_multiple_inheritance.cpp52 int foo() { return i; } function in struct:Base1
57 .def("foo", &Base1::foo);
104 int foo() { return i; } function in struct:Base1a
109 .def("foo", &Base1a::foo);
H A Dtest_kwargs_and_defaults.py15 assert doc(m.KWClass.foo0) == \
16 "foo0(self: m.kwargs_and_defaults.KWClass, arg0: int, arg1: float) -> None"
17 assert doc(m.KWClass.foo1) == \
18 "foo1(self: m.kwargs_and_defaults.KWClass, x: int, y: float) -> None"
H A Dtest_kwargs_and_defaults.cpp98 struct KWClass { void foo(int, float) {} }; function in struct:KWClass
100 .def("foo0", &KWClass::foo)
101 .def("foo1", &KWClass::foo, "x"_a, "y"_a);
H A Dtest_pytypes.py44 assert m.set_contains({"foo"}, "foo")
64 assert m.dict_contains({"foo": None}, "foo")
94 assert m.bytes_from_string().decode() == "foo"
H A Dtest_stl.py112 pytest.raises(TypeError, m.double_or_zero, 'foo')
116 pytest.raises(TypeError, m.half_or_none, 'foo')
135 pytest.raises(TypeError, m.double_or_zero_exp, 'foo')
139 pytest.raises(TypeError, m.half_or_none_exp, 'foo')
/gem5/ext/pybind11/docs/advanced/
H A Dclasses.rst618 py::class_<Foo>(m, "Foo")
619 .def_property_readonly_static("foo", [](py::object /* self */) { return Foo(); });
979 int foo() const { return 42; }
983 .def("foo", &A::foo); // error: 'foo' is a protected member of 'A'
995 int foo() const { return 42; }
1000 using A::foo; // inherite
[all...]
H A Dfunctions.rst219 m.def("foo", foo, py::call_guard<T>());
225 m.def("foo", [](args...) {
227 return foo(args...); // forwarded arguments
271 >>> print_dict({'foo': 123, 'bar': 'hello'})
272 key=foo, value=123
H A Dmisc.rst272 m.def("foo", &foo, R"mydelimiter(
273 The foo function
280 m.def("foo", &foo, R"mydelimiter(The foo function

Completed in 86 milliseconds

12345678910