Searched refs:Type (Results 26 - 50 of 50) sorted by relevance

12

/gem5/src/mem/slicc/symbols/
H A DSymbolTable.py32 from slicc.symbols.Type import Type
47 void = Type(self, "void", location, pairs)
135 if isinstance(symbol, Type) and not symbol.isPrimitive:
H A DType.py47 class Type(Symbol): class in inherits:Symbol
49 super(Type, self).__init__(table, ident, location, pairs)
62 # check for interface that this Type implements
373 # Prototypes for methods defined for the Type
788 __all__ = [ "Type" ]
/gem5/src/mem/slicc/ast/
H A DActionDeclAST.py29 from slicc.symbols import Action, Type, Var
51 addr_type = self.symtab.find("Addr", Type)
54 self.error("Type 'Addr' not declared.")
H A DFuncDeclAST.py29 from slicc.symbols import Func, Type
49 void_type = self.symtab.find("void", Type)
/gem5/src/dev/sparc/
H A Diob.hh106 enum Type { enum in class:Iob
137 void generateIpi(Type type, int cpu_id, int vector);
H A Diob.cc221 Type type;
226 type = (Type)bits(data,17,16);
278 Iob::generateIpi(Type type, int cpu_id, int vector)
/gem5/ext/googletest/googletest/include/gtest/
H A Dgtest-spi.h100 TestPartResult::Type type,
105 const TestPartResult::Type type_;
H A Dgtest.h164 void ReportFailureInUnknownLocation(TestPartResult::Type result_type,
1268 void AddTestPartResult(TestPartResult::Type result_type,
1300 TestPartResult::Type result_type,
1671 AssertHelper(TestPartResult::Type type,
1687 AssertHelperData(TestPartResult::Type t,
1693 TestPartResult::Type const type;
/gem5/src/sim/
H A Dvptr.hh42 typedef T Type; typedef in class:VPtr
/gem5/configs/boot/
H A Discsi-server.rcS43 Lun 0 Sectors=8000000,Type=nullio
/gem5/ext/pybind11/include/pybind11/detail/
H A Ddescr.h81 template <typename Type> constexpr descr<1, Type> _() { return {'%'}; }
/gem5/src/arch/x86/bios/
H A Dsmbios.hh115 const static uint8_t Type = 0; member in class:X86ISA::SMBios::BiosInformation
H A Dsmbios.cc158 SMBiosStructure(p, Type),
/gem5/ext/systemc/src/sysc/datatypes/int/
H A Dsc_nbutils.h611 template< class Type >
614 from_uint(int ulen, sc_digit *u, Type v)
641 template< class Type >
644 get_sign(Type &u)
654 if( SC_LIKELY_( u > (std::numeric_limits<Type>::min)() ) )
700 template< class Type >
703 div_by_zero(Type s)
707 "div_by_zero<Type>( Type ) : division by zero" );
/gem5/src/systemc/ext/dt/int/
H A Dsc_nbutils.hh436 template<class Type>
438 from_uint(int ulen, sc_digit *u, Type v)
463 template<class Type>
465 get_sign(Type &u)
475 if (SC_LIKELY_(u > (std::numeric_limits<Type>::min)()))
520 template<class Type>
522 div_by_zero(Type s)
526 "div_by_zero<Type>(Type) : division by zero");
/gem5/src/systemc/ext/utils/
H A Dsc_vector.hh143 #define SC_RPTYPE_(Type) \
145 ::sc_gem5::special_result & (*) Type>::type::value
209 typedef ElementType Type; typedef in class:sc_core::sc_direct_access
245 typedef AccessType Type; typedef in class:sc_core::sc_member_access
266 typename AccessPolicy::Type>,
274 typedef typename Policy::Type AccessType;
/gem5/ext/drampower/src/
H A DCmdScheduler.h81 int64_t Type; member in class:Data::cmdScheduler::commandItem
H A DCmdScheduler.cc104 cmd.Type = PRECHARGE;
115 cmd.Type = ACTIVATE;
119 cmd.Type = WRITE;
129 PreRDWR.Type = READ;
296 PreRDWR.Type, transType);
304 cmd.Type = ACTIVATE;
353 cmd.Type = transType;
395 PRE[bankAddr].Type = PRECHARGE;
/gem5/ext/pybind11/include/pybind11/
H A Dpybind11.h127 /* Type casters for the function arguments and return value */
1548 template <typename Type> class enum_ : public class_<Type> {
1550 using Base = class_<Type>;
1555 using Scalar = typename std::underlying_type<Type>::type;
1559 : class_<Type>(scope, name, extra...), m_base(*this, scope) {
1561 constexpr bool is_convertible = std::is_convertible<Type, Scalar>::value;
1564 def(init([](Scalar i) { return static_cast<Type>(i); }));
1565 def("__int__", [](Type value) { return (Scalar) value; });
1567 def("__long__", [](Type valu
[all...]
H A Dnumpy.h1192 # define PYBIND11_NUMPY_DTYPE(Type, ...) ((void)0)
1193 # define PYBIND11_NUMPY_DTYPE_EX(Type, ...) ((void)0)
1238 #define PYBIND11_NUMPY_DTYPE(Type, ...) \
1239 ::pybind11::detail::npy_format_descriptor<Type>::register_dtype \
1241 {PYBIND11_MAP_LIST (PYBIND11_FIELD_DESCRIPTOR, Type, __VA_ARGS__)})
1260 #define PYBIND11_NUMPY_DTYPE_EX(Type, ...) \
1261 ::pybind11::detail::npy_format_descriptor<Type>::register_dtype \
1263 {PYBIND11_MAP2_LIST (PYBIND11_FIELD_DESCRIPTOR_EX, Type, __VA_ARGS__)})
/gem5/ext/googletest/googletest/include/gtest/internal/
H A Dgtest-param-util.h32 // Type and function utilities for implementing parameterized tests.
395 typedef std::string Type(const TestParamInfo<ParamType>&); typedef in struct:testing::internal::ParamNameGenFunc
399 typename ParamNameGenFunc<ParamType>::Type *GetParamNameGen() {
507 typedef typename ParamNameGenFunc<ParamType>::Type ParamNameGeneratorFunc;
H A Dgtest-internal.h633 typedef typename Types::Head Type; typedef
634 typedef Fixture<Type> FixtureClass;
635 typedef typename GTEST_BIND_(TestSel, Type) TestClass;
643 GetTypeName<Type>().c_str(),
/gem5/ext/googletest/googlemock/scripts/generator/cpp/
H A Dast.py409 class Type(_GenericDeclaration): class in inherits:_GenericDeclaration
410 """Type used for any variable (eg class, primitive, struct, etc)."""
417 templated_types: [Class (Type?)] template type info between <>
446 # By definition, Is* are always False. A Type can only exist in
500 result.append(Type(name_tokens[0].start, name_tokens[-1].end,
608 parameter_type = Type(first_token.start, first_token.end,
663 return Type(start, end, name, templated_types, modifiers,
732 var_type = Type(pos_token.start, pos_token.end, type_name,
1118 # can be tricky. For example, Return::Type::Is::Hard::To::Find().
1414 # We got something like: Type variabl
[all...]
/gem5/ext/googletest/googletest/src/
H A Dgtest.cc361 AssertHelper::AssertHelper(TestPartResult::Type type,
635 TestPartResult::Type type,
672 TestPartResult::Type type,
2250 void ReportFailureInUnknownLocation(TestPartResult::Type result_type,
2826 // Converts a TestPartResult::Type enum to human-friendly string
2830 static const char * TestPartResultTypeToString(TestPartResult::Type type) {
3294 #define GTEST_REPEATER_METHOD_(Name, Type) \
3295 void TestEventRepeater::Name(const Type& parameter) { \
3304 #define GTEST_REVERSE_REPEATER_METHOD_(Name, Type) \
3305 void TestEventRepeater::Name(const Type
[all...]
/gem5/ext/googletest/googlemock/test/
H A Dgmock-matchers_test.cc914 // Type<T>::IsTypeOf(v) compiles iff the type of value v is T, where T
919 struct Type { struct in namespace:testing::gmock_matchers_test
928 Type<Matcher<int> >::IsTypeOf(TypedEq<int>(5));
929 Type<Matcher<double> >::IsTypeOf(TypedEq<double>(5));

Completed in 110 milliseconds

12