Lines Matching refs:val
262 Option_Value val[NUM_OPTIONS];
372 SANE_Int val = 255;
373 unsigned char *firstbyte = (unsigned char *) &val;
380 _lto2b (u_long val, SANE_Byte * bytes)
382 bytes[0] = (val >> 8) & 0xff;
383 bytes[1] = val & 0xff;
387 _lto3b (u_long val, SANE_Byte * bytes)
389 bytes[0] = (val >> 16) & 0xff;
390 bytes[1] = (val >> 8) & 0xff;
391 bytes[2] = val & 0xff;
395 _lto4b (u_long val, SANE_Byte * bytes)
397 bytes[0] = (val >> 24) & 0xff;
398 bytes[1] = (val >> 16) & 0xff;
399 bytes[2] = (val >> 8) & 0xff;
400 bytes[3] = val & 0xff;
459 #define get_paddingtype_val(i) (paddingtype[ get_paddingtype_id( (i) ) ].val)
463 #define get_halftone_code_val(i) (halftone[get_halftone_code_id( (i) ) ].val)
466 #define get_halftone_pattern_val(i) (halftone[get_halftone_pattern_id( (i) ) ].val)
469 #define get_auto_binarization_val(i) (auto_binarization[ get_auto_binarization_id( (i) ) ].val)
472 #define get_auto_separation_val(i) (auto_separation[ get_auto_separation_id( (i) ) ].val)
475 #define get_noisematrix_val(i) (noisematrix[ get_noisematrix_id( (i) ) ].val)
478 #define get_grayfilter_val(i) (grayfilter[ get_grayfilter_id( (i) ) ].val)
490 #define get_endorser_control(fd,val) (endorser_control( (fd), (val), GET ))
491 #define set_endorser_control(fd,val) (endorser_control( (fd), (val), SET ))
501 #define get_white_balance(fd,val) (white_balance( (fd), (val), GET ))
502 #define set_white_balance(fd,val) (white_balance( (fd), (val), SET ))
505 #define set_scan_wait_mode(fd,val) (scan_wait_mode( (fd), (val), SET ))
508 #define set_service_mode(fd,val) (service_mode( (fd), (val), SET ))