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

/external/clang/test/PCH/
H A Dcxx-reference.h4 typedef char (&&RR); typedef
12 RR &lrrr = c;
13 RR &&rrrr = 'c';
/external/clang/lib/StaticAnalyzer/Checkers/
H A DPointerSubChecker.cpp48 const MemRegion *RR = RV.getAsRegion(); local
50 if (!(LR && RR))
54 const MemRegion *BaseRR = RR->getBaseRegion();
/external/boringssl/src/crypto/bn/
H A Drsaz_exp.c79 const BN_ULONG m_norm[16], const BN_ULONG RR[16], BN_ULONG k0)
101 rsaz_1024_norm2red_avx2(R2, RR);
275 const BN_ULONG m[8], BN_ULONG k0, const BN_ULONG RR[8])
293 rsaz_512_mul(a_inv, base, RR, m, k0);
77 RSAZ_1024_mod_exp_avx2(BN_ULONG result_norm[16], const BN_ULONG base_norm[16], const BN_ULONG exponent[16], const BN_ULONG m_norm[16], const BN_ULONG RR[16], BN_ULONG k0) argument
273 RSAZ_512_mod_exp(BN_ULONG result[8], const BN_ULONG base[8], const BN_ULONG exponent[8], const BN_ULONG m[8], BN_ULONG k0, const BN_ULONG RR[8]) argument
/external/llvm/lib/CodeGen/
H A DRegisterClassInfo.cpp65 const BitVector &RR = MF->getRegInfo().getReservedRegs(); local
66 if (Reserved.size() != RR.size() || RR != Reserved) {
68 Reserved = RR;
/external/clang/test/CodeGen/
H A Dunion.c39 union RR {_Bool a : 1;} RRU; union
/external/vboot_reference/host/lib/
H A Dutil_misc.c39 BIGNUM *N0inv = NULL, *R = NULL, *RR = NULL; local
70 NEW_BIGNUM(RR);
97 /* Calculate RR = R^2 mod N */
98 BN_copy(RR, R);
99 BN_mul(RRTemp, RR, R, bn_ctx);
100 BN_mod(RR, RRTemp, N, bn_ctx);
118 BN_mod(rr, RR, B, bn_ctx); /* rr = RR mod B */
122 BN_rshift(RR, RR, 3
[all...]
/external/vboot_reference/utility/
H A DdumpRSAPublicKey.c46 BIGNUM *N0inv= NULL, *R = NULL, *RR = NULL, *RRTemp = NULL, *NnumBits = NULL; local
65 RR = BN_new();
91 /* Calculate RR = R^2 mod N */
92 BN_copy(RR, R);
93 BN_mul(RRTemp, RR, R, bn_ctx);
94 BN_mod(RR, RRTemp, N, bn_ctx);
113 BN_mod(rr, RR, B, bn_ctx); /* rr = RR mod B */
118 BN_rshift(RR, RR, 3
[all...]
/external/boringssl/include/openssl/
H A Dbn.h797 BIGNUM RR; /* used to convert to montgomery form */ member in struct:bn_mont_ctx_st
/external/boringssl/src/include/openssl/
H A Dbn.h797 BIGNUM RR; /* used to convert to montgomery form */ member in struct:bn_mont_ctx_st
/external/opencv/cv/src/
H A Dcvundistort.cpp379 double A[3][3], RR[3][3], k[5]={0,0,0,0,0}, fx, fy, ifx, ify, cx, cy; local
381 CvMat _RR=cvMat(3, 3, CV_64F, RR);
470 double xx = RR[0][0]*x + RR[0][1]*y + RR[0][2];
471 double yy = RR[1][0]*x + RR[1][1]*y + RR[1][2];
472 double ww = 1./(RR[2][0]*x + RR[
[all...]
/external/llvm/include/llvm/ADT/
H A DImmutableSet.h517 TreeTy *RR = getRight(R); local
519 if (getHeight(RR) >= getHeight(RL))
520 return createNode(createNode(L,V,RL), R, RR);
527 return createNode(createNode(L,V,RLL), RL, createNode(RLR,R,RR));
/external/llvm/lib/Target/Hexagon/
H A DHexagonExpandCondsets.cpp121 bool operator== (RegisterRef RR) const {
122 return Reg == RR.Reg && Sub == RR.Sub;
124 bool operator!= (RegisterRef RR) const { return !operator==(RR); }
134 void addRefToMap(RegisterRef RR, ReferenceMap &Map, unsigned Exec);
171 bool isIntReg(RegisterRef RR, unsigned &BW);
209 void HexagonExpandCondsets::addRefToMap(RegisterRef RR, ReferenceMap &Map, argument
211 unsigned Mask = getMaskForSub(RR.Sub) | Exec;
212 ReferenceMap::iterator F = Map.find(RR
220 isRefInMap(RegisterRef RR, ReferenceMap &Map, unsigned Exec) argument
788 RegisterRef RR = Op; local
823 RegisterRef RR = Op; local
1021 RegisterRef RR = Op; local
1148 isIntReg(RegisterRef RR, unsigned &BW) argument
[all...]
/external/opencv/ml/src/
H A Dmlboost.cpp581 // RR - ... both send to the right
584 double LL = 0, RL = 0, LR, RR; local
598 RR = (sum_abs + sum)*0.5;
602 // LR of them are sent to the left by primary split, and RR - to the right.
603 // now iteratively compute LL, LR, RL and RR for every possible surrogate split value.
613 if( LL + RR > best_val && sorted[i].val + epsilon < sorted[i+1].val )
615 best_val = LL + RR;
621 RL += w; RR -= w;
646 // RR - ... both send to the right
H A Dmltree.cpp2057 // RR - ... both send to the right
2063 int LL = 0, RL = 0, LR, RR; local
2074 RR = (sum_abs + sum) >> 1;
2078 // LR of them are sent to the left by primary split, and RR - to the right.
2079 // now iteratively compute LL, LR, RL and RR for every possible surrogate split value.
2087 if( LL + RR > _best_val && sorted[i].val + epsilon < sorted[i+1].val )
2089 best_val = LL + RR;
2095 RL++; RR--;
2107 double LL = 0, RL = 0, LR, RR; local
2123 RR
[all...]
/external/valgrind/VEX/priv/
H A Dhost_tilegx_defs.h161 } RR; member in union:__anon15537::__anon15538
H A Dhost_mips_defs.h183 } RR; member in union:__anon15318::__anon15319
H A Dhost_arm_defs.h176 } RR; member in union:__anon15215::__anon15216
217 } RR; member in union:__anon15221::__anon15222
H A Dhost_ppc_defs.h189 } RR; member in union:__anon15375::__anon15376
H A Dir_opt.c6034 # define RR(_e) ((_e)->Iex.Binop.arg2) macro
6048 and = STEP(RR(e));
6051 c = RR(and);
6054 a2bR = RR(xor);
6076 a1 = RR(e);
6080 c = RR(and);
6083 a2bR = RR(xor);
6106 and = STEP(RR(e));
6108 xor = STEP(RR(and));
6112 a2bR = RR(xo
6165 # undef RR macro
[all...]
H A Dhost_arm64_defs.h140 } RR; member in union:__anon15114::__anon15115
H A Dguest_s390_toIR.c14001 } RR; member in union:__anon14987
14029 case 0x06: s390_format_RR_RR(s390_irgen_BCTR, ovl.fmt.RR.r1, ovl.fmt.RR.r2);
14031 case 0x07: s390_format_RR(s390_irgen_BCR, ovl.fmt.RR.r1, ovl.fmt.RR.r2);
14036 case 0x0d: s390_format_RR_RR(s390_irgen_BASR, ovl.fmt.RR.r1, ovl.fmt.RR.r2);
14038 case 0x0e: s390_format_RR(s390_irgen_MVCL, ovl.fmt.RR.r1, ovl.fmt.RR.r2);
14040 case 0x0f: s390_format_RR(s390_irgen_CLCL, ovl.fmt.RR
[all...]
/external/llvm/lib/Target/X86/
H A DX86FastISel.cpp525 unsigned RR = fastEmit_r(SrcVT.getSimpleVT(), DstVT.getSimpleVT(), Opc, local
527 if (RR == 0)
530 ResultReg = RR;
/external/llvm/utils/TableGen/
H A DCodeGenDAGPatterns.cpp3716 Record *RR = DI->getDef(); local
3717 if (RR->isSubClassOf("Register"))
/external/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp2708 SDValue LL, LR, RL, RR, CC0, CC1;
2709 if (isSetCCEquivalent(N0, LL, LR, CC0) && isSetCCEquivalent(N1, RL, RR, CC1)){
2713 if (LR == RR && isa<ConstantSDNode>(LR) && Op0 == Op1 &&
2738 if (LL == RL && isa<ConstantSDNode>(LR) && isa<ConstantSDNode>(RR) &&
2741 cast<ConstantSDNode>(RR)->isAllOnesValue()) ||
2743 cast<ConstantSDNode>(RR)->isNullValue()))) {
2751 if (LL == RR && LR == RL) {
2753 std::swap(RL, RR);
2755 if (LL == RL && LR == RR) {
3379 SDValue LL, LR, RL, RR, CC local
[all...]
/external/clang/lib/Sema/
H A DSemaExpr.cpp9248 DeclRefExpr *RR = dyn_cast<DeclRefExpr>(OR->getBase()->IgnoreImpCasts()); local
9249 if (RL && RR && RL->getDecl() == RR->getDecl())

Completed in 1917 milliseconds