Searched refs:Val (Results 1 - 25 of 859) sorted by relevance

1234567891011>>

/external/clang/test/Sema/
H A Darm-asm.c4 int Val; local
5 asm volatile ("lw (r1), %0[val]": "=&b"(Val)); // expected-error {{invalid output constraint '=&b' in asm}}
/external/clang/test/CodeGen/
H A D2002-03-14-BrokenPHINode.c11 double Val; local
17 return asa+(int)Val;
/external/compiler-rt/lib/ubsan/
H A Dubsan_value.cc26 // 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/swiftshader/third_party/LLVM/include/llvm/ADT/
H A DTinyPtrVector.h28 llvm::PointerUnion<EltTy, VecTy*> Val; member in class:llvm::TinyPtrVector
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
[all...]
H A DDenseMapInfo.h26 //static unsigned getHashValue(const T &Val);
34 intptr_t Val = -1; local
35 Val <<= PointerLikeTypeTraits<T*>::NumLowBitsAvailable;
36 return reinterpret_cast<T*>(Val);
39 intptr_t Val = -2; local
40 Val <<= PointerLikeTypeTraits<T*>::NumLowBitsAvailable;
41 return reinterpret_cast<T*>(Val);
54 static unsigned getHashValue(const char& Val) { return Val * 37U; } argument
64 static unsigned getHashValue(const unsigned& Val) { retur argument
74 getHashValue(const unsigned long& Val) argument
86 getHashValue(const unsigned long long& Val) argument
99 getHashValue(const int& Val) argument
111 getHashValue(const long& Val) argument
123 getHashValue(const long long& Val) argument
[all...]
H A DUniqueVector.h38 unsigned &Val = Map[Entry]; local
41 if (Val) return Val;
44 Val = static_cast<unsigned>(Vector.size()) + 1;
48 return Val;
/external/clang/test/CodeGenCXX/
H A D2010-03-09-AnonAggregate.cpp8 union { struct { union { int BA; } Val; int Offset; } OffsetedInfo; } Contents; member in struct:MO::__anon2380::__anon2381
/external/lzma/CPP/Common/
H A DMyTypes.h12 bool Val; member in struct:CBoolPair
15 CBoolPair(): Val(false), Def(false) {}
19 Val = false;
25 Val = true;
/external/swiftshader/third_party/subzero/crosstest/
H A Dtest_strengthreduce.cpp23 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; \
H A Dtest_cast_main.cpp97 void testValue(FromType Val, size_t &TotalTests, size_t &Passes, argument
99 COMPARE(cast, FromType, bool, Val, FromTypeString);
100 COMPARE(cast, FromType, uint8_t, Val, FromTypeString);
101 COMPARE(cast, FromType, myint8_t, Val, FromTypeString);
102 COMPARE(cast, FromType, uint16_t, Val, FromTypeString);
103 COMPARE(cast, FromType, int16_t, Val, FromTypeString);
104 COMPARE(cast, FromType, uint32_t, Val, FromTypeString);
105 COMPARE(cast, FromType, int32_t, Val, FromTypeString);
106 COMPARE(cast, FromType, uint64, Val, FromTypeString);
107 COMPARE(cast, FromType, int64, Val, FromTypeStrin
209 bool Val = ValsUi1[i]; local
213 uint8_t Val = ValsUi8[i]; local
217 myint8_t Val = ValsSi8[i]; local
221 uint16_t Val = ValsUi16[i]; local
225 int16_t Val = ValsSi16[i]; local
229 uint32_t Val = ValsUi32[i]; local
235 int32_t Val = ValsSi32[i]; local
239 uint64 Val = ValsUi64[i]; local
245 int64 Val = ValsSi64[i]; local
250 float Val = ValsF32[i]; local
260 double Val = ValsF64[i]; local
[all...]
/external/llvm/include/llvm/ADT/
H A DTinyPtrVector.h33 PtrUnion Val; member in class:llvm::TinyPtrVector
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
[all...]
H A DDenseMapInfo.h29 //static unsigned getHashValue(const T &Val);
34 CachedHash(T Val) : Val(std::move(Val)) { argument
35 Hash = DenseMapInfo<T>::getHashValue(Val);
37 CachedHash(T Val, unsigned Hash) : Val(std::move(Val)), Hash(Hash) {} argument
38 T Val; member in struct:llvm::CachedHash
52 static unsigned getHashValue(CachedHash<T> Val) { argument
67 uintptr_t Val = static_cast<uintptr_t>(-1); local
72 uintptr_t Val = static_cast<uintptr_t>(-2); local
87 getHashValue(const char& Val) argument
97 getHashValue(const unsigned& Val) argument
107 getHashValue(const unsigned long& Val) argument
119 getHashValue(const unsigned long long& Val) argument
132 getHashValue(const int& Val) argument
144 getHashValue(const long& Val) argument
156 getHashValue(const long long& Val) argument
209 getHashValue(StringRef Val) argument
234 getHashValue(ArrayRef<T> Val) argument
[all...]
/external/llvm/lib/Target/AMDGPU/Disassembler/
H A DAMDGPUDisassembler.h47 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) cons
[all...]
H A DAMDGPUDisassembler.cpp185 unsigned Val) const {
187 if (Val >= RegCl.getNumRegs())
188 return errOperand(Val, Twine(getRegClassName(RegClassID)) +
189 ": unknown register " + Twine(Val));
190 return createRegOperand(RegCl.getRegister(Val));
195 unsigned Val) const {
223 if (Val % (1 << shift))
225 << ": scalar reg isn't aligned " << Val;
226 return createRegOperand(SRegClassID, Val >> shift);
229 MCOperand AMDGPUDisassembler::decodeOperand_VS_32(unsigned Val) cons
[all...]
/external/llvm/include/llvm/MC/
H A DMCInstBuilder.h38 MCInstBuilder &addImm(int64_t Val) { argument
39 Inst.addOperand(MCOperand::createImm(Val));
44 MCInstBuilder &addFPImm(double Val) { argument
45 Inst.addOperand(MCOperand::createFPImm(Val));
50 MCInstBuilder &addExpr(const MCExpr *Val) { argument
51 Inst.addOperand(MCOperand::createExpr(Val));
56 MCInstBuilder &addInst(const MCInst *Val) { argument
57 Inst.addOperand(MCOperand::createInst(Val));
/external/llvm/include/llvm/Support/
H A DEndianStream.h34 template <typename value_type> void write(value_type Val) { argument
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) { argument
43 write(FloatToBits(Val));
48 inline void Writer<little>::write<double>(double Val) { argument
49 write(DoubleToBits(Val));
54 inline void Writer<big>::write<float>(float Val) { argument
55 write(FloatToBits(Val));
60 write(double Val) argument
[all...]
H A DCasting.h36 static SimpleType &getSimplifiedValue(From &Val) { return Val; } argument
45 static RetType getSimplifiedValue(const From& Val) { argument
46 return simplify_type<From>::getSimplifiedValue(const_cast<From&>(Val));
55 static inline bool doit(const From &Val) { argument
56 return To::classof(&Val);
68 static inline bool doit(const From &Val) { argument
69 return isa_impl<To, From>::doit(Val);
74 static inline bool doit(const From &Val) { argument
75 return isa_impl<To, From>::doit(Val);
80 doit(const From *Val) argument
87 doit(const From *Val) argument
94 doit(const From *Val) argument
101 doit(const From *Val) argument
111 doit(const From &Val) argument
121 doit(const FromTy &Val) argument
132 isa(const Y &Val) argument
191 doit(From &Val) argument
200 doit(const FromTy &Val) argument
222 cast(const Y &Val) argument
229 cast(Y &Val) argument
236 cast(Y *Val) argument
248 cast_or_null(const Y &Val) argument
258 cast_or_null(Y &Val) argument
267 cast_or_null(Y *Val) argument
285 dyn_cast(const Y &Val) argument
291 dyn_cast(Y &Val) argument
297 dyn_cast(Y *Val) argument
307 dyn_cast_or_null(const Y &Val) argument
314 dyn_cast_or_null(Y &Val) argument
320 dyn_cast_or_null(Y *Val) argument
[all...]
/external/llvm/lib/Target/PowerPC/MCTargetDesc/
H A DPPCMCTargetDesc.h56 /// 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) { argument
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/curl/include/curl/
H A Dcurlrules.h208 # define CURL_OFF_T_C(Val) __CURL_OFF_T_C_HLPR1(Val) ## \
210 # define CURL_OFF_TU_C(Val) __CURL_OFF_T_C_HLPR1(Val) ## \
214 # define __CURL_OFF_T_C_HLPR2(Val,Suffix) Val ## Suffix
216 # define __CURL_OFF_T_C_HLPR2(Val,Suffix) Val/**/Suffix
218 # define __CURL_OFF_T_C_HLPR1(Val,Suffix) __CURL_OFF_T_C_HLPR2(Val,Suffi
[all...]
/external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
H A DCasting.h36 static SimpleType &getSimplifiedValue(From &Val) { return Val; } argument
45 static RetType getSimplifiedValue(const From& Val) { argument
46 return simplify_type<From>::getSimplifiedValue(const_cast<From&>(Val));
55 static inline bool doit(const From &Val) { argument
56 return To::classof(&Val);
68 static inline bool doit(const From &Val) { argument
69 return isa_impl<To, From>::doit(Val);
74 static inline bool doit(const From &Val) { argument
75 return isa_impl<To, From>::doit(Val);
80 doit(const From *Val) argument
87 doit(const From *Val) argument
94 doit(const From *Val) argument
101 doit(const From *Val) argument
111 doit(const From &Val) argument
121 doit(const FromTy &Val) argument
131 isa(const Y &Val) argument
190 doit(From &Val) argument
199 doit(const FromTy &Val) argument
221 cast(const Y &Val) argument
228 cast(Y &Val) argument
235 cast(Y *Val) argument
248 cast_or_null(const Y &Val) argument
259 cast_or_null(Y &Val) argument
268 cast_or_null(Y *Val) argument
287 dyn_cast(const Y &Val) argument
292 dyn_cast(Y &Val) argument
297 dyn_cast(Y *Val) argument
308 dyn_cast_or_null(const Y &Val) argument
316 dyn_cast_or_null(Y &Val) argument
322 dyn_cast_or_null(Y *Val) argument
[all...]
/external/google-breakpad/src/third_party/curl/
H A Dcurlrules.h221 # 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_T
[all...]
/external/llvm/lib/Target/Hexagon/MCTargetDesc/
H A DHexagonMCExpr.cpp43 void HexagonMCExpr::setMustExtend(bool Val) { argument
44 assert((!Val || !MustNotExtend) && "Extension contradiction");
45 MustExtend = Val;
49 void HexagonMCExpr::setMustNotExtend(bool Val) { argument
50 assert((!Val || !MustExtend) && "Extension contradiction");
51 MustNotExtend = Val;
56 void HexagonMCExpr::setS23_2_reloc(bool Val) { argument
57 S23_2_reloc = Val;
72 void HexagonMCExpr::setSignMismatch(bool Val) { argument
73 SignMismatch = Val;
[all...]
/external/swiftshader/third_party/LLVM/include/llvm/Support/
H A DCasting.h34 static SimpleType &getSimplifiedValue(From &Val) { return Val; } argument
39 static SimpleType &getSimplifiedValue(const From &Val) { argument
40 return simplify_type<From>::getSimplifiedValue(static_cast<From&>(Val));
49 static inline bool doit(const From &Val) { argument
50 return To::classof(&Val);
55 static inline bool doit(const From &Val) { argument
56 return isa_impl<To, From>::doit(Val);
61 static inline bool doit(const From &Val) { argument
62 return isa_impl<To, From>::doit(Val);
67 doit(const From *Val) argument
73 doit(const From *Val) argument
79 doit(const From *Val) argument
88 doit(const From &Val) argument
98 doit(const FromTy &Val) argument
109 isa(const Y &Val) argument
167 doit(const From &Val) argument
176 doit(const FromTy &Val) argument
193 cast(const Y &Val) argument
203 cast_or_null(Y *Val) argument
219 dyn_cast(const Y &Val) argument
227 dyn_cast_or_null(Y *Val) argument
[all...]
/external/llvm/lib/IR/
H A DUse.cpp18 if (Val == RHS.Val)
21 if (Val)
24 Value *OldVal = Val;
25 if (RHS.Val) {
27 Val = RHS.Val;
28 Val->addUse(*this);
30 Val = nullptr;
34 RHS.Val
[all...]
/external/swiftshader/third_party/llvm-subzero/include/llvm/IR/
H A DUse.h71 if (Val)
78 Use(PrevPtrTag tag) : Val(nullptr) { Prev.setInt(tag); }
81 operator Value *() const { return Val; }
82 Value *get() const { return Val; }
90 inline void set(Value *Val);
95 Value *operator->() { return Val; }
96 const Value *operator->() const { return Val; }
116 Value *Val; member in class:llvm::Use
144 static SimpleType getSimplifiedValue(Use &Val) { return Val argument
148 getSimplifiedValue(const Use &Val) argument
[all...]

Completed in 603 milliseconds

1234567891011>>