Searched refs:ts (Results 1 - 16 of 16) sorted by relevance

/gem5/src/cpu/kvm/
H A Dtimer.cc104 struct itimerspec ts; local
105 memset(&ts, 0, sizeof(ts));
107 ts.it_interval.tv_sec = 0;
108 ts.it_interval.tv_nsec = 0;
109 ts.it_value.tv_sec = hostNs(ticks) / 1000000000ULL;
110 ts.it_value.tv_nsec = hostNs(ticks) % 1000000000ULL;
112 assert(ts.it_value.tv_nsec > 0 || ts.it_value.tv_sec > 0);
115 ticks, ts
124 struct itimerspec ts; local
136 struct timespec ts; local
[all...]
/gem5/src/systemc/core/
H A Dscheduler.hh255 TimeSlot *&ts = timeSlots[tick]; local
256 if (!ts) {
257 ts = new TimeSlot;
258 schedule(ts, tick);
260 event->schedule(ts->events, tick);
278 TimeSlot *ts = tsit->second; local
279 ScEvents &events = ts->events;
285 deschedule(ts);
291 completeTimeSlot(TimeSlot *ts) argument
293 assert(ts
[all...]
H A Dscheduler.cc77 TimeSlot *&ts = tsp.second; local
78 while (!ts->events.empty())
79 ts->events.front()->deschedule();
80 deschedule(ts);
/gem5/src/base/
H A Dtime.cc145 timespec ts = time; local
148 clock_nanosleep(CLOCK_MONOTONIC, 0, &ts, NULL);
150 nanosleep(&ts, NULL);
H A Dtime.hh69 Time(const timespec &ts) { operator=(ts); } argument
143 operator=(const timespec &ts) argument
145 sec(ts.tv_sec);
146 nsec(ts.tv_nsec);
H A Dinet.hh350 void ts(ip_opt_data_ts &ts) const;
/gem5/src/arch/mips/
H A Ddt_constants.hh74 Bitfield<31> ts; member in namespace:MipsISA
H A Dpra_constants.hh117 Bitfield<21> ts; member in namespace:MipsISA
252 Bitfield<27, 24> ts; member in namespace:MipsISA
H A Disa.cc231 cfg2.ts = cp.CP0_Config2_TS;
/gem5/src/arch/riscv/
H A Dpra_constants.hh117 Bitfield<21> ts; member in namespace:RiscvISA
252 Bitfield<27, 24> ts; member in namespace:RiscvISA
/gem5/ext/dnet/
H A Dip.h341 struct ip_opt_data_ts ts; /* IP_OPT_TS */ member in union:ip_opt::ip_opt_data
/gem5/src/arch/x86/
H A Dprocess.cc408 cr0.ts = 0; // We don't do task switching, so causing fp exceptions
625 cr0.ts = 0; // We don't do task switching, so causing fp exceptions
745 cr0.ts = 0; // We don't do task switching, so causing fp exceptions
/gem5/ext/libelf/
H A Delf_update.c272 Elf_Scn *s, *ts; local
286 STAILQ_FOREACH_SAFE(s, &e->e_u.e_elf.e_scn, s_next, ts) {
/gem5/src/arch/x86/regs/
H A Dmisc.hh603 Bitfield<3> ts; // Task Switched member in namespace:X86ISA
/gem5/src/arch/arm/
H A Dprocess.cc237 hwcap |= (isa_r0.ts >= 1) ? Arm_Flagm : 0;
H A Dmiscregs_types.hh92 Bitfield<55, 52> ts; member in namespace:ArmISA

Completed in 49 milliseconds