Home
last modified time | relevance | path

Searched refs:PairTy (Results 1 – 11 of 11) sorted by relevance

/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DMachineModuleInfoImpls.cpp29 using PairTy = std::pair<MCSymbol *, MachineModuleInfoImpl::StubValueTy>; typedef
30 static int SortSymbolPair(const PairTy *LHS, const PairTy *RHS) { in SortSymbolPair()
/external/llvm/lib/CodeGen/
DMachineModuleInfoImpls.cpp28 typedef std::pair<MCSymbol*, MachineModuleInfoImpl::StubValueTy> PairTy; in SortSymbolPair() typedef
29 const MCSymbol *LHSS = ((const PairTy *)LHS)->first; in SortSymbolPair()
30 const MCSymbol *RHSS = ((const PairTy *)RHS)->first; in SortSymbolPair()
/external/clang/include/clang/Analysis/
DCallGraph.h205 typedef std::pair<const clang::Decl*, clang::CallGraphNode*> PairTy;
206 typedef std::pointer_to_unary_function<PairTy, clang::CallGraphNode&> DerefFun;
216 static clang::CallGraphNode &CGdereference(PairTy P) {
230 typedef std::pair<const clang::Decl*, clang::CallGraphNode*> PairTy;
231 typedef std::pointer_to_unary_function<PairTy, clang::CallGraphNode&> DerefFun;
242 static clang::CallGraphNode &CGdereference(PairTy P) {
/external/clang/include/clang/AST/
DBaseSubobject.h68 typedef std::pair<const clang::CXXRecordDecl *, clang::CharUnits> PairTy;
69 return DenseMapInfo<PairTy>::getHashValue(PairTy(Base.getBase(),
/external/llvm/include/llvm/Analysis/
DCallGraph.h460 PairTy;
461 typedef std::pointer_to_unary_function<const PairTy &, CallGraphNode &>
473 static CallGraphNode &CGdereference(const PairTy &P) { return *P.second; }
483 PairTy;
484 typedef std::pointer_to_unary_function<const PairTy &, const CallGraphNode &>
496 static const CallGraphNode &CGdereference(const PairTy &P) {
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/
DCallGraph.h456 using PairTy =
463 static CallGraphNode *CGGetValuePtr(const PairTy &P) {
483 using PairTy =
490 static const CallGraphNode *CGGetValuePtr(const PairTy &P) {
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/
DHexagonISelLoweringHVX.cpp1404 MVT PairTy = typeJoin({ResTy, ResTy}); in LowerHvxMulh() local
1410 SDValue T0 = getInstr(Hexagon::V6_vmpyuhv, dl, PairTy, {Vs, Vt}, DAG); in LowerHvxMulh()
1418 SDValue T2 = getInstr(Hexagon::V6_vmpyuhv, dl, PairTy, {Vs, D0}, DAG); in LowerHvxMulh()
1423 SDValue T3 = getInstr(Hexagon::V6_vadduhw, dl, PairTy, in LowerHvxMulh()
DHexagonISelDAGToDAGHVX.cpp1888 MVT PairTy = getPairVT(MVT::i8); in perfect() local
1929 Res.Ty = PairTy; in perfect()
/external/llvm/lib/CodeGen/SelectionDAG/
DLegalizeDAG.cpp3464 EVT PairTy = Node->getValueType(0); in ExpandNode() local
3465 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, dl, PairTy, Node->getOperand(0)); in ExpandNode()
3466 Tmp2 = DAG.getNode(ISD::ANY_EXTEND, dl, PairTy, Node->getOperand(1)); in ExpandNode()
3468 ISD::SHL, dl, PairTy, Tmp2, in ExpandNode()
3469 DAG.getConstant(PairTy.getSizeInBits() / 2, dl, in ExpandNode()
3470 TLI.getShiftAmountTy(PairTy, DAG.getDataLayout()))); in ExpandNode()
3471 Results.push_back(DAG.getNode(ISD::OR, dl, PairTy, Tmp1, Tmp2)); in ExpandNode()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/
DLegalizeDAG.cpp3508 EVT PairTy = Node->getValueType(0); in ExpandNode() local
3509 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, dl, PairTy, Node->getOperand(0)); in ExpandNode()
3510 Tmp2 = DAG.getNode(ISD::ANY_EXTEND, dl, PairTy, Node->getOperand(1)); in ExpandNode()
3512 ISD::SHL, dl, PairTy, Tmp2, in ExpandNode()
3513 DAG.getConstant(PairTy.getSizeInBits() / 2, dl, in ExpandNode()
3514 TLI.getShiftAmountTy(PairTy, DAG.getDataLayout()))); in ExpandNode()
3515 Results.push_back(DAG.getNode(ISD::OR, dl, PairTy, Tmp1, Tmp2)); in ExpandNode()
/external/clang/lib/StaticAnalyzer/Checkers/
DRetainCountChecker.cpp504 typedef std::pair<IdentifierInfo*, Selector> PairTy; in getHashValue() typedef
505 return DenseMapInfo<PairTy>::getHashValue(PairTy(V.getIdentifier(), in getHashValue()