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

/freebsd-10.2-release/crypto/openssl/crypto/seed/
H A Dseed_locl.h98 # define E_SEED(T0, T1, X1, X2, X3, X4, rbase) \
99 (T0) = (X3) ^ (ks->data)[(rbase)]; \
100 (T1) = (X4) ^ (ks->data)[(rbase)+1]; \
/freebsd-10.2-release/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-10.2-release/games/factor/
H A Dfactor.c265 BIGNUM *base, *rbase, *num, *i, *x; local
268 rbase = BN_new();
273 BN_set_word(rbase, 1);
275 if (!BN_add_word(rbase, 1))
278 BN_copy(base, rbase);
/freebsd-10.2-release/sys/dev/sound/pci/
H A Dvia8233.c95 int dir, rbase, active; member in struct:via_chinfo
429 r = ch->rbase + VIA8233_RP_DXS_RATEFMT;
491 r = ch->rbase + VIA8233_RP_DXS_RATEFMT;
625 v = via_rd(via, ch->rbase + VIA_RP_CURRENT_COUNT, 4);
639 via_wr(via, ch->rbase + VIA_RP_CONTROL, SGD_CONTROL_STOP, 1);
640 via_wr(via, ch->rbase + VIA_RP_CONTROL, 0x00, 1);
641 via_wr(via, ch->rbase + VIA_RP_STATUS,
672 ch->rbase = VIA_WR_BASE(num);
673 via_wr(via, ch->rbase + VIA_WR_RP_SGD_FORMAT, WR_FIFO_ENABLE, 1);
709 ch->rbase
[all...]
/freebsd-10.2-release/contrib/binutils/include/opcode/
H A Dcr16.h90 rbase - register base
132 rra, rbase, rbase_disps20, rbase_dispe20, enumerator in enum:__anon590
/freebsd-10.2-release/contrib/binutils/bfd/
H A Darchive.c712 bfd_byte *raw_armap, *rbase;
748 rbase = raw_armap + BSD_SYMDEF_COUNT_SIZE;
749 stringbase = ((char *) rbase
759 counter++, set++, rbase += BSD_SYMDEF_SIZE)
761 set->name = H_GET_32 (abfd, rbase) + stringbase;
762 set->file_offset = H_GET_32 (abfd, rbase + BSD_SYMDEF_OFFSET_SIZE);
954 bfd_byte *raw_armap, *rbase;
1020 rbase = (bfd_byte *) stringbase + stringsize;
1028 counter++, set++, rbase += BSD_SYMDEF_SIZE)
1030 set->name = H_GET_32 (abfd, rbase)
708 bfd_byte *raw_armap, *rbase; local
949 bfd_byte *raw_armap, *rbase; local
[all...]
/freebsd-10.2-release/sys/boot/common/
H A Dload_elf_obj.c475 Elf_Rel r, *rbase; local
506 rbase = (Elf_Rel *)(intptr_t)shdr[i].sh_addr;
510 COPYOUT(rbase + j, &r, sizeof(r));
/freebsd-10.2-release/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-10.2-release/sys/kern/
H A Dimgact_elf.c601 u_long rbase; local
660 rbase = *addr;
662 rbase = 0;
686 (caddr_t)(uintptr_t)phdr[i].p_vaddr + rbase,
696 rbase);
701 *entry = (unsigned long)hdr->e_entry + rbase;
/freebsd-10.2-release/sys/dev/hifn/
H A Dhifn7751.c357 char rbase; local
546 rbase = 'K';
548 rbase = 'M';
553 rseg, rbase, sc->sc_drammodel ? 'd' : 's');
/freebsd-10.2-release/contrib/llvm/tools/clang/lib/AST/
H A DASTContext.cpp6932 const FunctionType *rbase = rhs->getAs<FunctionType>(); local
6934 const FunctionProtoType *rproto = dyn_cast<FunctionProtoType>(rbase);
6941 QualType RHS = rbase->getResultType();
6949 retType = mergeTypes(lbase->getResultType(), rbase->getResultType(), false,
6957 CanQualType RRetType = getCanonicalType(rbase->getResultType());
6970 // rbase->getRegParmAttr() != 0 &&
6971 // lbase->getRegParmAttr() != rbase->getRegParmAttr()?
6973 FunctionType::ExtInfo rbaseInfo = rbase->getExtInfo();

Completed in 217 milliseconds