Lines Matching defs:size
197 fail if they can't supply the full Mt Fuji size table.
210 DVD_HOST_SEND_RPC_STATE did not set buffer size in cdb, and
216 that case switch block size and issue plain READ_10 again, then switch
405 /* return actual fill size */
562 int ret, offset, size;
575 size = be16_to_cpu(mph->mode_data_length) + 2;
578 cgc.buflen = size;
1856 int ret, size;
1860 size = sizeof(s->disckey.value) + 4;
1862 buf = kmalloc(size, GFP_KERNEL);
1866 init_cdrom_command(cgc, buf, size, CGC_DATA_READ);
1869 cgc->cmd[8] = size >> 8;
1870 cgc->cmd[9] = size & 0xff;
1884 int ret, size = 4 + 188;
1888 buf = kmalloc(size, GFP_KERNEL);
1892 init_cdrom_command(cgc, buf, size, CGC_DATA_READ);
1918 int ret = 0, size;
1922 size = sizeof(s->manufact.value) + 4;
1924 buf = kmalloc(size, GFP_KERNEL);
1928 init_cdrom_command(cgc, buf, size, CGC_DATA_READ);
1931 cgc->cmd[8] = size >> 8;
1932 cgc->cmd[9] = size & 0xff;
2089 /* expected sector size - cdda,mode1,etc. */
2125 * start with will ra.nframes size, back down if alloc fails
2779 static int cdrom_switch_blocksize(struct cdrom_device_info *cdi, int size)
2787 mh.block_length_med = (size >> 8) & 0xff;
2788 mh.block_length_lo = size & 0xff;
2798 mh.block_length_med = (size >> 8) & 0xff;
2799 mh.block_length_lo = size & 0xff;
2834 /* return actual fill size */
2997 * READ_CD, so let's try switching block size
3233 int size = sizeof(dvd_struct);
3238 s = memdup_user(arg, size);
3248 if (copy_to_user(arg, s, size))