HomeSort by relevance Sort by last modified time
    Searched refs:Val (Results 251 - 275 of 580) sorted by null

<<11121314151617181920>>

  /external/llvm/lib/Target/Hexagon/AsmParser/
HexagonAsmParser.cpp 118 void OutOfRange(SMLoc IDLoc, long long Val, long long Max);
188 const MCExpr *Val;
235 return Imm.Val;
591 static std::unique_ptr<HexagonOperand> CreateImm(const MCExpr *Val, SMLoc S,
594 Op->Imm.Val = Val;
    [all...]
  /external/llvm/unittests/ADT/
MapVectorTest.cpp 117 MV.remove_if([](const std::pair<int, int> &Val) { return Val.second % 2; });
226 MV.remove_if([](const std::pair<int, int> &Val) { return Val.second % 2; });
335 MV.remove_if([](const std::pair<int, int> &Val) { return Val.second % 2; });
  /external/clang/include/clang/Lex/
Lexer.h 172 void SetKeepWhitespaceMode(bool Val) {
173 assert((!Val || LexingRawMode || LangOpts.TraditionalCPP) &&
175 ExtendedTokenMode = Val ? 2 : 0;
  /external/clang/lib/Rewrite/
DeltaTree.cpp 417 const SourceDelta &Val = Node->getValue(NumValsGreater);
419 if (Val.FileLoc >= FileIndex)
421 Result += Val.Delta;
  /external/llvm/include/llvm/Analysis/
AliasSetTracker.h 40 Value *Val; // The pointer this record corresponds to.
48 : Val(V), PrevInList(nullptr), NextInList(nullptr), AS(nullptr), Size(0),
51 Value *getValue() const { return Val; }
SparsePropagation.h 81 /// must be in the same LLVM type as Val.
82 virtual Constant *GetConstant(LatticeVal LV, Value *Val, SparseSolver &SS) {
  /external/llvm/include/llvm/IR/
IntrinsicInst.h 228 void setValue(Value *Val) {
229 assert(getValue()->getType() == Val->getType() &&
231 setArgOperand(1, Val);
ConstantRange.h 129 bool contains(const APInt &Val) const;
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfUnit.h 248 void addConstantValue(DIE &Die, const APInt &Val, const DIType *Ty);
249 void addConstantValue(DIE &Die, const APInt &Val, bool Unsigned);
250 void addConstantValue(DIE &Die, bool Unsigned, uint64_t Val);
DwarfUnit.cpp 629 void DwarfUnit::addConstantValue(DIE &Die, bool Unsigned, uint64_t Val) {
633 Unsigned ? dwarf::DW_FORM_udata : dwarf::DW_FORM_sdata, Val);
636 void DwarfUnit::addConstantValue(DIE &Die, const APInt &Val, const DIType *Ty) {
637 addConstantValue(Die, Val, isUnsignedDIType(DD, Ty));
640 void DwarfUnit::addConstantValue(DIE &Die, const APInt &Val, bool Unsigned) {
641 unsigned CIBitWidth = Val.getBitWidth();
644 Unsigned ? Val.getZExtValue() : Val.getSExtValue());
651 const uint64_t *Ptr64 = Val.getRawData();
653 int NumBytes = Val.getBitWidth() / 8; // 8 bits per byte
    [all...]
  /external/llvm/lib/Support/
Timer.cpp 159 static void printVal(double Val, double Total, raw_ostream &OS) {
163 OS << format(" %7.4f (%5.1f%%)", Val, Val*100/Total);
  /external/llvm/unittests/Support/
Casting.cpp 44 static inline bool doit(const bar &Val) {
45 dbgs() << "Classof: " << &Val << "\n";
71 static SimpleType getSimplifiedValue(foo &Val) { return 0; }
  /external/llvm/utils/TableGen/
RegisterInfoEmitter.cpp 159 static void printInt(raw_ostream &OS, int Val) {
160 OS << Val;
578 uint16_t Val = uint16_t(InitVal);
581 V.push_back(Cur - Val);
582 Val = Cur;
591 uint16_t Val = uint16_t(InitVal);
594 V.push_back(Cur - Val);
595 Val = Cur;
600 static void printDiff16(raw_ostream &OS, uint16_t Val) {
601 OS << Val;
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
SubEngine.h 139 processPointerEscapedOnBind(ProgramStateRef State, SVal Loc, SVal Val) = 0;
  /external/clang/lib/StaticAnalyzer/Checkers/
CheckerDocumentation.cpp 144 /// \param Val The value which will be stored at the location Loc.
148 void checkBind(SVal Loc, SVal Val, const Stmt *S, CheckerContext &) const {}
DeadStoresChecker.cpp 208 void CheckVarDecl(const VarDecl *VD, const Expr *Ex, const Expr *Val,
225 Report(VD, dsk, ExLoc, Val->getSourceRange());
229 void CheckDeclRef(const DeclRefExpr *DR, const Expr *Val, DeadStoreKind dsk,
232 CheckVarDecl(VD, DR, Val, dsk, Live);
  /external/llvm/examples/Kaleidoscope/Chapter7/
toy.cpp 135 double Val;
138 NumberExprAST(double Val) : Val(Val) {}
712 return ConstantFP::get(getGlobalContext(), APFloat(Val));
748 Value *Val = RHS->codegen();
749 if (!Val)
757 Builder.CreateStore(Val, Variable);
758 return Val;
    [all...]
  /external/llvm/include/llvm/CodeGen/
ScheduleDFS.h 190 raw_ostream &operator<<(raw_ostream &OS, const ILPValue &Val);
  /external/llvm/include/llvm/Support/
GCOV.h 186 bool readInt(uint32_t &Val) {
193 Val = *(const uint32_t *)(Str.data());
197 bool readInt64(uint64_t &Val) {
201 Val = ((uint64_t)Hi << 32) | Lo;
  /external/llvm/include/llvm/Transforms/Utils/
BuildLibCalls.h 68 /// a pointer, Val is an i32 value, and Len is an 'intptr_t' value.
69 Value *EmitMemChr(Value *Ptr, Value *Val, Value *Len, IRBuilder<> &B,
  /external/llvm/lib/CodeGen/
TargetLoweringObjectFileImpl.cpp 455 Metadata *Val = MFE.Val;
458 VersionVal = mdconst::extract<ConstantInt>(Val)->getZExtValue();
463 ImageInfoFlags |= mdconst::extract<ConstantInt>(Val)->getZExtValue();
465 SectionVal = cast<MDString>(Val)->getString();
467 LinkerOptions = cast<MDNode>(Val);
    [all...]
  /external/llvm/lib/Target/Hexagon/
HexagonStoreWidening.cpp 417 unsigned Val = (SO.getImm() & Mask) << Shift;
418 Acc |= Val;
437 int Val = (TotalSize == 2) ? int16_t(Acc) : int(Acc);
444 .addImm(Val);
  /external/llvm/lib/Target/PowerPC/
PPCTargetTransformInfo.h 83 int getVectorInstrCost(unsigned Opcode, Type *Val, unsigned Index);
  /external/llvm/lib/Target/X86/
X86TargetTransformInfo.h 74 int getVectorInstrCost(unsigned Opcode, Type *Val, unsigned Index);
  /external/lzma/CPP/7zip/UI/Common/
Extract.cpp 60 if (options.ElimDup.Val)
87 if (elimIsPossible && options.ElimDup.Val)
103 if (!options.NtOptions.AltStreams.Val && isAltStream)
153 options.NtOptions.HardLinks.Val)

Completed in 1246 milliseconds

<<11121314151617181920>>