Searched refs:field (Results 1 - 11 of 11) sorted by relevance

/gem5/ext/libelf/
H A Delf_queue.h157 #define SLIST_FOREACH(var, head, field) \
160 (var) = SLIST_NEXT((var), field))
162 #define SLIST_FOREACH_SAFE(var, head, field, tvar) \
164 (var) && ((tvar) = SLIST_NEXT((var), field), 1); \
167 #define SLIST_FOREACH_PREVPTR(var, varp, head, field) \
170 (varp) = &SLIST_NEXT((var), field))
176 #define SLIST_INSERT_AFTER(slistelm, elm, field) do { \
177 SLIST_NEXT((elm), field) = SLIST_NEXT((slistelm), field); \
178 SLIST_NEXT((slistelm), field)
[all...]
/gem5/src/mem/slicc/ast/
H A DMemberExprAST.py31 def __init__(self, slicc, expr_ast, field):
35 self.field = field
38 return "[MemberExprAST: %r.%r]" % (self.expr_ast, self.field)
48 code("(*$gcode).m_${{self.field}}")
50 code("($gcode).m_${{self.field}}")
54 # Verify that this is a valid field name for this type
55 if self.field in return_type.data_members:
56 # Return the type of the field
57 return return_type.data_members[self.field]
[all...]
H A DTypeDeclAST.py66 for field in self.field_asts:
67 field.generate(new_type)
H A DEnumDeclAST.py61 for field in self.fields:
62 field.generate(t)
/gem5/util/
H A Ddiff_config.pl148 # Compare the values of each field; print any differences
149 foreach my $field ( sort keys %section1 ) {
150 if ($section1{$field} ne $section2{$field}) {
151 my $diff1 = compareValues($section1{$field}, $section2{$field});
152 my $diff2 = compareValues($section2{$field}, $section1{$field});
167 print "\t$field\n";
175 } # end foreach field
[all...]
/gem5/src/base/
H A Dbitunion.test.cc121 Bitfield<16, 15> field; local
125 contained.field = fieldVal;
/gem5/ext/libfdt/
H A Dlibfdt.h127 #define fdt_get_header(fdt, field) \
128 (fdt32_to_cpu(((const struct fdt_header *)(fdt))->field))
/gem5/ext/pybind11/include/pybind11/
H A Dnumpy.h513 for (auto field : attr("fields").attr("items")()) {
514 auto spec = field.cast<tuple>();
1099 // https://docs.scipy.org/doc/numpy/release.html#multiple-field-indexing-assignment-of-structured-arrays
1105 for (auto& field : ordered_fields) {
1106 if (!field.descr)
1107 pybind11_fail(std::string("NumPy: unsupported field dtype: `") +
1108 field.name + "` @ " + tinfo.name());
1109 names.append(PYBIND11_STR_TYPE(field.name));
1110 formats.append(field.descr);
1111 offsets.append(pybind11::int_(field
[all...]
/gem5/ext/googletest/googlemock/test/
H A Dgmock_link_test.h236 int field() const { return field_; } function in class:FieldHelper
618 Matcher<const FieldHelper&> m = Property(&FieldHelper::field, Eq(0));
621 Matcher<const FieldHelper*> m2 = Property(&FieldHelper::field, Eq(0));
/gem5/ext/googletest/googletest/src/
H A Dgtest-port.cc96 T ReadProcFileField(const string& filename, int field) { argument
99 while (field-- > 0) {
/gem5/ext/googletest/googlemock/include/gmock/
H A Dgmock-matchers.h750 // field.
793 // value_tuple have different number of fields or incompatible field
2178 // Implements the Field() matcher for matching a field (i.e. member
2183 FieldMatcher(FieldType Class::*field,
2185 : field_(field), matcher_(matcher) {}
2188 *os << "is an object whose given field ";
2193 *os << "is an object whose given field ";
2211 *listener << "whose given field is ";
2221 // Since *p has a field, it must be a class/struct/union type and
2935 // Key(inner_matcher) matches an std::pair whose 'first' field matche
[all...]

Completed in 42 milliseconds