Lines Matching +full:full +full:- +full:bit
1 /*-
2 * SPDX-License-Identifier: BSD-2-Clause
4 * Copyright (c) 2002-2009 Sam Leffler, Errno Consulting
35 * Extend 15-bit time stamp from rx descriptor to
36 * a full 64-bit TSF using the specified TSF.
42 tsf -= 0x8000; in ath_extend_tsf15()
48 * Extend 32-bit time stamp from rx descriptor to
49 * a full 64-bit TSF using the specified TSF.
57 if (rstamp > tsf_low && (rstamp - tsf_low > 0x10000000)) in ath_extend_tsf32()
58 tsf64 -= 0x100000000ULL; in ath_extend_tsf32()
60 if (rstamp < tsf_low && (tsf_low - rstamp > 0x10000000)) in ath_extend_tsf32()
67 * Extend the TSF from the RX descriptor to a full 64 bit TSF.
70 * include the 32 bit TSF value.
75 if (sc->sc_rxtsf32) in ath_extend_tsf()