Lines Matching refs:upper
736 unsigned int upper, lower; in hackrf_s_frequency() local
746 upper = dev->f_adc; in hackrf_s_frequency()
748 buf[0] = (upper >> 0) & 0xff; in hackrf_s_frequency()
749 buf[1] = (upper >> 8) & 0xff; in hackrf_s_frequency()
750 buf[2] = (upper >> 16) & 0xff; in hackrf_s_frequency()
751 buf[3] = (upper >> 24) & 0xff; in hackrf_s_frequency()
761 upper = dev->f_rf / 1000000; in hackrf_s_frequency()
763 buf[0] = (upper >> 0) & 0xff; in hackrf_s_frequency()
764 buf[1] = (upper >> 8) & 0xff; in hackrf_s_frequency()
765 buf[2] = (upper >> 16) & 0xff; in hackrf_s_frequency()
766 buf[3] = (upper >> 24) & 0xff; in hackrf_s_frequency()