HomeSort by relevance Sort by last modified time
    Searched refs:Val (Results 1 - 25 of 1516) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/
ValueLattice.cpp 13 raw_ostream &operator<<(raw_ostream &OS, const ValueLatticeElement &Val) {
14 if (Val.isUndefined())
16 if (Val.isOverdefined())
19 if (Val.isNotConstant())
20 return OS << "notconstant<" << *Val.getNotConstant() << ">";
21 if (Val.isConstantRange())
22 return OS << "constantrange<" << Val.getConstantRange().getLower() << ", "
23 << Val.getConstantRange().getUpper() << ">";
24 return OS << "constant<" << *Val.getConstant() << ">";
  /external/clang/test/Sema/
arm-asm.c 4 int Val;
5 asm volatile ("lw (r1), %0[val]": "=&b"(Val)); // expected-error {{invalid output constraint '=&b' in asm}}
  /external/swiftshader/third_party/LLVM/include/llvm/ADT/
TinyPtrVector.h 28 llvm::PointerUnion<EltTy, VecTy*> Val;
31 TinyPtrVector(const TinyPtrVector &RHS) : Val(RHS.Val) {
32 if (VecTy *V = Val.template dyn_cast<VecTy*>())
33 Val = new VecTy(*V);
36 if (VecTy *V = Val.template dyn_cast<VecTy*>())
43 if (Val.isNull()) return true;
44 if (VecTy *Vec = Val.template dyn_cast<VecTy*>())
52 if (Val.template is<EltTy>())
54 return Val.template get<VecTy*>()->size()
    [all...]
  /external/llvm/include/llvm/Support/
EndianStream.h 34 template <typename value_type> void write(value_type Val) {
35 Val = byte_swap<value_type, endian>(Val);
36 OS.write((const char *)&Val, sizeof(value_type));
42 inline void Writer<little>::write<float>(float Val) {
43 write(FloatToBits(Val));
48 inline void Writer<little>::write<double>(double Val) {
49 write(DoubleToBits(Val));
54 inline void Writer<big>::write<float>(float Val) {
55 write(FloatToBits(Val));
    [all...]
Casting.h 36 static SimpleType &getSimplifiedValue(From &Val) { return Val; }
45 static RetType getSimplifiedValue(const From& Val) {
46 return simplify_type<From>::getSimplifiedValue(const_cast<From&>(Val));
55 static inline bool doit(const From &Val) {
56 return To::classof(&Val);
68 static inline bool doit(const From &Val) {
69 return isa_impl<To, From>::doit(Val);
74 static inline bool doit(const From &Val) {
75 return isa_impl<To, From>::doit(Val);
    [all...]
  /external/clang/test/CodeGen/
2002-03-14-BrokenPHINode.c 11 double Val;
17 return asa+(int)Val;
  /external/compiler-rt/lib/ubsan/
ubsan_value.cc 26 // Val was zero-extended to ValueHandle. Sign-extend from original width
30 return SIntMax(Val) << ExtraBits >> ExtraBits;
33 return *reinterpret_cast<s64*>(Val);
36 return *reinterpret_cast<s128*>(Val);
47 return Val;
49 return *reinterpret_cast<u64*>(Val);
52 return *reinterpret_cast<u128*>(Val);
63 SIntMax Val = getSIntValue();
64 CHECK(Val >= 0);
65 return Val;
    [all...]
  /external/clang/test/CodeGenCXX/
2010-03-09-AnonAggregate.cpp 8 union { struct { union { int BA; } Val; int Offset; } OffsetedInfo; } Contents;
  /external/lzma/CPP/Common/
MyTypes.h 12 bool Val;
15 CBoolPair(): Val(false), Def(false) {}
19 Val = false;
25 Val = true;
  /external/swiftshader/third_party/subzero/crosstest/
test_strengthreduce.cpp 23 uint32_t multiplyByConst##suffix(uint32_t Val) { \
24 return Val * (uint32_t)constant; \
26 int32_t multiplyByConst##suffix(int32_t Val) { \
27 return Val * (int32_t)constant; \
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ADT/
TinyPtrVector.h 38 PtrUnion Val;
44 if (VecTy *V = Val.template dyn_cast<VecTy*>())
48 TinyPtrVector(const TinyPtrVector &RHS) : Val(RHS.Val) {
49 if (VecTy *V = Val.template dyn_cast<VecTy*>())
50 Val = new VecTy(*V);
63 if (Val.template is<EltTy>()) {
65 Val = RHS.front();
67 Val = new VecTy(*RHS.Val.template get<VecTy*>())
    [all...]
  /external/llvm/include/llvm/ADT/
TinyPtrVector.h 33 PtrUnion Val;
38 if (VecTy *V = Val.template dyn_cast<VecTy*>())
42 TinyPtrVector(const TinyPtrVector &RHS) : Val(RHS.Val) {
43 if (VecTy *V = Val.template dyn_cast<VecTy*>())
44 Val = new VecTy(*V);
56 if (Val.template is<EltTy>()) {
58 Val = RHS.front();
60 Val = new VecTy(*RHS.Val.template get<VecTy*>())
    [all...]
DenseMapInfo.h 29 //static unsigned getHashValue(const T &Val);
34 CachedHash(T Val) : Val(std::move(Val)) {
35 Hash = DenseMapInfo<T>::getHashValue(Val);
37 CachedHash(T Val, unsigned Hash) : Val(std::move(Val)), Hash(Hash) {}
38 T Val;
52 static unsigned getHashValue(CachedHash<T> Val) {
    [all...]
  /external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
Casting.h 36 static SimpleType &getSimplifiedValue(From &Val) { return Val; }
45 static RetType getSimplifiedValue(const From& Val) {
46 return simplify_type<From>::getSimplifiedValue(const_cast<From&>(Val));
55 static inline bool doit(const From &Val) {
56 return To::classof(&Val);
68 static inline bool doit(const From &Val) {
69 return isa_impl<To, From>::doit(Val);
74 static inline bool doit(const From &Val) {
75 return isa_impl<To, From>::doit(Val);
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Support/
Casting.h 38 static SimpleType &getSimplifiedValue(From &Val) { return Val; }
48 static RetType getSimplifiedValue(const From& Val) {
49 return simplify_type<From>::getSimplifiedValue(const_cast<From&>(Val));
58 static inline bool doit(const From &Val) {
59 return To::classof(&Val);
71 static inline bool doit(const From &Val) {
72 return isa_impl<To, From>::doit(Val);
77 static inline bool doit(const From &Val) {
78 return isa_impl<To, From>::doit(Val);
    [all...]
  /external/llvm/lib/Target/AMDGPU/Disassembler/
AMDGPUDisassembler.h 47 MCOperand createRegOperand(unsigned RegClassID, unsigned Val) const;
48 MCOperand createSRegOperand(unsigned SRegClassID, unsigned Val) const;
57 MCOperand decodeOperand_VGPR_32(unsigned Val) const;
58 MCOperand decodeOperand_VS_32(unsigned Val) const;
59 MCOperand decodeOperand_VS_64(unsigned Val) const;
61 MCOperand decodeOperand_VReg_64(unsigned Val) const;
62 MCOperand decodeOperand_VReg_96(unsigned Val) const;
63 MCOperand decodeOperand_VReg_128(unsigned Val) const;
65 MCOperand decodeOperand_SReg_32(unsigned Val) const;
66 MCOperand decodeOperand_SReg_32_XM0(unsigned Val) const
    [all...]
  /external/llvm/include/llvm/MC/
MCInstBuilder.h 38 MCInstBuilder &addImm(int64_t Val) {
39 Inst.addOperand(MCOperand::createImm(Val));
44 MCInstBuilder &addFPImm(double Val) {
45 Inst.addOperand(MCOperand::createFPImm(Val));
50 MCInstBuilder &addExpr(const MCExpr *Val) {
51 Inst.addOperand(MCOperand::createExpr(Val));
56 MCInstBuilder &addInst(const MCInst *Val) {
57 Inst.addOperand(MCOperand::createInst(Val));
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/MC/
MCInstBuilder.h 38 MCInstBuilder &addImm(int64_t Val) {
39 Inst.addOperand(MCOperand::createImm(Val));
44 MCInstBuilder &addFPImm(double Val) {
45 Inst.addOperand(MCOperand::createFPImm(Val));
50 MCInstBuilder &addExpr(const MCExpr *Val) {
51 Inst.addOperand(MCOperand::createExpr(Val));
56 MCInstBuilder &addInst(const MCInst *Val) {
57 Inst.addOperand(MCOperand::createInst(Val));
  /external/llvm/lib/Target/PowerPC/MCTargetDesc/
PPCMCTargetDesc.h 56 /// Returns true iff Val consists of one contiguous run of 1s with any number of
60 static inline bool isRunOfOnes(unsigned Val, unsigned &MB, unsigned &ME) {
61 if (!Val)
64 if (isShiftedMask_32(Val)) {
66 MB = countLeadingZeros(Val);
68 ME = countLeadingZeros((Val - 1) ^ Val);
71 Val = ~Val; // invert mask
72 if (isShiftedMask_32(Val)) {
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/PowerPC/MCTargetDesc/
PPCMCTargetDesc.h 58 /// Returns true iff Val consists of one contiguous run of 1s with any number of
62 static inline bool isRunOfOnes(unsigned Val, unsigned &MB, unsigned &ME) {
63 if (!Val)
66 if (isShiftedMask_32(Val)) {
68 MB = countLeadingZeros(Val);
70 ME = countLeadingZeros((Val - 1) ^ Val);
73 Val = ~Val; // invert mask
74 if (isShiftedMask_32(Val)) {
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AMDGPU/Disassembler/
AMDGPUDisassembler.h 63 MCOperand createRegOperand(unsigned RegClassID, unsigned Val) const;
64 MCOperand createSRegOperand(unsigned SRegClassID, unsigned Val) const;
74 MCOperand decodeOperand_VGPR_32(unsigned Val) const;
75 MCOperand decodeOperand_VS_32(unsigned Val) const;
76 MCOperand decodeOperand_VS_64(unsigned Val) const;
77 MCOperand decodeOperand_VS_128(unsigned Val) const;
78 MCOperand decodeOperand_VSrc16(unsigned Val) const;
79 MCOperand decodeOperand_VSrcV216(unsigned Val) const;
81 MCOperand decodeOperand_VReg_64(unsigned Val) const;
82 MCOperand decodeOperand_VReg_96(unsigned Val) const
    [all...]
  /external/google-breakpad/src/third_party/curl/
curlrules.h 221 # define __CURL_OFF_T_C_HELPER2(Val,Suffix) Val ## Suffix
223 # define __CURL_OFF_T_C_HELPER2(Val,Suffix) Val/**/Suffix
225 #define __CURL_OFF_T_C_HELPER1(Val,Suffix) __CURL_OFF_T_C_HELPER2(Val,Suffix)
226 #define CURL_OFF_T_C(Val) __CURL_OFF_T_C_HELPER1(Val,CURL_SUFFIX_CURL_OFF_T)
227 #define CURL_OFF_TU_C(Val) __CURL_OFF_T_C_HELPER1(Val,CURL_SUFFIX_CURL_OFF_TU
    [all...]
  /external/llvm/lib/Target/Hexagon/MCTargetDesc/
HexagonMCExpr.cpp 43 void HexagonMCExpr::setMustExtend(bool Val) {
44 assert((!Val || !MustNotExtend) && "Extension contradiction");
45 MustExtend = Val;
49 void HexagonMCExpr::setMustNotExtend(bool Val) {
50 assert((!Val || !MustExtend) && "Extension contradiction");
51 MustNotExtend = Val;
56 void HexagonMCExpr::setS23_2_reloc(bool Val) {
57 S23_2_reloc = Val;
72 void HexagonMCExpr::setSignMismatch(bool Val) {
73 SignMismatch = Val;
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/Support/
Casting.h 34 static SimpleType &getSimplifiedValue(From &Val) { return Val; }
39 static SimpleType &getSimplifiedValue(const From &Val) {
40 return simplify_type<From>::getSimplifiedValue(static_cast<From&>(Val));
49 static inline bool doit(const From &Val) {
50 return To::classof(&Val);
55 static inline bool doit(const From &Val) {
56 return isa_impl<To, From>::doit(Val);
61 static inline bool doit(const From &Val) {
62 return isa_impl<To, From>::doit(Val);
    [all...]
  /external/llvm/include/llvm/IR/
Use.h 81 if (Val)
88 Use(PrevPtrTag tag) : Val(nullptr) { Prev.setInt(tag); }
91 operator Value *() const { return Val; }
92 Value *get() const { return Val; }
100 inline void set(Value *Val);
105 Value *operator->() { return Val; }
106 const Value *operator->() const { return Val; }
126 Value *Val;
152 static SimpleType getSimplifiedValue(Use &Val) { return Val.get();
    [all...]

Completed in 1538 milliseconds

1 2 3 4 5 6 7 8 91011>>