Searched refs:tailsize (Results 1 - 4 of 4) sorted by relevance

/freebsd-11-stable/contrib/dtc/libfdt/
H A Dfdt_sw.c112 size_t headsize, tailsize; local
118 tailsize = fdt_size_dt_strings(fdt);
120 if ((headsize + tailsize) > bufsize)
123 oldtail = (char *)fdt + fdt_totalsize(fdt) - tailsize;
124 newtail = (char *)buf + bufsize - tailsize;
130 memmove(newtail, oldtail, tailsize);
132 memmove(newtail, oldtail, tailsize);
/freebsd-11-stable/sys/contrib/libfdt/
H A Dfdt_sw.c112 size_t headsize, tailsize; local
118 tailsize = fdt_size_dt_strings(fdt);
120 if ((headsize + tailsize) > bufsize)
123 oldtail = (char *)fdt + fdt_totalsize(fdt) - tailsize;
124 newtail = (char *)buf + bufsize - tailsize;
130 memmove(newtail, oldtail, tailsize);
132 memmove(newtail, oldtail, tailsize);
/freebsd-11-stable/sbin/fsck_msdosfs/
H A Dfat.c1144 size_t rwsize, tailsize, blobs, i; local
1154 tailsize = fat->fatsize % fat32_cache_size;
1155 if (tailsize == 0) {
1156 tailsize = fat32_cache_size;
1167 rwsize = tailsize;
/freebsd-11-stable/sbin/newfs_msdos/
H A Dmkfs_msdos.c767 ssize_t tailsize = img - physbuf; local
769 n = write(fd, physbuf, tailsize);
770 if (n != tailsize) {

Completed in 203 milliseconds