Home
last modified time | relevance | path

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

/freebsd/contrib/netbsd-tests/fs/puffs/h_dtfs/
H A Ddtfs_subr.c245 needalloc = newsize > ROUNDUP(df->df_datalen, DTFS_BLOCKSIZE); in dtfs_setsize()
263 df->df_blocks[i] = emalloc(DTFS_BLOCKSIZE); in dtfs_setsize()
264 memset(df->df_blocks[i], 0, DTFS_BLOCKSIZE); in dtfs_setsize()
H A Ddtfs_vnops.c472 copylen = MIN(xfer, BLOCKLEFT(offset, DTFS_BLOCKSIZE)); in dtfs_node_read()
474 + BLOCKOFF(offset, DTFS_BLOCKSIZE); in dtfs_node_read()
511 copylen = MIN(*resid, BLOCKLEFT(offset, DTFS_BLOCKSIZE)); in dtfs_node_write()
514 + BLOCKOFF(offset, DTFS_BLOCKSIZE); in dtfs_node_write()
H A Ddtfs.h39 #define DTFS_BLOCKSIZE (1<<DTFS_BLOCKSHIFT) macro