HomeSort by relevance Sort by last modified time
    Searched refs:rp (Results 26 - 50 of 279) sorted by null

12 3 4 5 6 7 8 91011>>

  /system/core/sh/
redir.c 301 struct redirtab *rp = redirlist; local
305 if (rp->renamed[i] != EMPTY) {
309 if (rp->renamed[i] >= 0) {
310 copyfd(rp->renamed[i], i);
311 close(rp->renamed[i]);
316 redirlist = rp->next;
317 ckfree(rp);
354 struct redirtab *rp; local
357 for (rp = redirlist ; rp ; rp = rp->next)
    [all...]
  /external/icu4c/tools/tzcode/
zic.c 167 static zic_t rpytime(const struct rule * rp, int wantedy);
168 static void rulesub(struct rule * rp,
173 static int stringrule(char * result, const struct rule * rp,
866 register struct rule * rp; local
905 rp = &rules[base];
907 if (strcmp(rp->r_name, rules[out].r_name) != 0)
911 if (strcmp(zp->z_rule, rp->r_name) != 0)
913 zp->z_rules = rp;
2019 register struct rule * rp; local
2101 register struct rule * rp; local
    [all...]
  /external/chromium_org/third_party/icu/source/tools/tzcode/
zic.c 167 static zic_t rpytime(const struct rule * rp, int wantedy);
168 static void rulesub(struct rule * rp,
173 static int stringrule(char * result, const struct rule * rp,
866 register struct rule * rp; local
905 rp = &rules[base];
907 if (strcmp(rp->r_name, rules[out].r_name) != 0)
911 if (strcmp(zp->z_rule, rp->r_name) != 0)
913 zp->z_rules = rp;
2019 register struct rule * rp; local
2101 register struct rule * rp; local
    [all...]
  /external/tcpdump/
print-nfs.c 289 register const struct sunrpc_msg *rp; local
298 rp = (const struct sunrpc_msg *)bp;
303 EXTRACT_32BITS(&rp->rm_xid));
307 EXTRACT_32BITS(&rp->rm_xid));
310 reply_stat = EXTRACT_32BITS(&rp->rm_reply.rp_stat);
315 if (xid_map_find(rp, bp2, &proc, &vers) >= 0)
316 interp_reply(rp, proc, vers, length);
321 rstat = EXTRACT_32BITS(&rp->rm_reply.rp_reject.rj_stat);
325 rlow = EXTRACT_32BITS(&rp->rm_reply.rp_reject.rj_vers.low);
326 rhigh = EXTRACT_32BITS(&rp->rm_reply.rp_reject.rj_vers.high)
496 register const struct sunrpc_msg *rp; local
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/bn/
bn_nist.c 404 unsigned int *rp=(unsigned int *)r_d; local
407 acc = rp[0]; acc += bp[3*2-6];
408 acc += bp[5*2-6]; rp[0] = (unsigned int)acc; acc >>= 32;
410 acc += rp[1]; acc += bp[3*2-5];
411 acc += bp[5*2-5]; rp[1] = (unsigned int)acc; acc >>= 32;
413 acc += rp[2]; acc += bp[3*2-6];
415 acc += bp[5*2-6]; rp[2] = (unsigned int)acc; acc >>= 32;
417 acc += rp[3]; acc += bp[3*2-5];
419 acc += bp[5*2-5]; rp[3] = (unsigned int)acc; acc >>= 32;
421 acc += rp[4]; acc += bp[4*2-6]
532 unsigned int *rp=(unsigned int *)r_d; local
679 unsigned int *rp=(unsigned int *)r_d; local
883 unsigned int *rp=(unsigned int *)r_d; local
    [all...]
bn_mont.c 180 BN_ULONG *ap,*np,*rp,n0,v,carry; local
192 rp=r->d;
197 rp[i]=0;
199 memset(&(rp[r->top]),0,(max-r->top)*sizeof(BN_ULONG));
208 for (carry=0, i=0; i<nl; i++, rp++)
215 t1 = rp[0] * (n0 & 0177777);
218 t3 = rp[0] & 0177777;
221 v=bn_mul_add_words(rp,np,nl,(BN_ULONG) t1);
224 v=bn_mul_add_words(rp,np,nl,(rp[0]*n0)&BN_MASK2)
    [all...]
bn_shift.c 65 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
120 rp=r->d;
123 if (t>>=1) rp[i]=t;
127 rp[i]=((t>>1)&BN_MASK2)|c;
bn_sqr.c 162 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,ap,j,ap[-1])
    [all...]
  /external/openssl/crypto/bn/
bn_nist.c 404 unsigned int *rp=(unsigned int *)r_d; local
407 acc = rp[0]; acc += bp[3*2-6];
408 acc += bp[5*2-6]; rp[0] = (unsigned int)acc; acc >>= 32;
410 acc += rp[1]; acc += bp[3*2-5];
411 acc += bp[5*2-5]; rp[1] = (unsigned int)acc; acc >>= 32;
413 acc += rp[2]; acc += bp[3*2-6];
415 acc += bp[5*2-6]; rp[2] = (unsigned int)acc; acc >>= 32;
417 acc += rp[3]; acc += bp[3*2-5];
419 acc += bp[5*2-5]; rp[3] = (unsigned int)acc; acc >>= 32;
421 acc += rp[4]; acc += bp[4*2-6]
532 unsigned int *rp=(unsigned int *)r_d; local
679 unsigned int *rp=(unsigned int *)r_d; local
883 unsigned int *rp=(unsigned int *)r_d; local
    [all...]
bn_mont.c 180 BN_ULONG *ap,*np,*rp,n0,v,carry; local
192 rp=r->d;
197 rp[i]=0;
199 memset(&(rp[r->top]),0,(max-r->top)*sizeof(BN_ULONG));
208 for (carry=0, i=0; i<nl; i++, rp++)
215 t1 = rp[0] * (n0 & 0177777);
218 t3 = rp[0] & 0177777;
221 v=bn_mul_add_words(rp,np,nl,(BN_ULONG) t1);
224 v=bn_mul_add_words(rp,np,nl,(rp[0]*n0)&BN_MASK2)
    [all...]
bn_shift.c 65 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
120 rp=r->d;
123 if (t>>=1) rp[i]=t;
127 rp[i]=((t>>1)&BN_MASK2)|c;
bn_sqr.c 162 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,ap,j,ap[-1])
    [all...]
  /external/chromium_org/third_party/libpng/
pngwtran.c 538 png_bytep rp;
548 for (i = 0, rp = row; i < row_width; i++, rp += bytes_per_pixel)
550 *(rp) = (png_byte)((*rp - *(rp+1))&0xff);
551 *(rp+2) = (png_byte)((*(rp+2) - *(rp+1))&0xff);
556 png_bytep rp;
    [all...]
  /external/libpng/
pngwtran.c 538 png_bytep rp;
548 for (i = 0, rp = row; i < row_width; i++, rp += bytes_per_pixel)
550 *(rp) = (png_byte)((*rp - *(rp+1))&0xff);
551 *(rp+2) = (png_byte)((*(rp+2) - *(rp+1))&0xff);
556 png_bytep rp;
    [all...]
  /external/qemu/distrib/libpng-1.2.19/
pngwtran.c 528 png_bytep rp;
538 for (i = 0, rp = row; i < row_width; i++, rp += bytes_per_pixel)
540 *(rp) = (png_byte)((*rp - *(rp+1))&0xff);
541 *(rp+2) = (png_byte)((*(rp+2) - *(rp+1))&0xff);
546 png_bytep rp;
    [all...]
  /external/ipsec-tools/src/racoon/
str2val.c 86 char *rp; local
108 for (rp = dst, p = str; *p != '\0'; p++) {
116 *rp++ = (char)strtol(b, NULL, base);
  /external/chromium_org/third_party/sqlite/src/tool/
lemon.c 216 struct rule *rp; /* The rule upon which the configuration is based */ member in struct:config
246 struct rule *rp; /* The rule, if a reduce */ member in union:action::__anon16239
405 rc = ap1->x.rp->index - ap2->x.rp->index;
437 newaction->x.rp = (struct rule *)arg;
653 ** rp->precsym field filled. Other rules take as their precedence
660 struct rule *rp; local
661 for(rp=xp->rule; rp; rp=rp->next)
690 struct rule *rp; local
752 struct rule *rp; local
998 struct rule *rp; local
1255 struct rule *rp, *newrp; local
2114 struct rule *rp; local
2788 struct rule *rp; local
2833 struct rule *rp; local
3610 struct rule *rp; local
4088 struct rule *rp, *rp2, *rbest; local
    [all...]
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/java/security/spec/
ECFieldF2m_ImplTest.java 62 * The <code>rp</code> parameter for <code>ECFieldF2m</code>
65 final BigInteger rp; field in class:ECFieldF2m_ImplTest.ECFieldF2mDomainParams
83 * @param rp
88 final BigInteger rp,
92 this.rp = rp;
105 // set 0: valid m and rp - trinomial basis params
111 // set 1: valid m and rp - pentanomial basis params
117 // set 2: valid m, invalid (null) rp
123 // set 3: valid m, invalid rp - bit 0 not se
    [all...]
  /external/oprofile/module/ia64/
IA64syscallstub.h 37 mov r17=rp; \
91 mov loc0=rp; \
105 br.call.sptk.many rp = post_sys_##name; \
108 mov rp = loc0; \
113 br.ret.sptk.few rp; \
134 mov r16=rp; /* save krp */ \
147 /* kernel rp still in r16 */ \
158 mov rp=r16; /* restore krp */ \
174 mov loc0=rp; \
187 br.call.sptk.many rp = pre_sys_##name;
    [all...]
  /external/chromium_org/third_party/opus/src/src/
repacketizer_demo.c 65 OpusRepacketizer *rp; local
108 rp = opus_repacketizer_create();
113 opus_repacketizer_init(rp);
141 err = opus_repacketizer_cat(rp, packets[i], len[i]);
155 err = opus_repacketizer_out(rp, output_packet, MAX_PACKETOUT);
177 int nb_frames = opus_repacketizer_get_nb_frames(rp);
180 err = opus_repacketizer_out_range(rp, i, i+1, output_packet, MAX_PACKETOUT);
  /external/eigen/test/
permutationmatrices.cpp 36 RightPermutationType rp(rv);
37 MatrixType m_permuted = lp * m_original * rp;
44 Matrix<Scalar,Cols,Cols> rm(rp);
48 VERIFY_IS_APPROX(lp.inverse()*m_permuted*rp.inverse(), m_original);
74 m_permuted = m_permuted * rp.inverse();
75 VERIFY_IS_APPROX(m_permuted, m_original*rp.inverse());
82 m_permuted = m_permuted * rp;
83 VERIFY_IS_APPROX(m_permuted, m_original*rp);
96 RightPermutationType rp2 = rp;
100 rm = rp;
    [all...]
  /external/libvpx/libvpx/vp8/encoder/
ssim.c 19 int rp,
28 for(i=0;i<16;i++,s+=sp,r+=rp)
45 int rp,
54 for(i=0;i<8;i++,s+=sp,r+=rp)
97 static double ssim_16x16(unsigned char *s,int sp, unsigned char *r,int rp)
100 vp8_ssim_parms_16x16(s, sp, r, rp, &sum_s, &sum_r, &sum_sq_s, &sum_sq_r, &sum_sxr);
103 static double ssim_8x8(unsigned char *s,int sp, unsigned char *r,int rp)
106 vp8_ssim_parms_8x8(s, sp, r, rp, &sum_s, &sum_r, &sum_sq_s, &sum_sq_r, &sum_sxr);
112 long dssim(unsigned char *s,int sp, unsigned char *r,int rp)
125 vp8_ssim_parms_16x16(s, sp, r, rp, &sum_s, &sum_r, &sum_sq_s, &sum_sq_r, &sum_sxr)
    [all...]
  /external/bison/src/
closure.c 62 item_number *rp;
64 for (rp = &ritem[array[i]]; *rp >= 0; ++rp)
65 fprintf (stderr, " %s", symbols[*rp]->tag);
66 fprintf (stderr, " (rule %d)\n", -*rp - 1);
61 item_number *rp; local
  /external/chromium_org/third_party/opus/src/include/
opus.h 611 * OpusRepacketizer *rp;
612 * rp = (OpusRepacketizer*)malloc(opus_repacketizer_get_size());
613 * if (rp != NULL)
614 * opus_repacketizer_init(rp);
633 * err = opus_repacketizer_cat(rp, data, len);
639 * nb_frames = opus_repacketizer_get_nb_frames(rp);
642 * out_len = opus_repacketizer_out_range(rp, i, i+1, out, sizeof(out));
650 * opus_repacketizer_init(rp);
678 * nb_frames += opus_repacketizer_get_nb_frames(rp);
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/ecdsa/
ecdsa.h 125 * \param rp BIGNUM with a pre-computed rp value (optioanl),
131 const BIGNUM *kinv, const BIGNUM *rp, EC_KEY *eckey);
174 * \param rp BIGNUM pointer for x coordinate of k * generator
178 BIGNUM **rp);
202 * \param rp BIGNUM with a pre-computed rp value (optioanl),
209 const BIGNUM *rp, EC_KEY *eckey);

Completed in 1186 milliseconds

12 3 4 5 6 7 8 91011>>