Home
last modified time | relevance | path

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

/xnu-8020.101.4/bsd/vm/
H A Dvm_compressor_backing_file.c292 vnode_trim_list(vnode_t vp, struct trim_list *tl, boolean_t route_only) in vnode_trim_list() argument
306 if (tl == NULL) { in vnode_trim_list()
330 while (tl) { in vnode_trim_list()
337 current_offset = tl->tl_offset; in vnode_trim_list()
338 remaining_length = tl->tl_length; in vnode_trim_list()
346 while (trimmed < tl->tl_length) { in vnode_trim_list()
382 tl = tl->tl_next; in vnode_trim_list()
/xnu-8020.101.4/osfmk/vm/
H A Dvm_compressor_backing_store.c1769 struct trim_list *tl = NULL; in vm_swap_free() local
1774 tl = kalloc_type(struct trim_list, Z_WAITOK); in vm_swap_free()
1794 tl->tl_offset = f_offset & SWAP_SLOT_MASK; in vm_swap_free()
1795 tl->tl_length = compressed_swap_chunk_size; in vm_swap_free()
1797 tl->tl_next = swf->swp_delayed_trim_list_head; in vm_swap_free()
1798 swf->swp_delayed_trim_list_head = tl; in vm_swap_free()
1800 tl = NULL; in vm_swap_free()
1814 if (tl != NULL) { in vm_swap_free()
1815 kfree_type(struct trim_list, tl); in vm_swap_free()
1888 struct trim_list *tl, *tl_head; in vm_swap_do_delayed_trim() local
[all …]
H A Dvm_protos.h667 u_int32_t vnode_trim_list(struct vnode *vp, struct trim_list *tl, boolean_t route_only);
/xnu-8020.101.4/bsd/nfs/
H A Dnfs_socket.c6428 u_int32_t *tl; in nfsrv_rephead() local
6454 tl = mbuf_data(mrep); in nfsrv_rephead()
6455 tl += 80 / sizeof(*tl); /* XXX max_hdr? XXX */ in nfsrv_rephead()
6456 mbuf_setdata(mrep, tl, 6 * NFSX_UNSIGNED); in nfsrv_rephead()