Searched refs:ISO_DEFAULT_BLOCK_SIZE (Results 1 – 5 of 5) sorted by relevance
/illumos-gate/usr/src/boot/libsa/ |
H A D | cd9660.c | 117 #define cdb2devb(bno) ((bno) * ISO_DEFAULT_BLOCK_SIZE / DEV_BSIZE) 123 static char susp_buffer[ISO_DEFAULT_BLOCK_SIZE]; in susp_lookup_record() 145 ISO_DEFAULT_BLOCK_SIZE, susp_buffer, &read); in susp_lookup_record() 148 if (error != 0 || read != ISO_DEFAULT_BLOCK_SIZE) in susp_lookup_record() 297 buf = malloc(MAX(ISO_DEFAULT_BLOCK_SIZE, in cd9660_open() 303 ISO_DEFAULT_BLOCK_SIZE, buf, &read); in cd9660_open() 306 if (read != ISO_DEFAULT_BLOCK_SIZE) { in cd9660_open() 318 if (isonum_723(vd->logical_block_size) != ISO_DEFAULT_BLOCK_SIZE) in cd9660_open() 334 if ((off % ISO_DEFAULT_BLOCK_SIZE) == 0) { in cd9660_open() 338 ISO_DEFAULT_BLOCK_SIZE, in cd9660_open() [all …]
|
/illumos-gate/usr/src/boot/i386/isoboot/ |
H A D | cd9660read.c | 56 #define cdb2devb(bno) ((bno) * ISO_DEFAULT_BLOCK_SIZE / DEV_BSIZE) 63 ISO_DEFAULT_BLOCK_SIZE / DEV_BSIZE)); in read_iso_block() 70 static char susp_buffer[ISO_DEFAULT_BLOCK_SIZE]; in susp_lookup_record() 226 static char blkbuf[MAX(ISO_DEFAULT_BLOCK_SIZE, in cd9660_lookup() 263 if ((off % ISO_DEFAULT_BLOCK_SIZE) == 0) { in cd9660_lookup() 273 off = boff * ISO_DEFAULT_BLOCK_SIZE; in cd9660_lookup() 293 off = boff * ISO_DEFAULT_BLOCK_SIZE; in cd9660_lookup() 321 static char blkbuf[ISO_DEFAULT_BLOCK_SIZE]; in cd9660_fsread() 350 byte_off = fs_off & (ISO_DEFAULT_BLOCK_SIZE - 1); in cd9660_fsread() 357 if (remaining < ISO_DEFAULT_BLOCK_SIZE - byte_off) { in cd9660_fsread() [all …]
|
/illumos-gate/usr/src/cmd/etdump/ |
H A D | etdump.c | 44 #define ISO_DEFAULT_BLOCK_SIZE (1 << ISO_DEFAULT_BLOCK_SHIFT) macro 98 fseek(iso, sector * ISO_DEFAULT_BLOCK_SIZE, SEEK_SET); in read_sector() 99 if (fread(buffer, ISO_DEFAULT_BLOCK_SIZE, 1, iso) != 1) { in read_sector() 165 char buffer[ISO_DEFAULT_BLOCK_SIZE], *entry; in dump_eltorito() 204 while (offset < ISO_DEFAULT_BLOCK_SIZE) { in dump_eltorito()
|
/illumos-gate/usr/src/boot/sys/fs/cd9660/ |
H A D | iso.h | 101 #define ISO_DEFAULT_BLOCK_SIZE (1 << ISO_DEFAULT_BLOCK_SHIFT) macro
|
/illumos-gate/usr/src/boot/common/ |
H A D | part.c | 712 #define cdb2devb(bno) ((bno) * ISO_DEFAULT_BLOCK_SIZE / table->sectorsize)
|