Searched refs:macLo (Results 1 - 4 of 4) sorted by relevance

/freebsd-9.3-release/sys/dev/ath/ath_hal/ar5210/
H A Dar5210_keycache.c79 uint32_t macHi, macLo; local
88 macLo = (mac[3] << 24)| (mac[2] << 16)
90 macLo >>= 1;
91 macLo |= (macHi & 1) << 31; /* carry */
94 macLo = macHi = 0;
97 OS_REG_WRITE(ah, AR_KEYTABLE_MAC0(entry), macLo);
/freebsd-9.3-release/sys/dev/ath/ath_hal/ar5211/
H A Dar5211_keycache.c83 uint32_t macHi, macLo; local
97 macLo = (mac[3] << 24)| (mac[2] << 16)
99 macLo >>= 1;
100 macLo |= (macHi & 1) << 31; /* carry */
103 macLo = macHi = 0;
106 OS_REG_WRITE(ah, AR_KEYTABLE_MAC0(entry), macLo);
/freebsd-9.3-release/sys/dev/ath/ath_hal/ar5212/
H A Dar5212_keycache.c112 uint32_t macHi, macLo; local
136 macLo = (mac[3] << 24)| (mac[2] << 16)
138 macLo >>= 1;
139 macLo |= (macHi & 1) << 31; /* carry */
142 macLo = macHi = 0;
144 OS_REG_WRITE(ah, AR_KEYTABLE_MAC0(entry), macLo);
/freebsd-9.3-release/tools/tools/ath/athregs/
H A Ddumpregs.c670 u_int32_t macLo, macHi, type; local
676 macLo = OS_REG_READ(ah, AR_KEYTABLE_MAC0(entry));
678 if (macLo & (1<<31))
680 macLo <<= 1;
683 mac[0] = macLo & 0xff;
684 mac[1] = macLo >> 8;
685 mac[2] = macLo >> 16;
686 mac[3] = macLo >> 24;

Completed in 107 milliseconds