Searched defs:rr (Results 51 - 75 of 187) sorted by relevance

12345678

/external/chromium_org/ui/gfx/geometry/
H A Drect.cc92 int rr = std::max(p1.x(), p2.x()); local
94 return Rect(rx, ry, rr - rx, rb - ry);
H A Dquad_f.h64 float rr = std::max(std::max(p1_.x(), p2_.x()), std::max(p3_.x(), p4_.x())); local
67 return RectF(rl, rt, rr - rl, rb - rt);
/external/libopus/silk/float/
H A Dfind_LTP_FLP.c52 silk_float Rr[ LTP_ORDER ], rr[ MAX_NB_SUBFR ]; local
64 rr[ k ] = ( silk_float )silk_energy_FLP( r_ptr, subfr_length );
65 regu = 1.0f + rr[ k ] +
69 silk_regularize_correlations_FLP( WLTP_ptr, &rr[ k ], regu, LTP_ORDER );
73 nrg[ k ] = silk_residual_energy_covar_FLP( b_ptr, WLTP_ptr, Rr, rr[ k ], LTP_ORDER );
89 LPC_res_nrg += rr[ k ] * Wght[ k ];
/external/openssl/crypto/bn/
H A Dbn_sqr.c69 BIGNUM *tmp,*rr; local
85 rr=(a != r) ? r : BN_CTX_get(ctx);
87 if (!rr || !tmp) goto err;
90 if (bn_wexpand(rr,max) == NULL) goto err;
96 bn_sqr_normal(rr->d,a->d,4,t);
98 bn_sqr_comba4(rr->d,a->d);
105 bn_sqr_normal(rr->d,a->d,8,t);
107 bn_sqr_comba8(rr->d,a->d);
116 bn_sqr_normal(rr->d,a->d,al,t);
128 bn_sqr_recursive(rr
[all...]
H A Dexp.c16 BIGNUM a,b,c,r,rr,t,l; local
H A Dbn_exp2.c118 int BN_mod_exp2_mont(BIGNUM *rr, const BIGNUM *a1, const BIGNUM *p1, argument
145 ret = BN_one(rr);
182 BN_zero(rr);
216 BN_zero(rr);
304 if (!BN_from_montgomery(rr,r,mont,ctx))
310 bn_check_top(rr);
/external/skia/gm/
H A Dnested.cpp53 SkRRect rr; local
54 rr.setRectXY(rect, 5, 5);
55 path->addRRect(rr, dir);
H A Drrect.cpp117 SkRRect rr; local
119 proc(rrect, d, d, &rr);
120 draw_rrect_color(canvas, rr);
/external/skia/samplecode/
H A DSampleAvoid.cpp85 SkRect rr = { 0, 0, r.width()/div, r.height()/div }; local
86 rr.offset(r.width()/4 - rr.width()/2, r.height()/4 - rr.height()/2);
87 rr.offset(r.width() * gData[i].fDX/2, r.height() * gData[i].fDY/2);
88 canvas->drawRect(rr, paint);
91 canvas->drawRect(rr, frameP);
/external/skia/src/utils/
H A DSkCanvasStack.cpp85 void SkCanvasStack::onClipRRect(const SkRRect& rr, SkRegion::Op op, ClipEdgeStyle edgeStyle) { argument
86 this->INHERITED::onClipRRect(rr, op, edgeStyle);
/external/chromium_org/ppapi/cpp/
H A Drect.cc56 int32_t rr = std::min(right(), rect.right()); local
59 if (rx >= rr || ry >= rb)
60 rx = ry = rr = rb = 0; // non-intersecting
62 return Rect(rx, ry, rr - rx, rb - ry);
74 int32_t rr = std::max(right(), rect.right()); local
77 return Rect(rx, ry, rr - rx, rb - ry);
89 int32_t rr = right(); local
97 rr = rect.x();
107 return Rect(rx, ry, rr - rx, rb - ry);
160 float rr local
178 float rr = std::max(right(), rect.right()); local
193 float rr = right(); local
[all...]
/external/chromium_org/third_party/opus/src/celt/
H A Dcelt_lpc.c58 opus_val32 rr = 0; local
60 rr += MULT32_32_Q31(lpc[j],ac[i - j]);
61 rr += SHR32(ac[i + 1],3);
62 r = -frac_div32(SHL32(rr,3), error);
/external/chromium_org/third_party/opus/src/silk/fixed/
H A Dfind_LTP_FIX.c69 opus_int32 Rr[ LTP_ORDER ], rr[ MAX_NB_SUBFR ]; local
78 silk_sum_sqr_shift( &rr[ k ], &rr_shifts, r_ptr, subfr_length ); /* rr[ k ] in Q( -rr_shifts ) */
81 LZs = silk_CLZ32( rr[k] );
83 rr[ k ] = silk_RSHIFT_ROUND( rr[ k ], LTP_CORRS_HEAD_ROOM - LZs );
89 /* The correlation vector always has lower max abs value than rr and/or RR so head room is assured */
92 rr[ k ] = silk_RSHIFT( rr[ k ], corr_rshifts[ k ] - rr_shifts ); /* rr[
[all...]
/external/chromium_org/third_party/skia/bench/
H A DRepeatTileBench.cpp57 int rr = conv_6_to_byte(r); local
62 *colors++ = SkPreMultiplyARGB(0xFF, rr, gg, bb);
/external/deqp/framework/referencerenderer/
H A DrrFragmentOperations.hpp29 * a wrong format the buffers are wrapped in rr::MultisamplePixelBufferAccess
43 namespace rr namespace
101 void render (const rr::MultisamplePixelBufferAccess& colorMultisampleBuffer,
102 const rr::MultisamplePixelBufferAccess& depthMultisampleBuffer,
103 const rr::MultisamplePixelBufferAccess& stencilMultisampleBuffer,
154 } // rr
H A DrrMultisamplePixelBufferAccess.cpp27 namespace rr namespace
81 MultisampleConstPixelBufferAccess::MultisampleConstPixelBufferAccess (const rr::MultisamplePixelBufferAccess& msAccess)
176 } // rr
H A DrrShadingContext.hpp30 namespace rr namespace
160 // Reading or writing to fragment depth values while there is no depth buffer is legal but not supported by rr
167 // Reading or writing to fragment depth values while there is no depth buffer is legal but not supported by rr
172 } // rr
/external/ipsec-tools/src/racoon/
H A Dgetcertsbyname.c129 struct rrsetinfo *rr = NULL; local
139 error = getrrsetbyname(name, C_IN, T_CERT, 0, &rr);
148 if (rr->rri_rdclass != C_IN
149 || rr->rri_rdtype != T_CERT
150 || rr->rri_nrdatas == 0) {
158 if (!(rr->rri_flags & LWRDATA_VALIDATED))
159 printf("rr is not valid");
162 for (i = 0; i < rr->rri_nrdatas; i++) {
163 rdlength = rr->rri_rdatas[i].rdi_length;
164 cp = rr
[all...]
/external/libopus/celt/
H A Dcelt_lpc.c58 opus_val32 rr = 0; local
60 rr += MULT32_32_Q31(lpc[j],ac[i - j]);
61 rr += SHR32(ac[i + 1],3);
62 r = -frac_div32(SHL32(rr,3), error);
/external/libopus/silk/fixed/
H A Dfind_LTP_FIX.c69 opus_int32 Rr[ LTP_ORDER ], rr[ MAX_NB_SUBFR ]; local
78 silk_sum_sqr_shift( &rr[ k ], &rr_shifts, r_ptr, subfr_length ); /* rr[ k ] in Q( -rr_shifts ) */
81 LZs = silk_CLZ32( rr[k] );
83 rr[ k ] = silk_RSHIFT_ROUND( rr[ k ], LTP_CORRS_HEAD_ROOM - LZs );
89 /* The correlation vector always has lower max abs value than rr and/or RR so head room is assured */
92 rr[ k ] = silk_RSHIFT( rr[ k ], corr_rshifts[ k ] - rr_shifts ); /* rr[
[all...]
/external/openssl/crypto/cms/
H A Dcms_ess.c73 CMS_ReceiptRequest *rr = NULL; local
82 rr = ASN1_item_unpack(str, ASN1_ITEM_rptr(CMS_ReceiptRequest));
83 if (!rr)
86 *prr = rr;
88 CMS_ReceiptRequest_free(rr);
97 CMS_ReceiptRequest *rr = NULL; local
99 rr = CMS_ReceiptRequest_new();
100 if (!rr)
103 ASN1_STRING_set0(rr->signedContentIdentifier, id, idlen);
106 if (!ASN1_STRING_set(rr
140 CMS_add1_ReceiptRequest(CMS_SignerInfo *si, CMS_ReceiptRequest *rr) argument
166 CMS_ReceiptRequest_get0_values(CMS_ReceiptRequest *rr, ASN1_STRING **pcid, int *pallorfirst, STACK_OF(GENERAL_NAMES) **plist, STACK_OF(GENERAL_NAMES) **prto) argument
232 CMS_ReceiptRequest *rr = NULL; local
380 CMS_ReceiptRequest *rr = NULL; local
[all...]
/external/pixman/pixman/
H A Dpixman-gradient-walker.c62 float ra, rr, rg, rb; local
136 rr = (right_c->red * (1.0f/257.0f));
147 walker->r_b = (lr + rr) / 510.0f;
156 walker->r_b = (lr * rx - rr * lx) * w_rec * (1.0f/255.0f);
161 walker->r_s = (rr - lr) * w_rec * (1.0f/255.0f);
/external/qemu/android/utils/
H A Dreflist.c230 int rr = 0; local
232 for ( ; rr < l->size; rr++ ) {
233 if (items[rr] != NULL)
234 items[ww++] = items[rr];
253 int rr = 0; local
255 for ( ; rr < src->size; rr++ ) {
256 if (ritems[rr] != NULL) {
257 witems[ww++] = ritems[rr];
[all...]
/external/skia/bench/
H A DRepeatTileBench.cpp57 int rr = conv_6_to_byte(r); local
62 *colors++ = SkPreMultiplyARGB(0xFF, rr, gg, bb);
/external/chromium_org/chrome/browser/devtools/device/usb/
H A Dandroid_rsa.cc33 uint32 rr[kRSANumWords]; // R^2 as little endian array member in struct:__anon3542::RSAPublicKey
243 uint32* rr; local
244 BnDiv(r, n, NULL, &rr);
248 pkey.rr[i] = rr[i];
253 BnFree(rr);

Completed in 595 milliseconds

12345678