Searched refs:container (Results 1 - 13 of 13) sorted by relevance

/gem5/ext/googletest/googletest/test/
H A Dgtest-typed-test_test.h53 TypeParam container; local
57 TypeParam container; local
58 EXPECT_EQ(0U, container.size());
/gem5/src/arch/generic/
H A Dvec_pred_reg.hh67 /// @tparam Const True if the underlying container can be modified through
88 Container& container;
91 VecPredRegT(Container& c) : container(c) {}
96 reset() { container.reset(); }
101 set() { container.set(); }
107 container = that.container;
114 return container[idx * (Packed ? 1 : sizeof(VecElem))];
121 return container[idx * (Packed ? 1 : sizeof(VecElem))];
129 return container
245 Container container; member in class:VecPredRegContainer
[all...]
H A Dvec_reg.hh49 * The design is having a basic vector register container that holds the
54 * This file also describes two views of the container that have semantic
60 * underlying container. As VecRegT has some degree of type information it
63 * The second view of a container implemented in this file is VecLaneT, which
64 * is a view of a subset of the container.
166 * of VecRegT to view the container as a vector of NumElems elems of type
170 * @tparam Const Indicate if the underlying container can be modified through
186 /** Reference to container. */
187 Container& container;
191 VecRegT(Container& cnt) : container(cn
282 Container container; member in class:VecRegContainer
541 Cont& container; member in class:VecLaneT
[all...]
/gem5/src/base/
H A Dstl_helpers.hh73 // Treat all objects in an stl container as pointers to heap objects,
77 deletePointers(C<T,A> &container) argument
79 std::for_each(container.begin(), container.end(), deletePointer<T>);
82 // Write out all elements in an stl container as a space separated
/gem5/src/systemc/ext/tlm_utils/
H A Dinstance_specific_extensions_int.h74 instance_specific_extensions_per_accessor(container_type *container) : argument
75 m_container(container)
/gem5/src/arch/
H A Dmicro_asm.py126 def handle_statement(parser, container, statement):
141 container.labels[label.text] = microop
143 container.externs[label.text] = microop
144 container.add_microop(statement.mnemonic, microop)
149 if statement.name not in container.directives.keys():
152 container.directives[statement.name]
158 print(container.directives)
/gem5/ext/googletest/googlemock/test/
H A Dgmock-matchers_test.cc1332 map<int, char> container; local
1333 container.insert(make_pair(1, 'a'));
1334 container.insert(make_pair(2, 'b'));
1335 container.insert(make_pair(4, 'c'));
1336 EXPECT_THAT(container, Contains(Key(1)));
1337 EXPECT_THAT(container, Not(Contains(Key(3))));
1341 multimap<int, char> container; local
1342 container.insert(make_pair(1, 'a'));
1343 container.insert(make_pair(2, 'b'));
1344 container
1450 map<int, char> container; local
4074 vector<int> container; local
4099 vector<int> container; local
4106 vector<int> container; local
4118 map<string, int> container; local
4130 vector<int> container; local
4148 vector<int> container; local
4585 std::forward_list<int> container; local
4615 vector<int> container; local
[all...]
/gem5/ext/googletest/googlemock/include/gmock/internal/
H A Dgmock-internal-utils.h390 // modifier) RawContainer that's either an STL-style container or a
394 // - type is a type that provides an STL-style container view to
395 // (i.e. implements the STL container concept for) RawContainer;
399 // container view to raw_container, which is a RawContainer.
400 // - Copy(raw_container) returns an STL-style container view of a
404 // STL-style container.
411 static const_reference ConstReference(const RawContainer& container) { argument
415 return container;
417 static type Copy(const RawContainer& container) { return container; } argument
[all...]
/gem5/ext/systemc/src/tlm_utils/
H A Dinstance_specific_extensions.h108 instance_specific_extensions_per_accessor(U* container, cb inc, cb dec): m_container(container), m_inc(inc), m_dec(dec){ argument
178 //the pool for the container, plain as can be
270 if ((--use_count)==0) { //if this container isn't used any more
/gem5/ext/googletest/googlemock/include/gmock/
H A Dgmock-matchers.h2397 // Implements a matcher that checks the size of an STL-style container.
2428 virtual bool MatchAndExplain(Container container, argument
2430 SizeType size = container.size();
2450 // container.
2482 virtual bool MatchAndExplain(Container container, argument
2487 DistanceType distance = std::distance(begin(container), end(container));
2489 DistanceType distance = std::distance(container.begin(), container.end());
2510 // Implements an equality matcher for any STL-style container whos
2816 MatchAndExplainImpl(bool all_elements_should_match, Container container, MatchResultListener* listener) const argument
2862 MatchAndExplain(Container container, MatchResultListener* listener) const argument
2891 MatchAndExplain(Container container, MatchResultListener* listener) const argument
3161 MatchAndExplain(Container container, MatchResultListener* listener) const argument
3376 MatchAndExplain(Container container, MatchResultListener* listener) const argument
3665 ElementsAreArray(const Container& container) argument
3708 UnorderedElementsAreArray(const Container& container) argument
[all...]
/gem5/ext/googletest/googletest/include/gtest/
H A Dgtest-printers.h84 // The print primitives print the elements of an STL-style container
86 // const_iterator of the container. When const_iterator is an input
92 // being defined as many user-defined container types don't have
219 // Used to print a value that is not an STL-style container when the
367 // Used to print an STL-style container when the user doesn't define
372 const C& container, ::std::ostream* os) {
376 for (typename C::const_iterator it = container.begin();
377 it != container.end(); ++it, ++count) {
433 // Used to print a non-container, non-pointer value when the user
457 // STL-style container, th
370 DefaultPrintTo(IsContainer , false_type , const C& container, ::std::ostream* os) argument
[all...]
H A Dgtest-param-test.h90 // ValuesIn(container) - Yields values from a C-style array, an STL
91 // ValuesIn(begin,end) container, or an iterator range [begin, end).
253 // a container.
259 // ValuesIn(const Container& container)
261 // an STL-style container.
324 const Container& container) {
325 return ValuesIn(container.begin(), container.end());
323 ValuesIn( const Container& container) argument
/gem5/ext/googletest/googletest/include/gtest/internal/
H A Dgtest-param-util-generated.h71 const Container& container);

Completed in 92 milliseconds