Searched refs:sequence (Results 1 - 6 of 6) sorted by relevance

/gem5/src/mem/cache/prefetch/
H A Dspatio_temporal_memory_streaming.hh81 /** Intearleaving position on the global access sequence */
87 std::vector<SequenceEntry> sequence; member in struct:STeMSPrefetcher::ActiveGenerationTableEntry
90 seqCounter(0), sequence(num_positions)
98 for (auto &seq_entry : sequence) {
116 sequence = e.sequence;
120 * Add a new access to the sequence
126 for (auto &seq_entry : sequence) {
158 /** Delta within the global miss order sequence */
183 * Reconstructs a sequence o
[all...]
H A Dspatio_temporal_memory_streaming.cc70 for (auto &seq_entry : agt_entry.sequence) {
171 // entry in the RMOB, and reconstruct the registered access sequence
178 // reconstruct the access sequence
213 for (auto &seq_entry : pst_entry->sequence) {
/gem5/ext/pybind11/include/pybind11/
H A Dstl.h147 if (!isinstance<sequence>(src) || isinstance<str>(src))
149 auto s = reinterpret_borrow<sequence>(src);
164 void reserve_maybe(sequence s, Type *) { value.reserve(s.size()); }
165 void reserve_maybe(sequence, void *) { }
212 if (!isinstance<sequence>(src))
214 auto l = reinterpret_borrow<sequence>(src);
H A Dcast.h1325 (v0 & 0xE0) == 0xC0 ? 2 : // 0b110xxxxx - start of 2-byte sequence
1326 (v0 & 0xF0) == 0xE0 ? 3 : // 0b1110xxxx - start of 3-byte sequence
1327 4; // 0b11110xxx - start of 4-byte sequence
1368 if (!isinstance<sequence>(src))
1370 const auto seq = reinterpret_borrow<sequence>(src);
1394 static constexpr bool load_impl(const sequence &, bool, index_sequence<>) { return true; }
1397 bool load_impl(const sequence &seq, bool convert, index_sequence<Is...>) {
H A Dpytypes.h67 Return an internal functor to invoke the object's sequence protocol. Casting
602 /// STL iterator template used for tuple, list, sequence and dict
672 /// Full read and write access using the sequence protocol: see ``detail::sequence_accessor``
1242 class sequence : public object { class in inherits:object
1244 PYBIND11_OBJECT_DEFAULT(sequence, object, PySequence_Check)
/gem5/ext/pybind11/tests/
H A Dtest_sequences_and_iterators.cpp2 tests/test_sequences_and_iterators.cpp -- supporting Pythons' sequence protocol, iterators,
191 /// Optional sequence protocol operations
340 m.def("sequence_iterator", &test_random_access_iterator<py::sequence>);

Completed in 29 milliseconds