Searched refs:rp (Results 51 - 75 of 272) sorted by relevance

1234567891011

/freebsd-11-stable/crypto/openssl/crypto/bn/
H A Dbn_nist.c413 unsigned int *rp = (unsigned int *)r_d; local
416 acc = rp[0];
419 rp[0] = (unsigned int)acc;
422 acc += rp[1];
425 rp[1] = (unsigned int)acc;
428 acc += rp[2];
432 rp[2] = (unsigned int)acc;
435 acc += rp[3];
439 rp[3] = (unsigned int)acc;
442 acc += rp[
568 unsigned int *rp = (unsigned int *)r_d; local
739 unsigned int *rp = (unsigned int *)r_d; local
985 unsigned int *rp = (unsigned int *)r_d; local
[all...]
H A Dbn_mod.c167 BN_ULONG carry, temp, mask, *rp, *tp = storage; local
193 rp = r->d;
194 carry -= bn_sub_words(rp, tp, m->d, mtop);
196 rp[i] = (carry & tp[i]) | (~carry & rp[i]);
246 BN_ULONG borrow, carry, ta, tb, mask, *rp; local
252 rp = r->d;
253 ap = a->d != NULL ? a->d : rp;
254 bp = b->d != NULL ? b->d : rp;
262 rp[
[all...]
H A Dbn_sqr.c166 BN_ULONG *rp; local
170 rp = r;
171 rp[0] = rp[max - 1] = 0;
172 rp++;
177 rp[j] = bn_mul_words(rp, ap, j, ap[-1]);
178 rp += 2;
184 rp[j] = bn_mul_add_words(rp, a
[all...]
/freebsd-11-stable/contrib/tzcode/zic/
H A Dzic.c143 static zic_t rpytime(const struct rule * rp, int wantedy);
144 static void rulesub(struct rule * rp,
149 static int stringrule(char * result, const struct rule * rp,
729 register struct rule * rp; local
768 rp = &rules[base];
770 if (strcmp(rp->r_name, rules[out].r_name) != 0)
774 if (strcmp(zp->z_rule, rp->r_name) != 0)
776 zp->z_rules = rp;
1234 rulesub(rp, loyearp, hiyearp, typep, monthp, dayp, timep)
1235 register struct rule * const rp;
1895 register struct rule * rp; local
1977 register struct rule * rp; local
[all...]
/freebsd-11-stable/contrib/tcpdump/
H A Dprint-nfs.c326 register const struct sunrpc_msg *rp; local
330 rp = (const struct sunrpc_msg *)bp;
332 ND_TCHECK(rp->rm_xid);
336 EXTRACT_32BITS(&rp->rm_xid));
340 EXTRACT_32BITS(&rp->rm_xid));
357 register const struct sunrpc_msg *rp; local
365 rp = (const struct sunrpc_msg *)bp;
367 ND_TCHECK(rp->rm_reply.rp_stat);
368 reply_stat = EXTRACT_32BITS(&rp->rm_reply.rp_stat);
373 if (xid_map_find(rp, bp
418 parsereq(netdissect_options *ndo, register const struct sunrpc_msg *rp, register u_int length) argument
525 register const struct sunrpc_msg *rp; local
866 xid_map_enter(netdissect_options *ndo, const struct sunrpc_msg *rp, const u_char *bp) argument
912 xid_map_find(const struct sunrpc_msg *rp, const u_char *bp, uint32_t *proc, uint32_t *vers) argument
976 parserep(netdissect_options *ndo, register const struct sunrpc_msg *rp, register u_int length) argument
1447 interp_reply(netdissect_options *ndo, const struct sunrpc_msg *rp, uint32_t proc, uint32_t vers, int length) argument
[all...]
/freebsd-11-stable/libexec/talkd/
H A Dextern.h42 void process_request(CTL_MSG *mp, CTL_RESPONSE *rp);
/freebsd-11-stable/contrib/byacc/
H A Dlalr.c104 reductions *rp; local
107 for (rp = first_reduction; rp; rp = rp->next)
108 reduction_table[rp->number] = rp;
143 reductions *rp; local
151 rp = reduction_table[i];
152 if (rp)
284 Value_t *rp; local
358 Value_t *rp; local
596 Value_t *rp; local
[all...]
/freebsd-11-stable/contrib/tcsh/
H A Dvms.termcap.c286 char *rp; local
291 for (rp = ret ; *cm ; cm++) {
298 *rp++ = numval + incr + *++cm;
302 *rp++ = '%';
313 *rp++ = '0' + (numval/10);
314 *rp++ = '0' + (numval%10);
324 *rp++ = *cm;
327 *rp = '\0';
/freebsd-11-stable/usr.sbin/rpcbind/
H A Drpcb_svc_4.c327 rpcb_entry_list_ptr rp, tail; local
391 rp = malloc(sizeof (rpcb_entry_list));
392 if (rp == NULL)
394 a = &rp->rpcb_entry_map;
400 rp->rpcb_entry_next = NULL;
402 rlist = rp;
403 tail = rp;
405 tail->rpcb_entry_next = rp;
406 tail = rp;
408 rp
[all...]
/freebsd-11-stable/sbin/ifconfig/
H A Diflagg.c38 struct lagg_reqport rp; local
40 bzero(&rp, sizeof(rp));
41 strlcpy(rp.rp_ifname, name, sizeof(rp.rp_ifname));
42 strlcpy(rp.rp_portname, val, sizeof(rp.rp_portname));
45 if (ioctl(s, SIOCSLAGGPORT, &rp) && errno != EEXIST)
52 struct lagg_reqport rp; local
54 bzero(&rp, sizeo
[all...]
/freebsd-11-stable/contrib/ntp/lib/isc/win32/
H A Dthread.c45 isc_thread_join(isc_thread_t thread, isc_threadresult_t *rp) { argument
54 if (rp != NULL) {
59 *rp = threadrc;
/freebsd-11-stable/contrib/ntp/sntp/libopts/compat/
H A Dsnprintf.c35 char *rp; local
37 rp = vsprintf(str, fmt, ap);
39 rval = strlen(rp);
/freebsd-11-stable/crypto/openssl/crypto/
H A Dsparcv9cap.c17 int bn_mul_mont(BN_ULONG *rp, const BN_ULONG *ap, const BN_ULONG *bp, argument
20 int bn_mul_mont_vis3(BN_ULONG *rp, const BN_ULONG *ap, const BN_ULONG *bp,
22 int bn_mul_mont_fpu(BN_ULONG *rp, const BN_ULONG *ap, const BN_ULONG *bp,
24 int bn_mul_mont_int(BN_ULONG *rp, const BN_ULONG *ap, const BN_ULONG *bp,
31 typedef int (*bn_mul_mont_f) (BN_ULONG *rp, const BN_ULONG *ap,
35 int bn_mul_mont_t4_8(BN_ULONG *rp, const BN_ULONG *ap,
38 int bn_mul_mont_t4_16(BN_ULONG *rp, const BN_ULONG *ap,
41 int bn_mul_mont_t4_24(BN_ULONG *rp, const BN_ULONG *ap,
44 int bn_mul_mont_t4_32(BN_ULONG *rp, const BN_ULONG *ap,
53 if ((*worker) (rp, a
[all...]
H A Dppccap.c24 int bn_mul_mont(BN_ULONG *rp, const BN_ULONG *ap, const BN_ULONG *bp, argument
27 int bn_mul_mont_fpu64(BN_ULONG *rp, const BN_ULONG *ap,
30 int bn_mul_mont_int(BN_ULONG *rp, const BN_ULONG *ap, const BN_ULONG *bp,
36 return bn_mul_mont_fpu64(rp, ap, bp, np, n0, num);
47 ret = bn_mul_mont_fpu64(rp, ap, bp, np, n0, num);
58 return bn_mul_mont_fpu64(rp, ap, bp, np, n0, num);
60 return bn_mul_mont_int(rp, ap, bp, np, n0, num);
/freebsd-11-stable/sys/arm/arm/
H A Dphysmem.c260 struct region *ep, *rp; local
263 for (i = 0, rp = regions; i < rcnt; ++i, ++rp) {
264 if (addr < rp->addr) {
265 bcopy(rp, rp + 1, (ep - rp) * sizeof(*rp));
269 rp->addr = addr;
270 rp
[all...]
/freebsd-11-stable/sys/dev/ofw/
H A Dofwpci.c141 struct ofw_pci_range *rp; local
224 rp = sc->sc_range + i;
228 switch (rp->pci_hi & OFW_PCI_PHYS_HI_SPACEMASK) {
232 error = rman_manage_region(&sc->sc_io_rman, rp->pci,
233 rp->pci + rp->size - 1);
237 if (rp->pci_hi & OFW_PCI_PHYS_HI_PREFETCHABLE) {
240 rp->pci, rp->pci + rp
487 struct ofw_pci_range *rp; local
[all...]
/freebsd-11-stable/contrib/mdocml/
H A Dtbl.c106 struct tbl_row *rp; local
111 while ((rp = tbl->first_row) != NULL) {
112 tbl->first_row = rp->next;
113 while (rp->first != NULL) {
114 cp = rp->first;
115 rp->first = cp->next;
119 free(rp);
/freebsd-11-stable/sys/powerpc/ofw/
H A Dofw_pci.c132 struct ofw_pci_range *rp; local
194 for (rp = sc->sc_range; rp < sc->sc_range + sc->sc_nrange &&
195 rp->pci_hi != 0; rp++) {
198 switch (rp->pci_hi & OFW_PCI_PHYS_HI_SPACEMASK) {
202 error = rman_manage_region(&sc->sc_io_rman, rp->pci,
203 rp->pci + rp->size - 1);
207 error = rman_manage_region(&sc->sc_mem_rman, rp
386 struct ofw_pci_range *rp; local
[all...]
/freebsd-11-stable/cddl/contrib/opensolaris/lib/libdtrace/common/
H A Ddt_parser.c336 dt_type_promote(dt_node_t *lp, dt_node_t *rp, ctf_file_t **ofp, ctf_id_t *otype) argument
341 ctf_file_t *rfp = rp->dn_ctfp;
342 ctf_id_t rtype = rp->dn_type;
407 dt_node_promote(dt_node_t *lp, dt_node_t *rp, dt_node_t *dnp) argument
409 dt_type_promote(lp, rp, &dnp->dn_ctfp, &dnp->dn_type);
411 dt_node_attr_assign(dnp, dt_attr_min(lp->dn_attr, rp->dn_attr));
1046 dt_node_is_ptrcompat(const dt_node_t *lp, const dt_node_t *rp, argument
1050 ctf_file_t *rfp = rp->dn_ctfp;
1061 assert(rp->dn_flags & DT_NF_COOKED);
1063 if (dt_node_is_dynamic(lp) || dt_node_is_dynamic(rp))
1158 dt_node_is_argcompat(const dt_node_t *lp, const dt_node_t *rp) argument
1915 dt_cast(dt_node_t *lp, dt_node_t *rp) argument
1939 dt_node_op2(int op, dt_node_t *lp, dt_node_t *rp) argument
2111 dt_node_op3(dt_node_t *expr, dt_node_t *lp, dt_node_t *rp) argument
3141 dt_node_t *rp = dnp->dn_right; local
3167 dt_node_t *rp = dnp->dn_right; local
4023 dt_node_t *lp, *rp; local
4581 dt_node_link(dt_node_t *lp, dt_node_t *rp) argument
[all...]
/freebsd-11-stable/sys/cddl/dev/dtrace/i386/
H A Ddtrace_isa.c505 dtrace_getreg(struct trapframe *rp, uint_t reg) argument
550 return (rp->tf_fs);
552 return (rp->tf_es);
554 return (rp->tf_ds);
556 return (rp->tf_edi);
558 return (rp->tf_esi);
560 return (rp->tf_ebp);
562 return (rp->tf_isp);
564 return (rp->tf_ebx);
566 return (rp
[all...]
/freebsd-11-stable/crypto/heimdal/lib/roken/
H A Dgetcap.c237 char *r_end, *rp = NULL, **db_p; /* pacify gcc */ local
260 rp = record + topreclen + 1;
261 r_end = rp + BFRAG;
355 rp = record;
381 rp--;
398 rp = cp;
400 cp = rp;
410 *rp++ = c;
417 if (rp >= r_end) {
421 pos = rp
[all...]
/freebsd-11-stable/lib/libc/gen/
H A Dgetcap.c191 char *r_end, *rp, **db_p; local
215 rp = record + topreclen + 1;
216 r_end = rp + BFRAG;
297 rp = record;
321 if (rp > record && *(rp-1) == '\\') {
322 rp--;
327 *rp++ = c;
334 if (rp >= r_end) {
338 pos = rp
651 char *cp, *line, *rp, *np, buf[BSIZE], nbuf[BSIZE]; local
[all...]
/freebsd-11-stable/usr.sbin/bluetooth/hccontrol/
H A Dsend_recv.c47 hci_request(int s, int opcode, char const *cp, int cp_size, char *rp, int *rp_size) argument
54 assert(rp != NULL);
102 memcpy(rp, buffer + sizeof(*e) + sizeof(*cc), *rp_size);
115 *rp = cs->status;
127 hci_simple_request(int s, int opcode, char *rp, int *rp_size) argument
129 return (hci_request(s, opcode, NULL, 0, rp, rp_size));
/freebsd-11-stable/sys/netipsec/
H A Dkeysock.c140 key_sendup0(struct rawcb *rp, struct mbuf *m, int promisc) argument
162 if (!sbappendaddr(&rp->rcb_socket->so_rcv, (struct sockaddr *)&key_src,
169 sorwakeup(rp->rcb_socket);
179 struct rawcb *rp; local
208 LIST_FOREACH(rp, &V_rawcb_list, list)
210 if (rp->rcb_proto.sp_family != PF_KEY)
212 if (rp->rcb_proto.sp_protocol
213 && rp->rcb_proto.sp_protocol != PF_KEY_V2) {
222 kp = (struct keycb *)rp;
226 key_sendup0(rp,
[all...]
/freebsd-11-stable/contrib/ncurses/ncurses/tinfo/
H A Dcomp_parse.c274 ENTRY *qp, *rp, *lastread = 0; local
288 for_entry_list(rp) {
289 if (qp > rp
291 rp->tterm.term_names,
294 (void) fprintf(stderr, "\t%s\n", rp->tterm.term_names);
297 if (!remove_collision(rp->tterm.term_names,
327 for_entry_list(rp) {
328 if (rp != qp
329 && _nc_name_match(rp->tterm.term_names, lookfor, "|")) {
333 qp->uses[i].link = rp;
[all...]

Completed in 198 milliseconds

1234567891011