Home
last modified time | relevance | path

Searched refs:oldspace (Results 1 – 4 of 4) sorted by relevance

/dragonfly/bin/sh/
H A Dmemalloc.c250 char *oldspace; in growstackblock() local
265 oldspace = stacknxt; in growstackblock()
283 memcpy(p, oldspace, oldlen); in growstackblock()
/dragonfly/sys/vfs/ufs/
H A Dffs_inode.c406 long oldspace, newspace; in ffs_truncate() local
412 oldspace = blksize(fs, oip, lastblock); in ffs_truncate()
417 if (oldspace - newspace > 0) { in ffs_truncate()
424 ffs_blkfree(oip, bn, oldspace - newspace); in ffs_truncate()
425 blocksreleased += btodb(oldspace - newspace); in ffs_truncate()
/dragonfly/sys/vfs/ext2fs/
H A Dext2_inode.c403 long oldspace, newspace; in ext2_ind_truncate() local
409 oldspace = blksize(fs, oip, lastblock); in ext2_ind_truncate()
414 if (oldspace - newspace > 0) { in ext2_ind_truncate()
421 ext2_blkfree(oip, bn, oldspace - newspace); in ext2_ind_truncate()
422 blocksreleased += btodb(oldspace - newspace); in ext2_ind_truncate()
/dragonfly/sys/net/
H A Droute.c1181 char *space, *oldspace; in rt_setgate() local
1215 oldspace = (char *)rt_key(rt); in rt_setgate()
1222 oldspace = NULL; in rt_setgate()
1229 if (oldspace != NULL) { in rt_setgate()
1236 R_Free(oldspace); in rt_setgate()