Home
last modified time | relevance | path

Searched refs:thp (Results 1 – 6 of 6) sorted by relevance

/src/tools/tools/netrate/tcpp/
H A Dtcpp_util.c33 tcpp_header_encode(struct tcpp_header *thp) in tcpp_header_encode() argument
36 thp->th_magic = htobe32(thp->th_magic); in tcpp_header_encode()
37 thp->th_len = htobe64(thp->th_len); in tcpp_header_encode()
41 tcpp_header_decode(struct tcpp_header *thp) in tcpp_header_decode() argument
44 thp->th_magic = be32toh(thp->th_magic); in tcpp_header_decode()
45 thp->th_len = be64toh(thp->th_len); in tcpp_header_decode()
H A Dtcpp.h43 void tcpp_header_encode(struct tcpp_header *thp);
44 void tcpp_header_decode(struct tcpp_header *thp);
/src/sys/fs/nfs/
H A Dnfs_commonsubs.c4292 struct nfsrv_lughash *hp_name, *hp_idnum, *thp; in nfssvc_idname() local
4478 thp = NFSUSERHASH(usrp->lug_uid); in nfssvc_idname()
4479 mtx_lock(&thp->mtx); in nfssvc_idname()
4481 mtx_unlock(&thp->mtx); in nfssvc_idname()
4507 thp = NFSGROUPHASH(usrp->lug_gid); in nfssvc_idname()
4508 mtx_lock(&thp->mtx); in nfssvc_idname()
4510 mtx_unlock(&thp->mtx); in nfssvc_idname()
4526 thp = NFSUSERHASH(newusrp->lug_uid); in nfssvc_idname()
4527 mtx_assert(&thp->mtx, MA_OWNED); in nfssvc_idname()
4528 TAILQ_INSERT_TAIL(&thp->lughead, newusrp, lug_numhash); in nfssvc_idname()
[all …]
/src/sys/kern/
H A Dkern_tc.c1984 struct timehands *thp; in inittimehands() local
1993 for (i = 1, thp = &ths[0]; i < timehands_count; thp = &ths[i++]) in inittimehands()
1994 thp->th_next = &ths[i]; in inittimehands()
1995 thp->th_next = &ths[0]; in inittimehands()
/src/contrib/jemalloc/
H A DChangeLog257 - Add opt.thp to allow enabling / disabling transparent huge pages for all
277 + opt.thp (@interwq)
353 - Remove --disable-thp. (@interwq)
355 + config.thp (@interwq)
435 - Add --disable-thp to support cross compiling. (@jasone)
553 + opt.thp
590 - Add --disable-thp and the opt.thp mallctl to provide opt-out mechanisms for
/src/sys/dev/acpica/
H A Dacpi.c4342 struct acpi_ioctl_hook *hp, *thp; in acpi_register_ioctl() local
4350 TAILQ_FOREACH(thp, &acpi_ioctl_hooks, link) { in acpi_register_ioctl()
4351 if (thp->cmd == cmd) { in acpi_register_ioctl()
4384 struct acpi_ioctl_hook *hp, *thp; in acpi_deregister_ioctls() local
4387 TAILQ_FOREACH_SAFE(hp, &acpi_ioctl_hooks, link, thp) { in acpi_deregister_ioctls()