Home
last modified time | relevance | path

Searched refs:tsc2 (Results 1 – 3 of 3) sorted by relevance

/linux-3.4.99/drivers/staging/vt6656/
Dtkip.c194 unsigned int tsc0, tsc1, tsc2; in TKIPvMixKey() local
205 tsc2 = (unsigned int)(pnl % 65536); /* lsb */ in TKIPvMixKey()
231 ppk5 = (p1k[4] + tsc2) % 65536; in TKIPvMixKey()
249 pbyRC4Key[0] = (tsc2 >> 8) % 256; in TKIPvMixKey()
250 pbyRC4Key[1] = (((tsc2 >> 8) % 256) | 0x20) & 0x7f; in TKIPvMixKey()
251 pbyRC4Key[2] = tsc2 % 256; in TKIPvMixKey()
/linux-3.4.99/drivers/staging/vt6655/
Dtkip.c196 unsigned int tsc0, tsc1, tsc2; in TKIPvMixKey() local
207 tsc2 = (unsigned int)(pnl % 65536); /* lsb */ in TKIPvMixKey()
232 ppk5 = (p1k[4] + tsc2) % 65536; in TKIPvMixKey()
250 pbyRC4Key[0] = (tsc2 >> 8) % 256; in TKIPvMixKey()
251 pbyRC4Key[1] = (((tsc2 >> 8) % 256) | 0x20) & 0x7f; in TKIPvMixKey()
252 pbyRC4Key[2] = tsc2 % 256; in TKIPvMixKey()
/linux-3.4.99/arch/x86/kernel/
Dtsc.c404 u64 tsc1, tsc2, delta, ref1, ref2; in native_calibrate_tsc() local
457 tsc2 = tsc_read_refs(&ref2, hpet); in native_calibrate_tsc()
468 if (tsc1 == ULLONG_MAX || tsc2 == ULLONG_MAX) in native_calibrate_tsc()
471 tsc2 = (tsc2 - tsc1) * 1000000LL; in native_calibrate_tsc()
473 tsc2 = calc_hpet_ref(tsc2, ref1, ref2); in native_calibrate_tsc()
475 tsc2 = calc_pmtimer_ref(tsc2, ref1, ref2); in native_calibrate_tsc()
477 tsc_ref_min = min(tsc_ref_min, (unsigned long) tsc2); in native_calibrate_tsc()