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

12

/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/swiftshader/third_party/LLVM/lib/CodeGen/
H A DRegisterClassInfo.cpp57 BitVector RR = TRI->getReservedRegs(*MF); local
58 if (RR != Reserved)
60 Reserved = RR;
/external/boringssl/src/crypto/fipsmodule/bn/
H A Drsaz_exp.c71 const BN_ULONG m_norm[16], const BN_ULONG RR[16], BN_ULONG k0)
92 rsaz_1024_norm2red_avx2(R2, RR);
69 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
/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.h922 BIGNUM RR; /* used to convert to montgomery form */ member in struct:bn_mont_ctx_st
/external/boringssl/src/include/openssl/
H A Dbn.h922 BIGNUM RR; /* used to convert to montgomery form */ member in struct:bn_mont_ctx_st
/external/llvm/lib/Target/Hexagon/
H A DHexagonOptAddrMode.cpp151 RegisterRef RR = UA.Addr->getRegRef(); local
152 if (OffsetReg == RR.Reg) {
153 OffsetRR = RR;
H A DRDFLiveness.cpp111 RegisterRef RR = TA.Addr->getRegRef(); local
112 if (RAI.covers(RR, RefRR)) {
515 RegisterRef RR = NodeAddr<DefNode*>(Ds[0]).Addr->getRegRef(); local
516 dbgs() << '<' << Print<RegisterRef>(RR, DFG) << '>';
604 RegisterRef RR = R.first; local
605 if (!isRestricted(PA, UA, RR))
606 RR = getRestrictedRegRef(UA);
610 if (!RAI.alias(R.first, RR))
612 for (auto D : getAllReachingDefs(RR, UA))
613 LOX[RR]
900 RegisterRef RR = UA.Addr->getRegRef(); local
[all...]
H A DHexagonExpandCondsets.cpp219 bool operator== (RegisterRef RR) const {
220 return Reg == RR.Reg && Sub == RR.Sub;
222 bool operator!= (RegisterRef RR) const { return !operator==(RR); }
223 bool operator< (RegisterRef RR) const {
224 return Reg < RR.Reg || (Reg == RR.Reg && Sub < RR.Sub);
236 void addRefToMap(RegisterRef RR, ReferenceMa
323 addRefToMap(RegisterRef RR, ReferenceMap &Map, unsigned Exec) argument
334 isRefInMap(RegisterRef RR, ReferenceMap &Map, unsigned Exec) argument
765 RegisterRef RR = Op; local
800 RegisterRef RR = Op; local
1011 RegisterRef RR = Op; local
1098 isIntReg(RegisterRef RR, unsigned &BW) argument
[all...]
H A DRDFGraph.cpp382 return Ref.RR;
389 void RefNode::setRegRef(RegisterRef RR) { argument
392 Ref.RR = RR;
592 // Determine whether RR is covered by the set of references RRs.
593 bool RegisterAliasInfo::covers(const RegisterSet &RRs, RegisterRef RR) const {
594 if (RRs.count(RR))
598 // on subregisters. If RR itself is not present in RRs, but it has a sub-
601 if (TargetRegisterInfo::isVirtualRegister(RR.Reg)) {
602 if (RR
877 newPhiUse(NodeAddr<PhiNode*> Owner, RegisterRef RR, NodeAddr<BlockNode*> PredB, uint16_t Flags) argument
893 newDef(NodeAddr<InstrNode*> Owner, RegisterRef RR, uint16_t Flags) argument
955 RegisterRef RR = { I->first, 0 }; local
1030 RegisterRef RR = PDA.Addr->getRegRef(); local
1108 RegisterRef RR = RA.Addr->getRegRef(); local
1215 RegisterRef RR = { Op.getReg(), Op.getSubReg() }; local
1234 RegisterRef RR = { Op.getReg(), Op.getSubReg() }; local
1255 RegisterRef RR = { Op.getReg(), Op.getSubReg() }; local
1415 RegisterRef RR = MaxRefs[ClosureIdx[X]]; local
1424 RegisterRef RR = MaxRefs[ClosureIdx[X]]; local
1544 RegisterRef RR = RA.Addr->getRegRef(); local
1606 RegisterRef RR = PUA.Addr->getRegRef(); local
[all...]
H A DRDFGraph.h374 RegisterRef(const RegisterRef &RR) = default; member in struct:RegisterRef
375 RegisterRef &operator= (const RegisterRef &RR) = default; member in struct:RegisterRef
376 bool operator== (const RegisterRef &RR) const {
377 return Reg == RR.Reg && Sub == RR.Sub;
379 bool operator!= (const RegisterRef &RR) const {
380 return !operator==(RR);
382 bool operator< (const RegisterRef &RR) const {
383 return Reg < RR.Reg || (Reg == RR
457 RegisterRef RR; // Phi refs store register info directly. member in union:NodeBase::Ref_struct::__anon13160
800 getNextRef(RegisterRef RR, Predicate P, bool NextOnly, const DataFlowGraph &G) argument
[all...]
/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/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/swiftshader/third_party/LLVM/include/llvm/ADT/
H A DImmutableSet.h514 TreeTy *RR = getRight(R); local
516 if (getHeight(RR) >= getHeight(RL))
517 return createNode(createNode(L,V,RL), R, RR);
524 return createNode(createNode(L,V,RLL), RL, createNode(RLR,R,RR));
/external/swiftshader/third_party/LLVM/lib/Target/ARM/
H A DARMFastISel.cpp1513 unsigned RR = FastEmit_r(SrcVT.getSimpleVT(), DstVT.getSimpleVT(), Opc, local
1516 if (RR != 0) {
1517 ResultReg = RR;
/external/swiftshader/third_party/LLVM/lib/Target/X86/
H A DX86FastISel.cpp81 bool X86FastEmitLoad(EVT VT, const X86AddressMode &AM, unsigned &RR);
313 unsigned RR = FastEmit_r(SrcVT.getSimpleVT(), DstVT.getSimpleVT(), Opc, local
316 if (RR != 0) {
317 ResultReg = RR;
/external/webrtc/webrtc/modules/rtp_rtcp/source/
H A Drtcp_utility.h219 RTCPPacketRR RR; member in union:webrtc::RTCPUtility::RTCPPacket
382 State_ReportBlockItem, // SR/RR report block
/external/llvm/lib/Target/X86/
H A DX86FastISel.cpp698 unsigned RR = fastEmit_r(SrcVT.getSimpleVT(), DstVT.getSimpleVT(), Opc, local
700 if (RR == 0)
703 ResultReg = RR;
/external/llvm/utils/TableGen/
H A DCodeGenDAGPatterns.cpp3751 Record *RR = DI->getDef(); local
3752 if (RR->isSubClassOf("Register"))

Completed in 800 milliseconds

12