Lines Matching defs:out
295 * Called by SANE to find out about supported devices.
397 /*splice s out of list by changing pointer in prev to next*/
1499 * SANE_ACTION_GET_VALUE: We have to find out the current setting and
2265 out . x .xxxxxxxxxxx . x
2276 out x . x
2309 * out vertical offset at central input value */
3416 /* if any color channel is too far out of whack, set cal_good to 0 so we'll iterate again */
3434 /* break out of the loop if our calibration is done */
3594 out . x . xxxxxxxx
3604 out x . x
3618 unsigned char *out;
3643 out = ( unsigned char *)malloc(outLen*sizeof(unsigned char));
3644 if (out == NULL){
3657 * out vertical offset at central input value */
3676 out[i*2] = (j >> 8) & 0xff;
3677 out[i*2+1] = j & 0xff;
3681 out[i*2] = (j >> 8) & 0xff;
3682 out[i*2+1] = j & 0xff;
3685 out[width*2 + i*2] = (j >> 8) & 0xff;
3686 out[width*2 + i*2+1] = j & 0xff;
3689 out[width*4 + i*2] = (j >> 8) & 0xff;
3690 out[width*4 + i*2+1] = j & 0xff;
3694 out[i*2] = j & 0xff;
3695 out[i*2+1] = (j >> 8) & 0x0f;
3698 out[width*2 + i*2] = j & 0xff;
3699 out[width*2 + i*2+1] = (j >> 8) & 0x0f;
3702 out[width*4 + i*2] = j & 0xff;
3703 out[width*4 + i*2+1] = (j >> 8) & 0x0f;
3725 out, outLen,
3730 DBG (5, "send_lut: error sending out\n");
3734 DBG (5, "send_lut: out bad status?\n");
4058 DBG (15, "sane_read: paper out? %d\n",get);
4459 DBG (15, "copy_block_to_page: in %d out %d lastout %d\n", this_in_row, this_out_row, last_out_row);
4464 DBG (10, "copy_block_to_page: out of space? %d\n", side);
4851 /* write the command out */
4877 DBG(25, "out: writing %ld bytes, timeout %d\n", (long)outLen, outTime);
4878 hexdump(30, "out: >>", outBuff, outLen);
4880 DBG(25, "out: wrote %ld bytes, retVal %d\n", (long)outLen, ret);
4883 DBG(5,"out: got EOF, returning IO_ERROR\n");
4887 DBG(5,"out: return error '%s'\n",sane_strstatus(ret));
4891 DBG(5,"out: wrong size %ld/%ld\n", (long)loc_outLen, (long)outLen);