HomeSort by relevance Sort by last modified time
    Searched defs:Const (Results 1 - 15 of 15) sorted by null

  /external/clang/test/SemaTemplate/
alias-church-numerals.cpp 29 template<typename T, T N> struct Const { static const T value = N; };
31 template<typename T, T N> struct IncrementHelper<Const<T, N>> { using Result = Const<T, N+1>; };
34 using Arr = int[TwoHundredAndFiftySix<Increment, Const<int, 0>>::value];
deduction.cpp 6 static const unsigned value = 0;
11 static const unsigned value = 1;
21 static const bool value = false;
26 static const bool value = true;
55 struct Replace<const T, Arg1, Arg2> {
56 typedef typename Replace<T, Arg1, Arg2>::type const type;
80 int array1[is_same<Replace<const _1, int, float>::type, const int>::value? 1 : -1];
82 int array3[is_same<Replace<vector<const _1>, int, float>::type, vector<const int> >::value? 1 : -1]
    [all...]
  /external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.fct/dcl.fct.def.default/
p2.cpp 6 struct Const {
7 Const(const Const&&) = default; // expected-error {{the parameter for an explicitly-defaulted move constructor may not be const}}
8 Const& operator=(const Const&&) = default; // expected-error {{the parameter for an explicitly-defaulted move assignment operator may not be const}}
21 const AssignmentRet2& operator=(AssignmentRet2&&) = default; // expected-error {{explicitly-defaulted mo (…)
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SDNodeDbgValue.h 34 CONST = 1, // value is a constant
44 const Value *Const; // valid for constants
63 SDDbgValue(MDNode *mdP, const Value *C, uint64_t off, DebugLoc dl,
66 kind = CONST;
67 u.Const = C;
90 const Value *getConst() { assert (kind==CONST); return u.Const; }
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p2/src/
omxVCM4P2_PredictReconCoefIntra_s.s 97 Const RN 8
215 MOV Const,#4
216 MUL curQP,curQP,Const ;// curQP=4*curQP
  /external/llvm/lib/Analysis/
MemoryBuiltins.cpp 52 static const AllocFnsTy AllocationFnData[] = {
72 static Function *getCalledFunction(const Value *V, bool LookThroughBitCast) {
88 static const AllocFnsTy *getAllocationData(const Value *V, AllocType AllocTy,
89 const TargetLibraryInfo *TLI,
116 const AllocFnsTy *FnData = &AllocationFnData[i];
137 static bool hasNoAliasAttr(const Value *V, bool LookThroughBitCast) {
146 bool llvm::isAllocationFn(const Value *V, const TargetLibraryInfo *TLI,
153 bool llvm::isNoAliasFn(const Value *V, const TargetLibraryInfo *TLI
    [all...]
  /external/llvm/lib/Target/R600/
R600InstrInfo.cpp 35 const R600RegisterInfo &R600InstrInfo::getRegisterInfo() const {
39 bool R600InstrInfo::isTrig(const MachineInstr &MI) const {
43 bool R600InstrInfo::isVector(const MachineInstr &MI) const {
51 bool KillSrc) const {
76 unsigned DstReg, int64_t Imm) const {
87 unsigned R600InstrInfo::getIEQOpcode() const {
91 bool R600InstrInfo::isMov(unsigned Opcode) const {
    [all...]
  /external/llvm/lib/Target/Hexagon/
HexagonISelDAGToDAG.cpp 49 const HexagonSubtarget &Subtarget;
53 const HexagonInstrInfo *TII;
54 DenseMap<const GlobalValue *, unsigned> GlobalAddressUseCountMap;
61 TII(static_cast<const HexagonInstrInfo*>(TM.getInstrInfo())) {
64 bool hasNumUsesBelowThresGA(SDNode *N) const;
83 virtual const char *getPassName() const {
89 virtual bool SelectInlineAsmMemoryOperand(const SDValue &Op,
114 bool isConstExtProfitable(SDNode *N) const;
138 const char *Name = "Hexagon DAG->DAG Pattern Instruction Selection"
    [all...]
  /external/llvm/lib/Transforms/Scalar/
SCCP.cpp 79 LatticeValueTy getLatticeValue() const {
86 bool isUndefined() const { return getLatticeValue() == undefined; }
87 bool isConstant() const {
90 bool isOverdefined() const { return getLatticeValue() == overdefined; }
92 Constant *getConstant() const {
133 ConstantInt *getConstantInt() const {
156 const DataLayout *TD;
157 const TargetLibraryInfo *TLI;
208 SCCPSolver(const DataLayout *td, const TargetLibraryInfo *tli
    [all...]
  /external/valgrind/main/coregrind/m_debuginfo/
priv_storage.h 333 } Const;
405 ML_(cmp_for_DiAddrRange_range) ( const void* keyV, const void* elemV );
    [all...]
  /external/clang/include/clang/AST/
Type.h 69 struct isPodLike<clang::QualType> { static const bool value = true; };
110 /// * C99: const, volatile, and restrict
116 Const = 0x1,
119 CVRMask = Const | Volatile | Restrict
222 unsigned getAsOpaqueValue() const {
226 bool hasConst() const { return Mask & Const; }
228 Mask = (Mask & ~Const) | (flag ? Const : 0);
230 void removeConst() { Mask &= ~Const; }
    [all...]
  /external/llvm/lib/Target/PowerPC/
PPCISelLowering.cpp 63 static TargetLoweringObjectFile *CreateTLOF(const PPCTargetMachine &TM) {
72 const PPCSubtarget *Subtarget = &TM.getSubtarget<PPCSubtarget>();
520 unsigned PPCTargetLowering::getByValTypeAlignment(Type *Ty) const {
521 const TargetMachine &TM = getTargetMachine();
538 const char *PPCTargetLowering::getTargetNodeName(unsigned Opcode) const {
604 EVT PPCTargetLowering::getSetCCResultType(EVT VT) const {
621 if (const ConstantFP *CFP = dyn_cast<ConstantFP>(CP->getConstVal()))
    [all...]
  /external/clang/lib/Sema/
SemaDeclCXX.cpp 136 const FunctionProtoType *Proto
586 if (const ReferenceType *R = NewType->getAs<ReferenceType>()) {
589 } else if (const PointerType *P = NewType->getAs<PointerType>()) {
592 } else if (const MemberPointerType *M = NewType->getAs<MemberPointerType>()) {
680 const FunctionDecl *FD) {
682 const FunctionProtoType *FT = FD->getType()->getAs<FunctionProtoType>();
685 const ParmVarDecl *PD = FD->getParamDecl(ArgIndex);
717 bool Sema::CheckConstexprFunctionDecl(const FunctionDecl *NewFD) {
718 const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(NewFD);
724 const CXXRecordDecl *RD = MD->getParent()
    [all...]
  /external/llvm/lib/Target/ARM/
ARMISelLowering.cpp 77 const TargetMachine &TM, SmallVector<CCValAssign, 16> &locs,
89 static const uint16_t GPRArgRegs[] = {
    [all...]
  /external/valgrind/main/VEX/pub/
libvex_ir.h 259 /* IRConsts are used within 'Const' and 'Exit' IRExprs. */
    [all...]

Completed in 1418 milliseconds