Searched defs:rp (Results 1 - 25 of 68) sorted by relevance

123

/external/blktrace/btt/
H A Dtrace_remap.c23 static inline void cvt_pdu_remap(struct blk_io_trace_remap *rp) argument
25 rp->device_from = be32_to_cpu(rp->device_from);
26 rp->device_to = be32_to_cpu(rp->device_to);
27 rp->sector_from = be64_to_cpu(rp->sector_from);
38 struct blk_io_trace_remap *rp; local
43 rp = a_iop->pdu;
44 cvt_pdu_remap(rp);
[all...]
/external/openssl/crypto/dsa/
H A Ddsa_sign.c84 int DSA_sign_setup(DSA *dsa, BN_CTX *ctx_in, BIGNUM **kinvp, BIGNUM **rp) argument
93 return dsa->meth->dsa_sign_setup(dsa, ctx_in, kinvp, rp);
H A Ddsa_ossl.c71 static int dsa_sign_setup(DSA *dsa, BN_CTX *ctx_in, BIGNUM **kinvp, BIGNUM **rp);
204 static int dsa_sign_setup(DSA *dsa, BN_CTX *ctx_in, BIGNUM **kinvp, BIGNUM **rp) argument
279 if (*rp != NULL) BN_clear_free(*rp);
280 *rp=r;
/external/bison/src/
H A Dderives.c51 rule **rp; local
53 for (rp = derives[i - ntokens]; *rp; ++rp)
55 fprintf (stderr, "\t\t%3d ", (*rp)->user_number);
56 rule_rhs_print (*rp, stderr);
H A Dnullable.c86 item_number *rp = NULL; local
88 for (rp = rules_ruleno->rhs; *rp >= 0; ++rp)
89 if (ISTOKEN (*rp))
95 for (rp = rules_ruleno->rhs; *rp >= 0; ++rp)
98 p->next = rsets[*rp - ntokens];
100 rsets[*rp
[all...]
H A Dclosure.c65 item_number *rp;
67 for (rp = &ritem[array[i]]; *rp >= 0; ++rp)
68 fprintf (stderr, " %s", symbols[*rp]->tag);
69 fprintf (stderr, " (rule %d)\n", -*rp - 1);
64 item_number *rp; local
/external/ipsec-tools/src/racoon/
H A Dstr2val.c86 char *rp; local
108 for (rp = dst, p = str; *p != '\0'; p++) {
116 *rp++ = (char)strtol(b, NULL, base);
/external/tcpdump/
H A Dprint-ripng.c64 register const struct rip6 *rp = (struct rip6 *)dat; local
79 switch (rp->rip6_cmd) {
84 && rp->rip6_nets->rip6_metric == HOPCNT_INFINITY6
85 && IN6_IS_ADDR_UNSPECIFIED(&rp->rip6_nets->rip6_dest)) {
94 for (ni = rp->rip6_nets; i >= sizeof(*ni);
110 for (ni = rp->rip6_nets; i >= sizeof(*ni);
122 printf(" ripng-%d ?? %u", rp->rip6_cmd, length);
125 if (rp->rip6_vers != RIP6_VERSION)
126 printf(" [vers %d]", rp->rip6_vers);
H A Dprint-sunrpc.c73 register const struct sunrpc_msg *rp; local
81 rp = (struct sunrpc_msg *)bp;
85 EXTRACT_32BITS(&rp->rm_xid));
89 EXTRACT_32BITS(&rp->rm_xid));
114 EXTRACT_32BITS(&rp->rm_call.cb_proc)));
115 x = EXTRACT_32BITS(&rp->rm_call.cb_rpcvers);
119 switch (EXTRACT_32BITS(&rp->rm_call.cb_proc)) {
125 x = EXTRACT_32BITS(&rp->rm_call.cb_prog);
130 printf(".%u", EXTRACT_32BITS(&rp->rm_call.cb_vers));
140 register struct rpcent *rp; local
[all...]
/external/bluetooth/bluez/tools/
H A Dcsr_h4.c86 unsigned char cp[254], rp[254]; local
125 if (read(fd, rp, 1) < 1)
127 } while (rp[0] != 0x04);
129 if (read(fd, rp + 1, 2) < 2)
133 len = read(fd, rp + offset, sizeof(rp) - offset);
135 } while (offset < rp[2] + 3);
137 if (rp[0] != 0x04 || rp[1] != 0xff || rp[
[all...]
H A Dcsr_hci.c89 unsigned char cp[254], rp[254]; local
126 rq.rparam = rp;
127 rq.rlen = sizeof(rp);
132 if (rp[0] != 0xc2) {
137 if ((rp[9] + (rp[10] << 8)) != 0) {
142 memcpy(value, rp + 11, length);
H A Dcsr_usb.c105 unsigned char cp[254], rp[254]; local
131 usb_interrupt_read(udev, 0x81, (void *) rp, sizeof(rp), 2);
147 (void *) (rp + offset), sizeof(rp) - offset, 10);
151 if (rp[0] != 0xff || rp[2] != 0xc2) {
156 if ((rp[11] + (rp[12] << 8)) != 0) {
161 memcpy(value, rp
[all...]
H A Dcsr_bcsp.c151 unsigned char cp[254], rp[254]; local
207 memcpy(rp, receive_packet.payload,
227 if (rp[0] != 0xff || rp[2] != 0xc2) {
232 if ((rp[11] + (rp[12] << 8)) != 0) {
237 memcpy(value, rp + 13, length);
H A Dhciattach_st.c48 unsigned char cp[260], rp[260]; local
71 if (read(fd, rp, 1) < 1)
73 } while (rp[0] != 0x04);
75 if (read(fd, rp + 1, 2) < 2)
79 len = read(fd, rp + offset, sizeof(rp) - offset);
81 } while (offset < rp[2] + 3);
87 printf(" %02x", rp[i]);
91 if (rp[0] != 0x04) {
96 switch (rp[
[all...]
/external/openssl/crypto/bn/
H A Dbn_shift.c65 register BN_ULONG *ap,*rp,t,c; local
82 rp=r->d;
87 *(rp++)=((t<<1)|c)&BN_MASK2;
92 *rp=1;
101 BN_ULONG *ap,*rp,t,c; local
119 rp=r->d;
124 rp[i]=((t>>1)&BN_MASK2)|c;
H A Dbn_add.c108 BN_ULONG *ap,*bp,*rp,carry,t1,t2; local
128 rp=r->d;
130 carry=bn_add_words(rp,ap,bp,min);
131 rp+=min;
142 *(rp++) = t2;
152 *rp = 1;
156 if (dif && rp != ap)
158 /* copy remaining words if ap != rp */
159 *(rp++) = *(ap++);
169 register BN_ULONG t1,t2,*ap,*bp,*rp; local
[all...]
H A Dbn_sqr.c162 BN_ULONG *rp; local
166 rp=r;
167 rp[0]=rp[max-1]=0;
168 rp++;
174 rp[j]=bn_mul_words(rp,ap,j,ap[-1]);
175 rp+=2;
182 rp[j]=bn_mul_add_words(rp,a
[all...]
/external/openssl/crypto/ecdsa/
H A Decs_sign.c68 const BIGNUM *kinv, const BIGNUM *rp, EC_KEY *eckey)
73 return ecdsa->meth->ecdsa_do_sign(dgst, dlen, kinv, rp, eckey);
100 BIGNUM **rp)
105 return ecdsa->meth->ecdsa_sign_setup(eckey, ctx_in, kinvp, rp);
67 ECDSA_do_sign_ex(const unsigned char *dgst, int dlen, const BIGNUM *kinv, const BIGNUM *rp, EC_KEY *eckey) argument
99 ECDSA_sign_setup(EC_KEY *eckey, BN_CTX *ctx_in, BIGNUM **kinvp, BIGNUM **rp) argument
H A Decs_ossl.c67 BIGNUM **rp);
90 BIGNUM **rp)
116 r = BN_new(); /* this value is later returned in *rp */
186 if (*rp != NULL)
187 BN_clear_free(*rp);
191 *rp = r;
89 ecdsa_sign_setup(EC_KEY *eckey, BN_CTX *ctx_in, BIGNUM **kinvp, BIGNUM **rp) argument
/external/qemu/elff/
H A Delf_defs.h108 * rp - Beginning of the range to check.
117 is_in_section(const void* rp, size_t rsize, const void* ss, size_t ssize) { argument
118 const void* rend = INC_CPTR(rp, rsize);
120 return rp >= ss && ss != NULL && (diff_ptr(ss, rend) <= ssize) && rend >= rp;
/external/icu4c/common/
H A Duvectr32.h237 int32_t *rp = elements+count; local
239 return rp;
/external/jpeg/
H A Dansi2knr.c560 char *rp; local
584 else rp = p;
595 writeblanks(lp + 1, rp);
/external/openssl/crypto/bn/asm/
H A Dsparcv8.S42 * BN_ULONG bn_mul_add_words(rp,ap,num,w)
43 * BN_ULONG *rp,*ap;
155 * BN_ULONG bn_mul_words(rp,ap,num,w)
156 * BN_ULONG *rp,*ap;
351 * BN_ULONG bn_add_words(rp,ap,bp,n)
352 * BN_ULONG *rp,*ap,*bp;
439 * BN_ULONG bn_sub_words(rp,ap,bp,n)
440 * BN_ULONG *rp,*ap,*bp;
538 #define rp(I) [%i0+4*I] define
571 st c_1,rp(
[all...]
H A Dsparcv8plus.S159 * BN_ULONG bn_mul_add_words(rp,ap,num,w)
160 * BN_ULONG *rp,*ap;
261 * BN_ULONG bn_mul_words(rp,ap,num,w)
262 * BN_ULONG *rp,*ap;
455 * BN_ULONG bn_add_words(rp,ap,bp,n)
456 * BN_ULONG *rp,*ap,*bp;
533 * BN_ULONG bn_sub_words(rp,ap,bp,n)
534 * BN_ULONG *rp,*ap,*bp;
634 #define rp(I) [%i0+4*I] define
669 stuw t_1,rp(
[all...]
H A Dx86_64-gcc.c104 BN_ULONG bn_mul_add_words(BN_ULONG *rp, const BN_ULONG *ap, int num, BN_ULONG w) argument
112 mul_add(rp[0],ap[0],w,c1);
113 mul_add(rp[1],ap[1],w,c1);
114 mul_add(rp[2],ap[2],w,c1);
115 mul_add(rp[3],ap[3],w,c1);
116 ap+=4; rp+=4; num-=4;
120 mul_add(rp[0],ap[0],w,c1); if (--num==0) return c1;
121 mul_add(rp[1],ap[1],w,c1); if (--num==0) return c1;
122 mul_add(rp[2],ap[2],w,c1); return c1;
128 BN_ULONG bn_mul_words(BN_ULONG *rp, cons argument
182 bn_add_words(BN_ULONG *rp, const BN_ULONG *ap, const BN_ULONG *bp,int n) argument
205 bn_sub_words(BN_ULONG *rp, const BN_ULONG *ap, const BN_ULONG *bp,int n) argument
[all...]

Completed in 286 milliseconds

123