Home
last modified time | relevance | path

Searched defs:Val (Results 1 – 25 of 359) sorted by relevance

12345678910>>...15

/external/llvm/include/llvm/MC/
DMCInstBuilder.h38 MCInstBuilder &addImm(int64_t Val) { in addImm()
44 MCInstBuilder &addFPImm(double Val) { in addFPImm()
50 MCInstBuilder &addExpr(const MCExpr *Val) { in addExpr()
56 MCInstBuilder &addInst(const MCInst *Val) { in addInst()
DMCInst.h78 void setImm(int64_t Val) { in setImm()
88 void setFPImm(double Val) { in setFPImm()
97 void setExpr(const MCExpr *Val) { in setExpr()
106 void setInst(const MCInst *Val) { in setInst()
117 static MCOperand CreateImm(int64_t Val) { in CreateImm()
123 static MCOperand CreateFPImm(double Val) { in CreateFPImm()
129 static MCOperand CreateExpr(const MCExpr *Val) { in CreateExpr()
135 static MCOperand CreateInst(const MCInst *Val) { in CreateInst()
/external/llvm/lib/Support/
DYAMLTraits.cpp652 void ScalarTraits<bool>::output(const bool &Val, void *, raw_ostream &Out) { in output()
656 StringRef ScalarTraits<bool>::input(StringRef Scalar, void *, bool &Val) { in input()
667 void ScalarTraits<StringRef>::output(const StringRef &Val, void *, in output()
673 StringRef &Val) { in input()
678 void ScalarTraits<std::string>::output(const std::string &Val, void *, in output()
684 std::string &Val) { in input()
689 void ScalarTraits<uint8_t>::output(const uint8_t &Val, void *, in output()
696 StringRef ScalarTraits<uint8_t>::input(StringRef Scalar, void *, uint8_t &Val) { in input()
706 void ScalarTraits<uint16_t>::output(const uint16_t &Val, void *, in output()
712 uint16_t &Val) { in input()
[all …]
/external/llvm/lib/Target/SystemZ/
DSystemZ.h79 static inline bool isImmLL(uint64_t Val) { in isImmLL()
84 static inline bool isImmLH(uint64_t Val) { in isImmLH()
89 static inline bool isImmHL(uint64_t Val) { in isImmHL()
94 static inline bool isImmHH(uint64_t Val) { in isImmHH()
99 static inline bool isImmLF(uint64_t Val) { in isImmLF()
104 static inline bool isImmHF(uint64_t Val) { in isImmHF()
/external/llvm/include/llvm/ADT/
DTwine.h293 explicit Twine(char Val) in Twine()
299 explicit Twine(signed char Val) in Twine()
305 explicit Twine(unsigned char Val) in Twine()
311 explicit Twine(unsigned Val) in Twine()
317 explicit Twine(int Val) in Twine()
323 explicit Twine(const unsigned long &Val) in Twine()
329 explicit Twine(const long &Val) in Twine()
335 explicit Twine(const unsigned long long &Val) in Twine()
341 explicit Twine(const long long &Val) in Twine()
378 static Twine utohexstr(const uint64_t &Val) { in utohexstr()
DScopedHashTable.h48 V Val; variable
107 void setLastValInScope(ScopedHashTableVal<K, V> *Val) { in setLastValInScope()
187 void insert(const K &Key, const V &Val) { in insert()
209 void insertIntoScope(ScopeTy *S, const K &Key, const V &Val) { in insertIntoScope()
DDenseMap.h104 size_type count(const KeyT &Val) const { in count()
109 iterator find(const KeyT &Val) { in find()
115 const_iterator find(const KeyT &Val) const { in find()
128 iterator find_as(const LookupKeyT &Val) { in find_as()
135 const_iterator find_as(const LookupKeyT &Val) const { in find_as()
144 ValueT lookup(const KeyT &Val) const { in lookup()
189 bool erase(const KeyT &Val) { in erase()
330 static unsigned getHashValue(const KeyT &Val) { in getHashValue()
334 static unsigned getHashValue(const LookupKeyT &Val) { in getHashValue()
459 bool LookupBucketFor(const LookupKeyT &Val, in LookupBucketFor()
[all …]
DAPSInt.h51 void setIsUnsigned(bool Val) { IsUnsigned = Val; } in setIsUnsigned()
52 void setIsSigned(bool Val) { IsUnsigned = !Val; } in setIsSigned()
/external/llvm/include/llvm/Support/
DErrorOr.h29 moveIfMoveConstructible(V &Val) { in moveIfMoveConstructible()
36 moveIfMoveConstructible(V &Val) { in moveIfMoveConstructible()
109 ErrorOr(T Val) : HasError(false) { in ErrorOr()
233 pointer toPointer(pointer Val) { in toPointer()
237 pointer toPointer(wrap *Val) { in toPointer()
/external/llvm/include/llvm/IR/
DValueMap.h115 size_type count(const KeyT &Val) const { in count()
119 iterator find(const KeyT &Val) { in find()
122 const_iterator find(const KeyT &Val) const { in find()
128 ValueT lookup(const KeyT &Val) const { in lookup()
150 bool erase(const KeyT &Val) { in erase()
DGlobalVariable.h145 void setConstant(bool Val) { isConstantGlobal = Val; } in setConstant()
150 void setExternallyInitialized(bool Val) { in setExternallyInitialized()
/external/llvm/lib/Target/AArch64/AsmParser/
DAArch64AsmParser.cpp185 unsigned Val; member
189 const MCExpr *Val; member
193 const MCExpr *Val; member
202 unsigned Val; // Encoded 8-bit representation. member
206 unsigned Val; // Not the enum since not all values have names. member
218 unsigned Val; member
222 unsigned Val; member
232 unsigned Val; member
414 int64_t Val = MCE->getValue(); in isSImm9() local
423 int64_t Val = MCE->getValue(); in isSImm7s4() local
[all …]
/external/clang/lib/StaticAnalyzer/Checkers/
DTestAfterDivZeroChecker.cpp169 void TestAfterDivZeroChecker::reportBug(SVal Val, CheckerContext &C) const { in reportBug()
228 SVal Val = C.getSVal(LRHS ? B->getLHS() : B->getRHS()); in checkBranchCondition() local
234 SVal Val; in checkBranchCondition() local
249 SVal Val = C.getSVal(IE->getSubExpr()); in checkBranchCondition() local
254 SVal Val = C.getSVal(Condition); in checkBranchCondition() local
/external/llvm/lib/MC/
DYAML.cpp23 const yaml::BinaryRef &Val, void *, llvm::raw_ostream &Out) { in output()
28 yaml::BinaryRef &Val) { in input()
/external/clang/include/clang/Serialization/
DContinuousRangeMap.h64 void insert(const value_type &Val) { in insert()
73 void insertOrReplace(const value_type &Val) { in insertOrReplace()
122 void insert(const value_type &Val) { in insert()
/external/llvm/lib/Target/ARM/Disassembler/
DARMDisassembler.cpp1102 static DecodeStatus DecodePredicateOperand(MCInst &Inst, unsigned Val, in DecodePredicateOperand()
1116 static DecodeStatus DecodeCCOutOperand(MCInst &Inst, unsigned Val, in DecodeCCOutOperand()
1125 static DecodeStatus DecodeSOImmOperand(MCInst &Inst, unsigned Val, in DecodeSOImmOperand()
1134 static DecodeStatus DecodeSORegImmOperand(MCInst &Inst, unsigned Val, in DecodeSORegImmOperand()
1171 static DecodeStatus DecodeSORegRegOperand(MCInst &Inst, unsigned Val, in DecodeSORegRegOperand()
1206 static DecodeStatus DecodeRegListOperand(MCInst &Inst, unsigned Val, in DecodeRegListOperand()
1243 static DecodeStatus DecodeSPRRegListOperand(MCInst &Inst, unsigned Val, in DecodeSPRRegListOperand()
1267 static DecodeStatus DecodeDPRRegListOperand(MCInst &Inst, unsigned Val, in DecodeDPRRegListOperand()
1292 static DecodeStatus DecodeBitfieldMaskOperand(MCInst &Inst, unsigned Val, in DecodeBitfieldMaskOperand()
1574 static DecodeStatus DecodeSORegMemOperand(MCInst &Inst, unsigned Val, in DecodeSORegMemOperand()
[all …]
/external/clang/test/SemaTemplate/
Dtemplate-id-expr.cpp10 void isa(const Y &Val) { return isa_impl_cl<Y>::template isa<X>(Val); } in isa()
13 void f0(const Value &Val) { isa<Value>(Val); } in f0()
/external/llvm/include/llvm/CodeGen/PBQP/
DMath.h284 Matrix& setRow(unsigned R, PBQPNum Val) { in setRow()
292 Matrix& setCol(unsigned C, PBQPNum Val) { in setCol()
357 Matrix& subFromRow(unsigned R, PBQPNum Val) { in subFromRow()
367 Matrix& subFromCol(unsigned C, PBQPNum Val) { in subFromCol()
/external/clang/lib/CodeGen/
DCGExprComplex.cpp329 void ComplexExprEmitter::EmitStoreOfComplex(ComplexPairTy Val, in EmitStoreOfComplex()
387 ComplexPairTy ComplexExprEmitter::EmitComplexToComplexCast(ComplexPairTy Val, in EmitComplexToComplexCast()
402 ComplexPairTy ComplexExprEmitter::EmitScalarToComplexCast(llvm::Value *Val, in EmitScalarToComplexCast()
639 RValue &Val) { in EmitCompoundAssignLValue()
690 RValue Val; in EmitCompoundAssign() local
705 ComplexPairTy &Val) { in EmitBinAssignLValue()
725 ComplexPairTy Val; in VisitBinAssign() local
851 ComplexPairTy Val = Emitter.Visit(const_cast<Expr*>(E)); in EmitComplexExprIntoLValue() local
869 ComplexPairTy Val; // ignored in EmitComplexAssignmentLValue() local
890 RValue Val; in EmitComplexCompoundAssignmentLValue() local
[all …]
/external/llvm/lib/Target/ARM/AsmParser/
DARMAsmParser.cpp407 ARMCC::CondCodes Val; member
411 unsigned Val; member
415 unsigned Val; member
423 ARM_MB::MemBOpt Val; member
427 ARM_ISB::InstSyncBOpt Val; member
431 ARM_PROC::IFlags Val; member
435 unsigned Val; member
456 unsigned Val; member
460 const MCExpr *Val; member
697 int64_t Val = CE->getValue(); in isUnsignedOffset() local
[all …]
/external/clang/test/CodeGen/
D2002-03-14-BrokenPHINode.c11 double Val; in trys() local
/external/zlib/src/contrib/iostream2/
Dzstream.h46 struct Val { unsigned char byte; size_t word; } val; argument
/external/clang/test/Sema/
Darm-asm.c4 int Val; in f() local
/external/llvm/lib/Analysis/
DLazyValueInfo.cpp82 Constant *Val; member in __anon695cd6450111::LVILatticeVal
278 raw_ostream &operator<<(raw_ostream &OS, const LVILatticeVal &Val) { in operator <<()
348 Value *Val; member
468 bool LazyValueInfoCache::hasBlockValue(Value *Val, BasicBlock *BB) { in hasBlockValue()
480 LVILatticeVal LazyValueInfoCache::getBlockValue(Value *Val, BasicBlock *BB) { in getBlockValue()
489 bool LazyValueInfoCache::solveBlockValue(Value *Val, BasicBlock *BB) { in solveBlockValue()
586 Value *Val, BasicBlock *BB) { in solveBlockValueNonLocal()
780 static bool getEdgeValueLocal(Value *Val, BasicBlock *BBFrom, in getEdgeValueLocal()
871 bool LazyValueInfoCache::getEdgeValue(Value *Val, BasicBlock *BBFrom, in getEdgeValue()
/external/llvm/lib/Target/AArch64/InstPrinter/
DAArch64InstPrinter.cpp943 unsigned Val = (MO.getImm() & 0xfff); in printAddSubImm() local
962 uint64_t Val = MI->getOperand(OpNum).getImm(); in printLogicalImm32() local
969 uint64_t Val = MI->getOperand(OpNum).getImm(); in printLogicalImm64() local
976 unsigned Val = MI->getOperand(OpNum).getImm(); in printShifter() local
999 unsigned Val = MI->getOperand(OpNum).getImm(); in printArithExtend() local
1260 unsigned Val = MI->getOperand(OpNo).getImm(); in printBarrierOption() local
1277 unsigned Val = MI->getOperand(OpNo).getImm(); in printMRSSystemRegister() local
1289 unsigned Val = MI->getOperand(OpNo).getImm(); in printMSRSystemRegister() local
1301 unsigned Val = MI->getOperand(OpNo).getImm(); in printSystemPStateField() local
1314 uint64_t Val = AArch64_AM::decodeAdvSIMDModImmType10(RawVal); in printSIMDType10Operand() local

12345678910>>...15