Lines Matching defs:size
171 gl640WriteControl(int fd, GL640_Request req, u_char * data, unsigned int size)
178 /* rqt */ (size > 1) ? 0x04 : 0x0C,
181 /* len */ size,
193 gl640ReadControl( int fd, GL640_Request req, u_char *data, unsigned int size )
200 /* rqt */ (size > 1) ? 0x04 : 0x0C,
203 /* len */ size,
233 gl640WriteBulk( int fd, u_char *setup, u_char *data, size_t size )
238 setup[4] = (size) & 0xFF;
239 setup[5] = (size >> 8) & 0xFF;
244 status = sanei_usb_write_bulk (fd, data, &size);
258 gl640ReadBulk( int fd, u_char *setup, u_char *data, size_t size, int mod )
265 setup[4] = (size) & 0xFF;
266 setup[5] = (size >> 8) & 0xFF;
272 toget = size;