Home
last modified time | relevance | path

Searched refs:CD9660_SECTOR_SIZE (Results 1 – 3 of 3) sorted by relevance

/freebsd-14.2/usr.sbin/makefs/cd9660/
H A Dcd9660_debug.c147 char temp[CD9660_SECTOR_SIZE]; in debug_print_volume_descriptor_information()
152 memset(temp, 0, CD9660_SECTOR_SIZE); in debug_print_volume_descriptor_information()
200 if (fseeko(fd, CD9660_SECTOR_SIZE * sector, SEEK_SET) == -1) in debug_dump_to_xml_path_table()
225 unsigned char buf[CD9660_SECTOR_SIZE]; in debug_dump_to_xml()
236 if (fseeko(fd, CD9660_SECTOR_SIZE * sector, SEEK_SET) == -1) in debug_dump_to_xml()
238 fread(buf, 1, CD9660_SECTOR_SIZE, fd); in debug_dump_to_xml()
242 memcpy(&bootVD, buf, CD9660_SECTOR_SIZE); in debug_dump_to_xml()
245 memcpy(&primaryVD, buf, CD9660_SECTOR_SIZE); in debug_dump_to_xml()
H A Dcd9660_write.c65 unsigned char buf[CD9660_SECTOR_SIZE]; in cd9660_write_image()
121 memset(buf, 0, CD9660_SECTOR_SIZE); in cd9660_write_image()
418 static char buf[CD9660_SECTOR_SIZE];
/freebsd-14.2/usr.sbin/makefs/
H A Dcd9660.h105 #define CD9660_SECTOR_SIZE 2048 macro