Searched refs:Name (Results 1 - 22 of 22) sorted by relevance

/gem5/src/systemc/tests/systemc/kernel/sc_object/test02/
H A Dtest02.cpp33 Name, Affiliation, Date:
42 class Name : public sc_object { class in inherits:sc_object
44 Name(const char* name) : sc_object(name) function in class:Name
62 Name name(0);
63 Name name1("");
/gem5/ext/systemc/src/sysc/kernel/
H A Dsc_ver.cpp122 #define SC_API_PERFORM_CHECK_( Type, Name, Symbol ) \
124 static bool SC_CONCAT_UNDERSCORE_( Name, config_seen ) = false; \
125 static Type SC_CONCAT_UNDERSCORE_( Name, config ); \
126 if( ! SC_CONCAT_UNDERSCORE_( Name, config_seen ) ) { \
127 SC_CONCAT_UNDERSCORE_( Name, config_seen ) = true; \
128 SC_CONCAT_UNDERSCORE_( Name, config ) = Name; \
129 } else if( SC_CONCAT_UNDERSCORE_( Name, config ) != Name ) { \
/gem5/src/systemc/tests/systemc/bugs/stack_alignment/
H A Dstack_alignment.cpp40 Name, Affiliation, Date:
74 # define ALIGNED_ARRAY( Type, Name, Size, Align ) \
75 Type Name[Size] __attribute__((aligned(Align)))
77 # define ALIGNED_ARRAY( Type, Name, Size, Align ) \
78 __declspec(align(Align)) Type Name[Size]
/gem5/src/arch/sparc/insts/
H A Dnop.cc85 iop = InstObjParams(name, Name, 'Nop', code, opt_flags)
/gem5/ext/pybind11/include/pybind11/
H A Dpytypes.h779 #define PYBIND11_OBJECT_COMMON(Name, Parent, CheckFun) \
781 PYBIND11_DEPRECATED("Use reinterpret_borrow<"#Name">() or reinterpret_steal<"#Name">()") \
782 Name(handle h, bool is_borrowed) : Parent(is_borrowed ? Parent(h, borrowed_t{}) : Parent(h, stolen_t{})) { } \
783 Name(handle h, borrowed_t) : Parent(h, borrowed_t{}) { } \
784 Name(handle h, stolen_t) : Parent(h, stolen_t{}) { } \
789 #define PYBIND11_OBJECT_CVT(Name, Parent, CheckFun, ConvertFun) \
790 PYBIND11_OBJECT_COMMON(Name, Parent, CheckFun) \
792 Name(const object &o) \
795 Name(objec
[all...]
H A Dnumpy.h1196 #define PYBIND11_FIELD_DESCRIPTOR_EX(T, Field, Name) \
1198 Name, offsetof(T, Field), sizeof(decltype(std::declval<T>().Field)), \
/gem5/ext/pybind11/tests/
H A Dtest_factory_constructors.cpp145 #define MAKE_TAG_TYPE(Name) \
146 struct Name##_tag {}; \
147 py::class_<Name##_tag>(m_tag, #Name "_tag").def(py::init<>()); \
148 m_tag.attr(#Name) = py::cast(Name##_tag{})
/gem5/ext/systemc/src/sysc/datatypes/int/
H A Dsc_signed_bitref.inc33 Name, Affiliation, Date:
H A Dsc_unsigned_bitref.inc33 Name, Affiliation, Date:
H A Dsc_signed_subref.inc33 Name, Affiliation, Date:
H A Dsc_unsigned_subref.inc33 Name, Affiliation, Date:
H A Dsc_nbcommon.inc40 Name, Affiliation, Date:
/gem5/src/systemc/dt/int/
H A Dsc_signed_bitref.inc33 Name, Affiliation, Date:
H A Dsc_unsigned_bitref.inc33 Name, Affiliation, Date:
H A Dsc_nbcommon.inc40 Name, Affiliation, Date:
H A Dsc_signed_subref.inc33 Name, Affiliation, Date:
H A Dsc_unsigned_subref.inc33 Name, Affiliation, Date:
/gem5/ext/ply/example/GardenSnake/
H A DGardenSnake.py341 if isinstance(left, ast.Name):
345 # List of things - make sure they are Name nodes
348 if not isinstance(child, ast.Name):
556 p[0] = ast.Name(p[1])
/gem5/ext/googletest/googlemock/src/
H A Dgmock-spec-builders.cc320 const char* UntypedFunctionMockerBase::Name() const
328 "Name() must not be called before SetOwnerAndName() has "
414 ss << " Function call: " << Name();
/gem5/ext/googletest/googlemock/include/gmock/
H A Dgmock-spec-builders.h207 const char* Name() const
233 // Name of the function being mocked. Only valid after this mock
1659 *os << " Function call: " << Name();
/gem5/ext/googletest/googletest/src/
H A Dgtest.cc3294 #define GTEST_REPEATER_METHOD_(Name, Type) \
3295 void TestEventRepeater::Name(const Type& parameter) { \
3298 listeners_[i]->Name(parameter); \
3304 #define GTEST_REVERSE_REPEATER_METHOD_(Name, Type) \
3305 void TestEventRepeater::Name(const Type& parameter) { \
3308 listeners_[i]->Name(parameter); \
/gem5/src/arch/
H A Disa_parser.py249 Name = name[0].upper()
251 Name += name[1:]
252 context.update({ 'name' : name, 'Name' : Name })

Completed in 80 milliseconds