Lines Matching defs:value
297 * Converts a register value to a hex/dec/bin representation.
305 more than one value is converted in a printf statement).
352 " R1: %s : scan value\n"
407 * Displays a single register value
677 * Writes a value to the currently open register.
920 DBG (4, "cis_set_dpi_value: dpi: %d -> value 0x%02x\n", dev->CIS.hw_hres, val);
1069 /* The TWAIN drivers always sends the same value: 0x96 */
1166 * During a multi-step feed, the expose time is fixed. The value depends
1452 read a few extra bytes -> use the last calibration value) */
1473 /* Insert an interpolated value */
1477 /* Store the plain value, but only if we still need pixels */
1481 pos += step; /* Take interpolated value into account for pos */
2414 int value = 0;
2421 DBG (1, "cis_drv_config: missing value for option top_adjust\n");
2429 DBG (1, "cis_drv_config: value for option top_adjust too small: "
2435 DBG (1, "cis_drv_config: value for option top_adjust too large: "
2439 /* In practice, there is a lower bound on the value that can be used,
2440 but if the top_skip value is smaller than that value, the only result
2445 DBG (3, "cis_drv_config: setting top skip value to %d\n",
2456 DBG (1, "cis_drv_config: unexpected value for option slow_skip\n");
2466 DBG (1, "cis_drv_config: missing value for option bw\n");
2469 value = atoi(optval);
2470 if (value < 0 || value > 255)
2472 DBG (1, "cis_drv_config: value for option bw out of range: "
2473 "%d < 0 or %d > 255\n", value, value);
2476 cisdev->bw_limit = value;
2482 DBG (1, "cis_drv_config: unexpected value for option calibration_mode\n");
2492 DBG (1, "cis_drv_config: missing value for option engine_delay\n");
2495 value = atoi(optval);
2496 if (value < 0 || value > 100) /* 100 ms is already pretty slow */
2498 DBG (1, "cis_drv_config: value for option engine_delay out of range: "
2499 "%d < 0 or %d > 100\n", value, value);
2502 cisdev->engine_delay = value;