timecounter 133 arch/i386/isa/clock.c u_int i8254_get_timecount(struct timecounter *tc);
timecounter 134 arch/i386/isa/clock.c u_int i8254_simple_get_timecount(struct timecounter *tc);
timecounter 136 arch/i386/isa/clock.c static struct timecounter i8254_timecounter = {
timecounter 223 arch/i386/isa/clock.c if (timecounter->tc_get_timecount == i8254_get_timecount) {
timecounter 716 arch/i386/isa/clock.c i8254_simple_get_timecount(struct timecounter *tc)
timecounter 722 arch/i386/isa/clock.c i8254_get_timecount(struct timecounter *tc)
timecounter 73 arch/i386/pci/elan520.c struct timecounter sc_tc;
timecounter 91 arch/i386/pci/elan520.c u_int elansc_tc_read(struct timecounter *);
timecounter 130 arch/i386/pci/elan520.c struct timecounter *tc;
timecounter 242 arch/i386/pci/elan520.c elansc_tc_read(struct timecounter *tc)
timecounter 62 arch/i386/pci/geodesc.c u_int geodesc_get_timecount(struct timecounter *tc);
timecounter 64 arch/i386/pci/geodesc.c struct timecounter geodesc_timecounter = {
timecounter 156 arch/i386/pci/geodesc.c geodesc_get_timecount(struct timecounter *tc)
timecounter 54 arch/i386/pci/gscpm.c u_int gscpm_get_timecount(struct timecounter *tc);
timecounter 56 arch/i386/pci/gscpm.c struct timecounter gscpm_timecounter = {
timecounter 136 arch/i386/pci/gscpm.c gscpm_get_timecount(struct timecounter *tc)
timecounter 61 arch/i386/pci/ichpcib.c u_int ichpcib_get_timecount(struct timecounter *tc);
timecounter 63 arch/i386/pci/ichpcib.c struct timecounter ichpcib_timecounter = {
timecounter 289 arch/i386/pci/ichpcib.c ichpcib_get_timecount(struct timecounter *tc)
timecounter 36 dev/acpi/acpihpet.c u_int acpihpet_gettime(struct timecounter *tc);
timecounter 38 dev/acpi/acpihpet.c static struct timecounter hpet_timecounter = {
timecounter 116 dev/acpi/acpihpet.c acpihpet_gettime(struct timecounter *tc)
timecounter 35 dev/acpi/acpitimer.c u_int acpi_get_timecount(struct timecounter *tc);
timecounter 37 dev/acpi/acpitimer.c static struct timecounter acpi_timecounter = {
timecounter 110 dev/acpi/acpitimer.c acpi_get_timecount(struct timecounter *tc)
timecounter 85 dev/pci/amdpm.c u_int amdpm_get_timecount(struct timecounter *tc);
timecounter 91 dev/pci/amdpm.c static struct timecounter amdpm_timecounter = {
timecounter 338 dev/pci/amdpm.c amdpm_get_timecount(struct timecounter *tc)
timecounter 86 dev/pci/viaenv.c u_int viaenv_get_timecount(struct timecounter *tc);
timecounter 88 dev/pci/viaenv.c struct timecounter viaenv_timecounter = {
timecounter 368 dev/pci/viaenv.c viaenv_get_timecount(struct timecounter *tc)
timecounter 30 kern/kern_tc.c u_int dummy_get_timecount(struct timecounter *);
timecounter 43 kern/kern_tc.c dummy_get_timecount(struct timecounter *tc)
timecounter 50 kern/kern_tc.c static struct timecounter dummy_timecounter = {
timecounter 56 kern/kern_tc.c struct timecounter *th_counter;
timecounter 91 kern/kern_tc.c struct timecounter *timecounter = &dummy_timecounter;
timecounter 92 kern/kern_tc.c static struct timecounter *timecounters = &dummy_timecounter;
timecounter 110 kern/kern_tc.c struct timecounter *tc;
timecounter 237 kern/kern_tc.c tc_init(struct timecounter *tc)
timecounter 263 kern/kern_tc.c if (tc->tc_quality < timecounter->tc_quality)
timecounter 265 kern/kern_tc.c if (tc->tc_quality == timecounter->tc_quality &&
timecounter 266 kern/kern_tc.c tc->tc_frequency < timecounter->tc_frequency)
timecounter 270 kern/kern_tc.c timecounter = tc;
timecounter 343 kern/kern_tc.c if (th->th_counter != timecounter)
timecounter 344 kern/kern_tc.c ncount = timecounter->tc_get_timecount(timecounter);
timecounter 387 kern/kern_tc.c if (th->th_counter != timecounter) {
timecounter 388 kern/kern_tc.c th->th_counter = timecounter;
timecounter 439 kern/kern_tc.c struct timecounter *newtc, *tc;
timecounter 442 kern/kern_tc.c tc = timecounter;
timecounter 456 kern/kern_tc.c timecounter = newtc;
timecounter 467 kern/kern_tc.c struct timecounter *tc;
timecounter 530 kern/kern_tc.c (void)timecounter->tc_get_timecount(timecounter);
timecounter 531 kern/kern_tc.c (void)timecounter->tc_get_timecount(timecounter);
timecounter 577 kern/kern_tc.c *adjust += timecounter->tc_freq_adj;
timecounter 584 kern/kern_tc.c *old = timecounter->tc_freq_adj;
timecounter 587 kern/kern_tc.c timecounter->tc_freq_adj = *new;
timecounter 31 sys/timetc.h struct timecounter;
timecounter 32 sys/timetc.h typedef u_int timecounter_get_t(struct timecounter *);
timecounter 33 sys/timetc.h typedef void timecounter_pps_t(struct timecounter *);
timecounter 35 sys/timetc.h struct timecounter {
timecounter 63 sys/timetc.h struct timecounter *tc_next;
timecounter 69 sys/timetc.h extern struct timecounter *timecounter;
timecounter 72 sys/timetc.h void tc_init(struct timecounter *tc);