Lines Matching refs:txc
82 struct timex txc;
84 txc.modes = ADJ_SETOFFSET;
85 txc.time.tv_sec = 0;
86 txc.time.tv_usec = 0;
88 if (adjtimex(&txc) < 0) {
96 struct timex txc;
101 txc.modes = ADJ_TICK | ADJ_FREQUENCY;
102 txc.tick = 1000000 / user_hz + tick_offset;
103 txc.freq = (1e6 * freq - user_hz * tick_offset) * (1 << 16);
105 if (adjtimex(&txc) < 0) {