Lines Matching defs:vrbs
70 static void cfg_refvoltages_get(SANE_Int sensortype, SANE_Byte *vrts, SANE_Byte *vrms, SANE_Byte *vrbs);
71 static void hp3800_refvoltages(SANE_Int usb, SANE_Int sensor, SANE_Byte *vrts, SANE_Byte *vrms, SANE_Byte *vrbs);
72 static void hp3970_refvoltages(SANE_Int usb, SANE_Int sensor, SANE_Byte *vrts, SANE_Byte *vrms, SANE_Byte *vrbs);
676 static void hp3800_refvoltages(SANE_Int usb, SANE_Int sensor, SANE_Byte *vrts, SANE_Byte *vrms, SANE_Byte *vrbs)
688 /* usb, sensor , {vrts, vrms, vrbs} */
693 if ((vrts != NULL)&&(vrms != NULL)&&(vrbs != NULL))
698 *vrts = *vrms = *vrbs = 0;
706 *vrbs = myreg[a].values[2];
712 static void hp3970_refvoltages(SANE_Int usb, SANE_Int sensor, SANE_Byte *vrts, SANE_Byte *vrms, SANE_Byte *vrbs)
724 /* usb, sensor , {vrts, vrms, vrbs} */
731 if ((vrts != NULL)&&(vrms != NULL)&&(vrbs != NULL))
736 *vrts = *vrms = *vrbs = 0;
744 *vrbs = myreg[a].values[2];
750 static void cfg_refvoltages_get(SANE_Int sensortype, SANE_Byte *vrts, SANE_Byte *vrms, SANE_Byte *vrbs)
757 hp3800_refvoltages(RTS_Debug->usbtype, sensortype, vrts, vrms, vrbs);
761 hp3970_refvoltages(RTS_Debug->usbtype, sensortype, vrts, vrms, vrbs);