Home
last modified time | relevance | path

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

/freebsd/sys/kern/
H A Dsubr_unit.c654 struct unr *upp; in collapse_unr() local
671 upp = TAILQ_PREV(up, unrhd, list); in collapse_unr()
672 if (upp == NULL) in collapse_unr()
673 upp = TAILQ_NEXT(up, list); in collapse_unr()
676 up = upp; in collapse_unr()
681 upp = TAILQ_PREV(up, unrhd, list); in collapse_unr()
682 if (upp != NULL && up->ptr == upp->ptr) { in collapse_unr()
683 up->len += upp->len; in collapse_unr()
684 TAILQ_REMOVE(&uh->head, upp, list); in collapse_unr()
685 delete_unr(uh, upp); in collapse_unr()
[all …]
H A Dsubr_prof.c62 struct uprof *upp; in sys_profil() local
76 upp = &td->td_proc->p_stats->p_prof; in sys_profil()
78 upp->pr_off = uap->offset; in sys_profil()
79 upp->pr_scale = uap->scale; in sys_profil()
80 upp->pr_base = uap->samples; in sys_profil()
81 upp->pr_size = uap->size; in sys_profil()
H A Dkern_umtx.c3994 char *uaddrs[BATCH_SIZE], **upp; in __umtx_op_nwake_private_native() local
3997 upp = (char **)uap->obj; in __umtx_op_nwake_private_native()
4002 error = copyin(upp + pos, uaddrs, tocopy * sizeof(char *)); in __umtx_op_nwake_private_native()
4016 uint32_t uaddrs[BATCH_SIZE], *upp; in __umtx_op_nwake_private_compat32() local
4019 upp = (uint32_t *)uap->obj; in __umtx_op_nwake_private_compat32()
4024 error = copyin(upp + pos, uaddrs, tocopy * sizeof(uint32_t)); in __umtx_op_nwake_private_compat32()
/freebsd/contrib/llvm-project/clang/lib/Lex/
H A DPPConditionalDirectiveRecord.cpp37 upp = std::upper_bound(low, CondDirectiveLocs.end(), in rangeIntersectsConditionalDirective() local
40 if (upp != CondDirectiveLocs.end()) in rangeIntersectsConditionalDirective()
41 uppRegion = upp->getRegionLoc(); in rangeIntersectsConditionalDirective()