Home
last modified time | relevance | path

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

/OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/rkwifi/bcmdhd_indep_power/
H A Dbcmutils.c3778 uint32 in_hi, in_lo; in bcm_shl_64() local
3789 in_lo = (uint32)(input & MASK_32_BITS); in bcm_shl_64()
3794 masked_lo = (in_lo & mask) >> (32 - shift_amt); in bcm_shl_64()
3798 in_lo = in_lo << shift_amt; in bcm_shl_64()
3804 in_hi = in_lo << shift_amt; in bcm_shl_64()
3805 in_lo = 0; in bcm_shl_64()
3808 shl_out = (((uint64)in_hi << 32) | in_lo); in bcm_shl_64()
3816 uint32 in_hi, in_lo; in bcm_shr_64() local
3827 in_lo = (uint32)(input & MASK_32_BITS); in bcm_shr_64()
3836 in_lo = ((uint32)in_lo >> shift_amt) | (masked_hi << (32 - shift_amt)); in bcm_shr_64()
[all …]