Home
last modified time | relevance | path

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

/freebsd-12-stable/sys/kern/
Dsubr_unit.c535 struct unr *upp; in collapse_unr() local
552 upp = TAILQ_PREV(up, unrhd, list); in collapse_unr()
553 if (upp == NULL) in collapse_unr()
554 upp = TAILQ_NEXT(up, list); in collapse_unr()
557 up = upp; in collapse_unr()
562 upp = TAILQ_PREV(up, unrhd, list); in collapse_unr()
563 if (upp != NULL && up->ptr == upp->ptr) { in collapse_unr()
564 up->len += upp->len; in collapse_unr()
565 TAILQ_REMOVE(&uh->head, upp, list); in collapse_unr()
566 delete_unr(uh, upp); in collapse_unr()
[all …]
Dsubr_prof.c410 struct uprof *upp; in sys_profil() local
424 upp = &td->td_proc->p_stats->p_prof; in sys_profil()
426 upp->pr_off = uap->offset; in sys_profil()
427 upp->pr_scale = uap->scale; in sys_profil()
428 upp->pr_base = uap->samples; in sys_profil()
429 upp->pr_size = uap->size; in sys_profil()
Dkern_umtx.c3537 char *uaddrs[BATCH_SIZE], **upp; in __umtx_op_nwake_private_native() local
3540 upp = (char **)uap->obj; in __umtx_op_nwake_private_native()
3545 error = copyin(upp + pos, uaddrs, tocopy * sizeof(char *)); in __umtx_op_nwake_private_native()
3559 uint32_t uaddrs[BATCH_SIZE], *upp; in __umtx_op_nwake_private_compat32() local
3562 upp = (uint32_t *)uap->obj; in __umtx_op_nwake_private_compat32()
3567 error = copyin(upp + pos, uaddrs, tocopy * sizeof(uint32_t)); in __umtx_op_nwake_private_compat32()
/freebsd-12-stable/contrib/llvm-project/clang/lib/Lex/
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()