Searched refs:rbase (Results 1 - 10 of 10) sorted by relevance

/freebsd-13-stable/crypto/openssl/crypto/seed/
H A Dseed_local.h99 # define E_SEED(T0, T1, X1, X2, X3, X4, rbase) \
100 (T0) = (X3) ^ (ks->data)[(rbase)]; \
101 (T1) = (X4) ^ (ks->data)[(rbase)+1]; \
/freebsd-13-stable/sys/contrib/octeon-sdk/
H A Dcvmx-asm.h195 #define CVMX_SYNCI(address, offset) asm volatile ("synci " CVMX_TMP_STR(offset) "(%[rbase])" : : [rbase] "d" (address) )
201 #define CVMX_PREFETCH_PREFX(X, address, offset) asm volatile ("pref %[type], %[off](%[rbase])" : : [rbase] "d" (address), [off] "I" (offset), [type] "n" (X))
225 #define CVMX_CACHE(op, address, offset) asm volatile ("cache " CVMX_TMP_STR(op) ", " CVMX_TMP_STR(offset) "(%[rbase])" : : [rbase] "d" (address) )
377 #define CVMX_LL(dest, address, offset) asm volatile ("ll %[rt], " CVMX_TMP_STR(offset) "(%[rbase])" : [rt] "=d" (dest) : [rbase] "d" (address) )
378 #define CVMX_LLD(dest, address, offset) asm volatile ("lld %[rt], " CVMX_TMP_STR(offset) "(%[rbase])" : [rt] "=d" (dest) : [rbase] "
[all...]
/freebsd-13-stable/usr.bin/factor/
H A Dfactor.c259 BIGNUM *base, *rbase, *num, *i, *x; local
262 rbase = BN_new();
267 BN_set_word(rbase, 1);
269 if (!BN_add_word(rbase, 1))
272 BN_copy(base, rbase);
/freebsd-13-stable/sys/dev/sound/pci/
H A Dvia8233.c97 int dir, rbase, active; member in struct:via_chinfo
430 r = ch->rbase + VIA8233_RP_DXS_RATEFMT;
492 r = ch->rbase + VIA8233_RP_DXS_RATEFMT;
626 v = via_rd(via, ch->rbase + VIA_RP_CURRENT_COUNT, 4);
640 via_wr(via, ch->rbase + VIA_RP_CONTROL, SGD_CONTROL_STOP, 1);
641 via_wr(via, ch->rbase + VIA_RP_CONTROL, 0x00, 1);
642 via_wr(via, ch->rbase + VIA_RP_STATUS,
673 ch->rbase = VIA_WR_BASE(num);
674 via_wr(via, ch->rbase + VIA_WR_RP_SGD_FORMAT, WR_FIFO_ENABLE, 1);
710 ch->rbase
[all...]
/freebsd-13-stable/stand/common/
H A Dload_elf_obj.c518 Elf_Rel r, *rbase; local
549 rbase = (Elf_Rel *)(intptr_t)shdr[i].sh_addr;
553 COPYOUT(rbase + j, &r, sizeof(r));
/freebsd-13-stable/sys/kern/
H A Dimgact_elf.c702 const Elf_Phdr *phdr, u_long rbase, u_long *base_addrp)
721 (caddr_t)(uintptr_t)phdr[i].p_vaddr + rbase,
730 base_addr = trunc_page(phdr[i].p_vaddr + rbase);
767 u_long rbase; local
817 rbase = *addr;
819 rbase = 0;
837 error = __elfN(load_sections)(imgp, hdr, phdr, rbase, &base_addr);
842 *entry = (unsigned long)hdr->e_entry + rbase;
862 u_long rbase, res; local
868 arc4rand(&rbase, sizeo
701 load_sections(struct image_params *imgp, const Elf_Ehdr *hdr, const Elf_Phdr *phdr, u_long rbase, u_long *base_addrp) argument
2842 uintptr_t range, rbase, gap; local
[all...]
/freebsd-13-stable/cddl/contrib/opensolaris/lib/libdtrace/common/
H A Ddt_parser.c347 ctf_id_t rbase = ctf_type_resolve(rfp, rtype); local
348 uint_t rkind = ctf_type_kind(rfp, rbase);
364 rtype = rbase = DT_INT_TYPE(dtp);
372 if (ctf_type_encoding(rfp, rbase, &re) == CTF_ERR) {
387 if (lbase - rbase < 0)
1052 ctf_id_t lbase = CTF_ERR, rbase = CTF_ERR; local
1101 rbase = ctf_type_resolve(rfp, rp->dn_type);
1102 rkind = ctf_type_kind(rfp, rbase);
1106 ctf_type_reference(rfp, rbase));
1108 ctf_array_info(rfp, rbase,
[all...]
/freebsd-13-stable/sys/dev/hifn/
H A Dhifn7751.c363 char rbase; local
551 rbase = 'K';
553 rbase = 'M';
558 rseg, rbase, sc->sc_drammodel ? 'd' : 's');
/freebsd-13-stable/sbin/ipfw/
H A Dipfw2.c2786 ipfw_obj_tlv *rbase; local
2792 rbase = NULL;
2811 rbase = (ipfw_obj_tlv *)(ctlv + 1);
2829 prepare_format_opts(co, fo, rbase, rcnt, dynbase, dynsz);
2837 list_static_range(co, fo, &bp, rbase, rcnt);
2864 if (list_static_range(co, fo, &bp, rbase, rcnt) == 0) {
/freebsd-13-stable/contrib/llvm-project/clang/lib/AST/
H A DASTContext.cpp9157 const auto *rbase = rhs->castAs<FunctionType>(); local
9159 const auto *rproto = dyn_cast<FunctionProtoType>(rbase);
9166 QualType RHS = rbase->getReturnType();
9174 retType = mergeTypes(lbase->getReturnType(), rbase->getReturnType(), false,
9183 CanQualType RRetType = getCanonicalType(rbase->getReturnType());
9196 // rbase->getRegParmAttr() != 0 &&
9197 // lbase->getRegParmAttr() != rbase->getRegParmAttr()?
9199 FunctionType::ExtInfo rbaseInfo = rbase->getExtInfo();

Completed in 246 milliseconds