Home
last modified time | relevance | path

Searched refs:rbase (Results 1 – 9 of 9) sorted by relevance

/freebsd-14.2/sys/dev/sound/pci/
H A Dvia8233.c95 int dir, rbase, active; member
428 r = ch->rbase + VIA8233_RP_DXS_RATEFMT; in via8233dxs_setformat()
490 r = ch->rbase + VIA8233_RP_DXS_RATEFMT; in via8233dxs_setspeed()
639 via_wr(via, ch->rbase + VIA_RP_CONTROL, 0x00, 1); in via8233chan_reset()
640 via_wr(via, ch->rbase + VIA_RP_STATUS, in via8233chan_reset()
671 ch->rbase = VIA_WR_BASE(num); in via8233wr_init()
738 ch->rbase = VIA_MC_SGD_STATUS; in via8233msgd_init()
756 if (BASE_IS_VIA_DXS_REG(ch->rbase)) { in via8233chan_mute()
927 via_wr(via, ch->rbase + VIA_RP_CONTROL, in via8233chan_trigger()
1023 reg = via->pch[i].rbase + VIA_RP_STATUS; in via_intr()
[all …]
/freebsd-14.2/usr.bin/factor/
H A Dfactor.c264 BIGNUM *base, *rbase, *num, *i, *x; in pollard_pminus1() local
267 rbase = BN_new(); in pollard_pminus1()
272 BN_set_word(rbase, 1); in pollard_pminus1()
274 if (!BN_add_word(rbase, 1)) in pollard_pminus1()
277 BN_copy(base, rbase); in pollard_pminus1()
/freebsd-14.2/crypto/openssl/crypto/seed/
H A Dseed_local.h99 # define E_SEED(T0, T1, X1, X2, X3, X4, rbase) \ argument
100 (T0) = (X3) ^ (ks->data)[(rbase)]; \
101 (T1) = (X4) ^ (ks->data)[(rbase)+1]; \
/freebsd-14.2/sys/kern/
H A Dimgact_elf.c725 const Elf_Phdr *phdr, u_long rbase, u_long *base_addrp) in __elfN()
744 (caddr_t)(uintptr_t)phdr[i].p_vaddr + rbase, in __elfN()
753 base_addr = trunc_page(phdr[i].p_vaddr + rbase); in __elfN()
790 u_long rbase; in __elfN() local
840 rbase = *addr; in __elfN()
842 rbase = 0; in __elfN()
865 *entry = (unsigned long)hdr->e_entry + rbase; in __elfN()
895 u_long rbase, res; in __CONCAT() local
904 arc4rand(&rbase, sizeof(rbase), 0); in __CONCAT()
912 res, minv, maxv, rbase)); in __CONCAT()
[all …]
/freebsd-14.2/stand/common/
H A Dload_elf_obj.c515 Elf_Rel r, *rbase; in __elfN() local
546 rbase = (Elf_Rel *)(intptr_t)shdr[i].sh_addr; in __elfN()
550 COPYOUT(rbase + j, &r, sizeof(r)); in __elfN()
/freebsd-14.2/cddl/contrib/opensolaris/lib/libdtrace/common/
H A Ddt_parser.c348 uint_t rkind = ctf_type_kind(rfp, rbase); in dt_type_promote()
364 rtype = rbase = DT_INT_TYPE(dtp); in dt_type_promote()
387 if (lbase - rbase < 0) in dt_type_promote()
1052 ctf_id_t lbase = CTF_ERR, rbase = CTF_ERR; in dt_node_is_ptrcompat() local
1101 rbase = ctf_type_resolve(rfp, rp->dn_type); in dt_node_is_ptrcompat()
1102 rkind = ctf_type_kind(rfp, rbase); in dt_node_is_ptrcompat()
1106 ctf_type_reference(rfp, rbase)); in dt_node_is_ptrcompat()
1108 ctf_array_info(rfp, rbase, &r) == 0) { in dt_node_is_ptrcompat()
1119 lbase = rbase; in dt_node_is_ptrcompat()
1124 rbase = lbase; in dt_node_is_ptrcompat()
[all …]
/freebsd-14.2/sys/dev/hifn/
H A Dhifn7751.c361 char rbase; in hifn_attach() local
549 rbase = 'K'; in hifn_attach()
551 rbase = 'M'; in hifn_attach()
556 rseg, rbase, sc->sc_drammodel ? 'd' : 's'); in hifn_attach()
/freebsd-14.2/sbin/ipfw/
H A Dipfw2.c2925 ipfw_obj_tlv *rbase; in ipfw_show_config() local
2930 rbase = NULL; in ipfw_show_config()
2949 rbase = (ipfw_obj_tlv *)(ctlv + 1); in ipfw_show_config()
2967 prepare_format_opts(co, fo, rbase, rcnt, dynbase, dynsz); in ipfw_show_config()
2975 list_static_range(co, fo, &bp, rbase, rcnt); in ipfw_show_config()
3002 if (list_static_range(co, fo, &bp, rbase, rcnt) == 0) { in ipfw_show_config()
/freebsd-14.2/contrib/llvm-project/clang/lib/AST/
H A DASTContext.cpp10305 const auto *rbase = rhs->castAs<FunctionType>(); in mergeFunctionTypes() local
10307 const auto *rproto = dyn_cast<FunctionProtoType>(rbase); in mergeFunctionTypes()
10314 QualType RHS = rbase->getReturnType(); in mergeFunctionTypes()
10322 retType = mergeTypes(lbase->getReturnType(), rbase->getReturnType(), false, in mergeFunctionTypes()
10331 CanQualType RRetType = getCanonicalType(rbase->getReturnType()); in mergeFunctionTypes()
10347 FunctionType::ExtInfo rbaseInfo = rbase->getExtInfo(); in mergeFunctionTypes()