Searched refs:repeat (Results 1 - 19 of 19) sorted by relevance

/gem5/ext/googletest/googletest/test/
H A Dgtest_repeat_test.cc51 GTEST_DECLARE_int32_(repeat);
57 using testing::GTEST_FLAG(repeat);
172 void TestRepeat(int repeat) { argument
173 GTEST_FLAG(repeat) = repeat;
176 GTEST_CHECK_INT_EQ_(repeat > 0 ? 1 : 0, RUN_ALL_TESTS());
177 CheckCounts(repeat);
182 void TestRepeatWithEmptyFilter(int repeat) { argument
183 GTEST_FLAG(repeat) = repeat;
193 TestRepeatWithFilterForSuccessfulTests(int repeat) argument
211 TestRepeatWithFilterForFailedTests(int repeat) argument
[all...]
H A Dgtest_env_var_test_.cc94 if (strcmp(flag, "repeat") == 0) {
95 cout << GTEST_FLAG(repeat);
H A Dgtest-listener_test.cc216 ::testing::GTEST_FLAG(repeat) = 2;
H A Dgtest_unittest.cc50 || testing::GTEST_FLAG(repeat) > 0
216 using testing::GTEST_FLAG(repeat);
1551 GTEST_FLAG(repeat) = 1;
1578 EXPECT_EQ(1, GTEST_FLAG(repeat));
1594 GTEST_FLAG(repeat) = 100;
5467 repeat(1),
5549 static Flags Repeat(Int32 repeat) { argument
5551 flags.repeat = repeat;
5597 Int32 repeat; member in struct:testing::Flags
[all...]
/gem5/src/sim/
H A Dsim_events.cc61 cause(_cause), code(c), repeat(r)
68 cause(_cause), code(c), repeat(r)
84 if (repeat) {
85 schedule(curTick() + repeat);
90 exitSimLoop(const std::string &message, int exit_code, Tick when, Tick repeat, argument
93 warn_if(serialize && (when != curTick() || repeat),
97 new GlobalSimLoopExitEvent(when + simQuantum, message, exit_code, repeat);
101 exitSimLoopNow(const std::string &message, int exit_code, Tick repeat, argument
104 new GlobalSimLoopExitEvent(message, exit_code, repeat);
110 cause(_cause), code(c), repeat(
[all...]
H A Dsim_exit.hh53 Tick when = curTick(), Tick repeat = 0,
58 Tick repeat = 0, bool serialize = false);
H A Dsim_events.hh60 Tick repeat; member in class:GlobalSimLoopExitEvent
64 Tick repeat = 0);
65 GlobalSimLoopExitEvent(const std::string &_cause, int c, Tick repeat = 0);
81 Tick repeat; member in class:LocalSimLoopExitEvent
85 LocalSimLoopExitEvent(const std::string &_cause, int c, Tick repeat = 0);
H A Dstat_control.hh75 * @param repeat How often the event should repeat. Set 0 to disable repeating.
78 Tick repeat = 0);
H A Dstat_control.cc221 Tick repeat; member in class:Stats::StatEvent
226 dump(_dump), reset(_reset), repeat(_repeat)
239 if (repeat) {
240 Stats::schedStatEvent(dump, reset, curTick() + repeat, repeat);
248 schedStatEvent(bool dump, bool reset, Tick when, Tick repeat) argument
254 dumpEvent = new StatEvent(when + simQuantum, dump, reset, repeat);
H A Dglobal_event.hh222 : Base(p, f), repeat(0)
226 : Base(p, f), repeat(_repeat)
235 Tick repeat; member in class:GlobalSyncEvent
H A Dglobal_event.cc157 if (repeat) {
158 schedule(curTick() + repeat);
H A Dpseudo_inst.cc443 Tick repeat = period * SimClock::Int::ns; local
445 Stats::schedStatEvent(false, true, when, repeat);
457 Tick repeat = period * SimClock::Int::ns; local
459 Stats::schedStatEvent(true, false, when, repeat);
471 Tick repeat = period * SimClock::Int::ns; local
473 Stats::schedStatEvent(true, true, when, repeat);
485 Tick repeat = period * SimClock::Int::ns; local
486 exitSimLoop("checkpoint", 0, when, repeat);
/gem5/src/cpu/
H A Dbase.hh104 void repeatEvent(bool repeat) { _repeatEvent = repeat; } argument
/gem5/src/dev/net/
H A Ddist_iface.cc338 // we have a local minimum of the start tick and repeat for the periodic
340 repeat = DistIface::sync->nextRepeat;
341 // Do a global barrier to agree on a common repeat value (the smallest
350 assert(DistIface::sync->nextRepeat <= repeat);
428 repeat = DistIface::sync->nextRepeat;
429 schedule(curTick() + repeat);
511 master->syncEvent->repeat);
H A Ddist_iface.hh149 * The repeat value for the next periodic sync
168 * @param repeat Frequency of dist synchronisation
171 void init(Tick start, Tick repeat);
/gem5/ext/googletest/googletest/src/
H A Dgtest-internal-inl.h98 const char kRepeatFlag[] = "repeat";
178 repeat_ = GTEST_FLAG(repeat);
199 GTEST_FLAG(repeat) = repeat_;
946 bool escaped, char ch, char repeat, const char* regex, const char* str);
H A Dgtest-port.cc739 // or \c otherwise. repeat is the repetition meta character (?, *,
745 bool escaped, char c, char repeat, const char* regex,
747 const size_t min_count = (repeat == '+') ? 1 : 0;
748 const size_t max_count = (repeat == '?') ? 1 :
744 MatchRepetitionAndRegexAtHead( bool escaped, char c, char repeat, const char* regex, const char* str) argument
H A Dgtest.cc263 repeat,
264 internal::Int32FromGTestEnv("repeat", 1),
265 "How many times to repeat each test. Specify a negative number "
3058 if (GTEST_FLAG(repeat) != 1)
4613 // How many times to repeat the tests? We don't want to repeat them
4615 const int repeat = in_subprocess_for_death_test ? 1 : GTEST_FLAG(repeat); local
4616 // Repeats forever if the repeat count is negative.
4617 const bool forever = repeat <
[all...]
/gem5/ext/googletest/googletest/include/gtest/
H A Dgtest.h123 GTEST_DECLARE_int32_(repeat);
999 // one iteration if GTEST_FLAG(repeat) is set. iteration is the iteration

Completed in 86 milliseconds