Searched refs:tailsize (Results 1 – 3 of 3) sorted by relevance
/freebsd/sys/contrib/libfdt/ |
H A D | fdt_sw.c | 112 size_t headsize, tailsize; in fdt_resize() local 118 tailsize = fdt_size_dt_strings(fdt); in fdt_resize() 120 if ((headsize + tailsize) > bufsize) in fdt_resize() 123 oldtail = (char *)fdt + fdt_totalsize(fdt) - tailsize; in fdt_resize() 124 newtail = (char *)buf + bufsize - tailsize; in fdt_resize() 130 memmove(newtail, oldtail, tailsize); in fdt_resize() 132 memmove(newtail, oldtail, tailsize); in fdt_resize()
|
/freebsd/sbin/fsck_msdosfs/ |
H A D | fat.c | 1142 size_t rwsize, tailsize, blobs, i; in copyfat() local 1152 tailsize = fat->fatsize % fat32_cache_size; in copyfat() 1153 if (tailsize == 0) { in copyfat() 1154 tailsize = fat32_cache_size; in copyfat() 1165 rwsize = tailsize; in copyfat()
|
/freebsd/sbin/newfs_msdos/ |
H A D | mkfs_msdos.c | 784 ssize_t tailsize = img - physbuf; in mkfs_msdos() local 786 n = write(fd, physbuf, tailsize); in mkfs_msdos() 787 if (n != tailsize) { in mkfs_msdos()
|