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

1234

/external/clang/test/PCH/
H A Dcxx-reference.h4 typedef char (&&RR); typedef
12 RR &lrrr = c;
13 RR &&rrrr = 'c';
/external/llvm/lib/Target/Hexagon/
H A DHexagonRDF.cpp37 bool HexagonRegisterAliasInfo::covers(const RegisterSet &RRs, RegisterRef RR)
39 if (RRs.count(RR))
42 if (!TargetRegisterInfo::isPhysicalRegister(RR.Reg)) {
43 assert(TargetRegisterInfo::isVirtualRegister(RR.Reg));
45 bool HasLo = RRs.count({RR.Reg, Hexagon::subreg_loreg});
46 bool HasHi = RRs.count({RR.Reg, Hexagon::subreg_hireg});
51 if (RR.Sub == 0) {
53 unsigned Lo = TRI.getSubReg(RR.Reg, Hexagon::subreg_loreg);
54 unsigned Hi = TRI.getSubReg(RR.Reg, Hexagon::subreg_hireg);
59 return RegisterAliasInfo::covers(RRs, RR);
[all...]
H A DHexagonRDF.h21 bool covers(RegisterRef RA, RegisterRef RR) const override;
22 bool covers(const RegisterSet &RRs, RegisterRef RR) const override;
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::__anon14391
800 getNextRef(RegisterRef RR, Predicate P, bool NextOnly, const DataFlowGraph &G) argument
[all...]
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 DBitTracker.cpp314 uint16_t BT::MachineEvaluator::getRegBitWidth(const RegisterRef &RR) const {
320 // 1. find a physical register PhysR from the same class as RR.Reg,
321 // 2. find a physical register PhysS that corresponds to PhysR:RR.Sub,
324 if (TargetRegisterInfo::isVirtualRegister(RR.Reg)) {
325 const TargetRegisterClass *VC = MRI.getRegClass(RR.Reg);
329 assert(TargetRegisterInfo::isPhysicalRegister(RR.Reg));
330 PhysR = RR.Reg;
333 unsigned PhysS = (RR.Sub == 0) ? PhysR : TRI.getSubReg(PhysR, RR.Sub);
340 BT::RegisterCell BT::MachineEvaluator::getCell(const RegisterRef &RR,
[all...]
H A DRDFLiveness.h100 RegisterRef RR) const;
102 unsigned getPhysReg(RegisterRef RR) const;
H A DBitTracker.h48 RegisterCell get(RegisterRef RR) const;
49 void put(RegisterRef RR, const RegisterCell &RC);
347 uint16_t getRegBitWidth(const RegisterRef &RR) const;
349 RegisterCell getCell(const RegisterRef &RR, const CellMapType &M) const;
350 void putCell(const RegisterRef &RR, RegisterCell RC, CellMapType &M) const;
354 RegisterCell getRef(const RegisterRef &RR, const CellMapType &M) const {
355 RegisterCell RC = getCell(RR, M);
H A DHexagonBitSimplify.cpp167 static bool getSubregMask(const BitTracker::RegisterRef &RR,
182 const BitTracker::RegisterRef &RR, MachineRegisterInfo &MRI);
363 bool HexagonBitSimplify::getSubregMask(const BitTracker::RegisterRef &RR,
365 const TargetRegisterClass *RC = MRI.getRegClass(RR.Reg);
367 assert(RR.Sub == 0);
373 if (RR.Sub == 0) {
378 assert(RR.Sub == Hexagon::subreg_loreg || RR.Sub == Hexagon::subreg_hireg);
380 Begin = (RR.Sub == Hexagon::subreg_loreg ? 0 : 32);
850 const BitTracker::RegisterRef &RR, MachineRegisterInf
[all...]
/external/mesa3d/src/gallium/auxiliary/gallivm/
H A Df.cpp62 boost::math::ntl::RR exp2(const boost::math::ntl::RR& x)
67 boost::math::ntl::RR log2(const boost::math::ntl::RR& x)
72 boost::math::ntl::RR f(const boost::math::ntl::RR& x, int variant)
88 const boost::math::tools::polynomial<boost::math::ntl::RR>& n,
89 const boost::math::tools::polynomial<boost::math::ntl::RR>& d,
90 const boost::math::ntl::RR& x_offset,
91 const boost::math::ntl::RR
[all...]
/external/boringssl/src/crypto/fipsmodule/bn/
H A Drsaz_exp.h50 const BN_ULONG m_norm[16], const BN_ULONG RR[16], BN_ULONG k0);
H A Dmontgomery.c138 BN_init(&ret->RR);
149 BN_free(&mont->RR);
159 if (!BN_copy(&to->RR, &from->RR) ||
192 // |mont->N| is always stored minimally. Computing RR efficiently leaks the
211 // Save RR = R**2 (mod N). R is the smallest power of 2**BN_BITS2 such that R
219 if (!bn_mod_exp_base_2_vartime(&mont->RR, lgBigR * 2, &mont->N)) {
257 return BN_mod_mul_montgomery(ret, a, &mont->RR, mont, ctx);
372 return BN_from_montgomery(r, &mont->RR, mont, ctx);
449 return bn_mod_mul_montgomery_small(r, num_r, a, num_a, mont->RR
[all...]
/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/valgrind/none/tests/ppc32/
H A Dtest_dfp3.stdout.exp1017 drrnd (RMC=0, ref sig=0) [RR]2234000000000e50 => 2234000000000e50
1018 drrnd (RMC=1, ref sig=0) [RR]2234000000000e50 => 2234000000000e50
1019 drrnd (RMC=2, ref sig=0) [RR]2234000000000e50 => 2234000000000e50
1020 drrnd (RMC=3, ref sig=0) [RR]2234000000000e50 => 2234000000000e50
1021 drrnd (RMC=0, ref sig=2) [RR]2234000000000e50 => 223c000000000034
1022 drrnd (RMC=1, ref sig=2) [RR]2234000000000e50 => 223c000000000034
1023 drrnd (RMC=2, ref sig=2) [RR]2234000000000e50 => 223c000000000035
1024 drrnd (RMC=3, ref sig=2) [RR]2234000000000e50 => 223c000000000034
1025 drrnd (RMC=0, ref sig=6) [RR]2234000000000e50 => 2234000000000e50
1026 drrnd (RMC=1, ref sig=6) [RR]223400000000
[all...]
/external/valgrind/none/tests/ppc64/
H A Dtest_dfp3.stdout.exp1017 drrnd (RMC=0, ref sig=0) [RR]2234000000000e50 => 2234000000000e50
1018 drrnd (RMC=1, ref sig=0) [RR]2234000000000e50 => 2234000000000e50
1019 drrnd (RMC=2, ref sig=0) [RR]2234000000000e50 => 2234000000000e50
1020 drrnd (RMC=3, ref sig=0) [RR]2234000000000e50 => 2234000000000e50
1021 drrnd (RMC=0, ref sig=2) [RR]2234000000000e50 => 223c000000000034
1022 drrnd (RMC=1, ref sig=2) [RR]2234000000000e50 => 223c000000000034
1023 drrnd (RMC=2, ref sig=2) [RR]2234000000000e50 => 223c000000000035
1024 drrnd (RMC=3, ref sig=2) [RR]2234000000000e50 => 223c000000000034
1025 drrnd (RMC=0, ref sig=6) [RR]2234000000000e50 => 2234000000000e50
1026 drrnd (RMC=1, ref sig=6) [RR]223400000000
[all...]
/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/mdnsresponder/mDNSCore/
H A DDNSCommon.h172 #define GetRRDomainNameTarget(RR) ( \
173 ((RR)->rrtype == kDNSType_NS || (RR)->rrtype == kDNSType_CNAME || (RR)->rrtype == kDNSType_PTR || (RR)->rrtype == kDNSType_DNAME) ? &(RR)->rdata->u.name : \
174 ((RR)->rrtype == kDNSType_MX || (RR)->rrtype == kDNSType_AFSDB || (RR)->rrtype == kDNSType_RT || (RR)
[all...]
/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/clang/test/CodeGen/
H A Dunion.c39 union RR {_Bool a : 1;} RRU; union
/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/autotest/client/cros/netprotos/
H A Dzeroconf.py29 """Returns whether the two dpkt.dns.DNS.RR objects are equal."""
30 # Compare all the members present in either object and on any RR object.
32 dpkt.dns.DNS.RR.__slots__)
33 # On RR objects, rdata is packed based on the other members and the final
34 # packed string depends on other RR and Q elements on the same DNS/mDNS
212 response containing the list of answers of the type dpkt.dns.DNS.RR.
229 ### RFC 2782 - RR for specifying the location of services (DNS SRV).
253 @return: A list of dns.DNS.RR responses to the provided query that can
260 ans = dpkt.dns.DNS.RR(
293 @return: A list of dns.DNS.RR response
[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...]

Completed in 555 milliseconds

1234