HomeSort by: relevance | last modified time | path
    Searched refs:Rep (Results 1 - 13 of 13) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/include/clang/Serialization/
ContinuousRangeMap.h 48 Representation Rep;
67 if (!Rep.empty() && Rep.back() == Val)
70 assert((Rep.empty() || Rep.back().first < Val.first) &&
72 Rep.push_back(Val);
76 iterator I = llvm::lower_bound(Rep, Val, Compare());
77 if (I != Rep.end() && I->first == Val.first) {
82 Rep.insert(I, Val);
88 iterator begin() { return Rep.begin();
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/IR/
AutoUpgrade.cpp 1521 Value *Rep = Builder.CreateCall(Intrin,
1523 return EmitX86Select(Builder, CI.getArgOperand(3), Rep, CI.getArgOperand(2));
1551 CallInst &CI, Value *&Rep) {
1781 Rep = Builder.CreateCall(Intrinsic::getDeclaration(CI.getModule(), IID),
1784 Rep = EmitX86Select(Builder, CI.getArgOperand(NumArgs - 1), Rep,
1929 Value *Rep;
1935 Rep = Builder.CreateICmp(CmpEq ? ICmpInst::ICMP_EQ : ICmpInst::ICMP_SGT,
1937 Rep = Builder.CreateSExt(Rep, CI->getType(), "")
    [all...]
  /src/external/gpl3/gdb.old/dist/gdbsupport/
thread-pool.h 86 template<class Rep, class Period>
87 future_status wait_for (const std::chrono::duration<Rep,Period> &duration)
108 template<class Rep, class Period>
109 future_status wait_for (const std::chrono::duration<Rep,Period> &duration)
  /src/external/gpl3/gdb/dist/gdbsupport/
thread-pool.h 86 template<class Rep, class Period>
87 future_status wait_for (const std::chrono::duration<Rep,Period> &duration)
108 template<class Rep, class Period>
109 future_status wait_for (const std::chrono::duration<Rep,Period> &duration)
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
Chrono.h 111 template <typename Rep, typename Period>
112 struct format_provider<std::chrono::duration<Rep, Period>> {
114 typedef std::chrono::duration<Rep, Period> Dur;
115 typedef std::conditional_t<std::chrono::treat_as_floating_point<Rep>::value,
  /src/external/apache2/llvm/dist/clang/lib/Sema/
DeclSpec.cpp 732 ParsedType Rep,
734 return SetTypeSpecType(T, Loc, Loc, PrevSpec, DiagID, Rep, Policy);
741 ParsedType Rep,
744 assert(Rep && "no type provided!");
753 TypeRep = Rep;
763 Expr *Rep,
766 assert(Rep && "no expression provided!");
775 ExprRep = Rep;
785 Decl *Rep, bool Owned,
787 return SetTypeSpecType(T, Loc, Loc, PrevSpec, DiagID, Rep, Owned, Policy)
    [all...]
SemaExprMember.cpp 198 NamedDecl *Rep,
205 Rep = Rep->getUnderlyingDecl();
210 CXXRecordDecl *RepClass = dyn_cast<CXXRecordDecl>(Rep->getDeclContext());
213 bool IsField = isa<FieldDecl>(Rep) || isa<IndirectFieldDecl>(Rep);
523 NamedDecl *rep,
528 return diagnoseInstanceReference(SemaRef, SS, rep, nameInfo);
531 << SS.getRange() << rep << BaseType;
  /src/external/apache2/llvm/dist/clang/include/clang/Sema/
ScopeInfo.h 339 llvm::PointerIntPair<const Expr *, 1, bool> Rep;
342 WeakUseTy(const Expr *Use, bool IsRead) : Rep(Use, IsRead) {}
344 const Expr *getUseExpr() const { return Rep.getPointer(); }
345 bool isUnsafe() const { return Rep.getInt(); }
346 void markSafe() { Rep.setInt(false); }
349 return Rep == Other.Rep;
DeclSpec.h 666 unsigned &DiagID, ParsedType Rep,
669 unsigned &DiagID, TypeResult Rep,
671 if (Rep.isInvalid())
673 return SetTypeSpecType(T, Loc, PrevSpec, DiagID, Rep.get(), Policy);
676 unsigned &DiagID, Decl *Rep, bool Owned,
680 unsigned &DiagID, ParsedType Rep,
684 unsigned &DiagID, Decl *Rep, bool Owned,
687 unsigned &DiagID, TemplateIdAnnotation *Rep,
691 unsigned &DiagID, Expr *Rep,
711 void UpdateDeclRep(Decl *Rep) {
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
HexagonISelLoweringHVX.cpp 975 unsigned Rep = VecTy.getVectorNumElements() / ResLen;
976 assert(isPowerOf2_32(Rep) && HwLen % Rep == 0);
977 for (unsigned i = 0; i != HwLen/Rep; ++i) {
978 for (unsigned j = 0; j != Rep; ++j)
995 unsigned Rep = 8 / ResLen;
1001 for (unsigned j = 0; j != Rep; ++j)
HexagonCommonGEP.cpp 633 GepNode *Rep = F->second;
634 N->Parent = Rep;
HexagonISelLowering.cpp 2761 unsigned Rep = 8 / VecTy.getVectorNumElements();
2764 Rs[i] = DAG.getSelect(dl, MVT::i32, Ops[i/Rep], S, Z);
  /src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
DenseMap.h 978 // First stash the large side's rep and move the small side across.
1067 // large rep here.
1180 LargeRep Rep = {static_cast<BucketT *>(allocate_buffer(
1183 return Rep;

Completed in 32 milliseconds