Lines Matching defs:time
91 uint64_t time;
95 time = getTimeCounterFromTicks(curTick());
96 DPRINTF(Timer, "-- returning lower 32-bits of counter: %u\n", time);
97 pkt->setLE<uint32_t>(time);
100 time = getTimeCounterFromTicks(curTick());
101 time >>= 32;
102 DPRINTF(Timer, "-- returning upper 32-bits of counter: %u\n", time);
103 pkt->setLE<uint32_t>(time);
115 time = getTimeCounterFromTicks(cmpValEvent.when() - curTick());
117 time = 0;
119 DPRINTF(Timer, "-- returning lower 32-bits of comparator: %u\n", time);
120 pkt->setLE<uint32_t>(time);
126 time = getTimeCounterFromTicks(cmpValEvent.when() - curTick());
127 time >>= 32;
129 time = 0;
131 DPRINTF(Timer, "-- returning upper 32-bits of comparator: %u\n", time);
132 pkt->setLE<uint32_t>(time);
218 Tick time = parent->clockPeriod() * (control.prescalar + 1) * (cmpVal + 1);
220 if (time < curTick()) {
221 DPRINTF(Timer, "-- Event time %#x < curTick %#x\n", time, curTick());
228 parent->schedule(cmpValEvent, time);
229 DPRINTF(Timer, "-- Scheduling new event for: %d\n", time);