Searched defs:Val (Results 1 - 25 of 364) 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/clang/test/CodeGenCXX/
H A D2010-03-09-AnonAggregate.cpp8 union { struct { union { int BA; } Val; int Offset; } OffsetedInfo; } Contents; member in struct:MO::__anon18783::__anon18784
H A Dcaptured-statements.cpp112 class Val { class
141 // CHECK-5: store %class.Val*
144 Val<float, 202> Obj;
149 // CHECK-5: store %class.Val*
/external/llvm/include/llvm/Support/
H A DEndianStream.h29 template <typename value_type> void write(value_type Val) { argument
30 Val = byte_swap<value_type, endian>(Val);
31 OS.write((const char *)&Val, sizeof(value_type));
/external/llvm/lib/MC/
H A DYAML.cpp23 const yaml::BinaryRef &Val, void *, llvm::raw_ostream &Out) {
24 Val.writeAsHex(Out);
28 yaml::BinaryRef &Val) {
36 Val = yaml::BinaryRef(Scalar);
22 output( const yaml::BinaryRef &Val, void *, llvm::raw_ostream &Out) argument
27 input(StringRef Scalar, void *, yaml::BinaryRef &Val) argument
/external/clang/include/clang/AST/
H A DTypeOrdering.h48 static unsigned getHashValue(clang::QualType Val) { argument
49 return (unsigned)((uintptr_t)Val.getAsOpaquePtr()) ^
50 ((unsigned)((uintptr_t)Val.getAsOpaquePtr() >> 9));
68 static unsigned getHashValue(clang::CanQualType Val) { argument
69 return (unsigned)((uintptr_t)Val.getAsOpaquePtr()) ^
70 ((unsigned)((uintptr_t)Val.getAsOpaquePtr() >> 9));
/external/clang/include/clang/Rewrite/Core/
H A DTokenRewriter.h59 token_iterator AddTokenBefore(token_iterator I, const char *Val);
60 token_iterator AddTokenAfter(token_iterator I, const char *Val) { argument
62 return AddTokenBefore(++I, Val);
/external/clang/test/SemaTemplate/
H A Dinstantiate-self.cpp31 enum { Val = 1 }; enumerator in enum:test3::A::B::__anon19475
32 char c[1 + Val]; // ok
H A Dtemplate-id-expr.cpp6 static void isa(const FromCl &Val) { } argument
10 void isa(const Y &Val) { return isa_impl_cl<Y>::template isa<X>(Val); } argument
13 void f0(const Value &Val) { isa<Value>(Val); } argument
/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));
H A DMCValue.h67 int64_t Val = 0, uint32_t RefKind = 0) {
70 R.Cst = Val;
77 static MCValue get(int64_t Val) { argument
79 R.Cst = Val;
/external/llvm/lib/Target/ARM/
H A DARMMCInstLower.cpp105 APFloat Val = MO.getFPImm()->getValueAPF(); local
107 Val.convert(APFloat::IEEEdouble, APFloat::rmTowardZero, &ignored);
108 MCOp = MCOperand::CreateFPImm(Val.convertToDouble());
H A DThumb2RegisterInfo.cpp39 int Val,
46 Type::getInt32Ty(MBB.getParent()->getFunction()->getContext()), Val);
35 emitLoadConstPool(MachineBasicBlock &MBB, MachineBasicBlock::iterator &MBBI, DebugLoc dl, unsigned DestReg, unsigned SubIdx, int Val, ARMCC::CondCodes Pred, unsigned PredReg, unsigned MIFlags) const argument
/external/llvm/lib/Target/Hexagon/
H A DHexagonMCInstLower.cpp61 APFloat Val = MO.getFPImm()->getValueAPF(); local
64 MCO = MCOperand::CreateImm(*Val.bitcastToAPInt().getRawData());
/external/stlport/test/eh/
H A Dtest_construct.h81 Value_type Val = 0; local
82 T t( n, Val );
/external/clang/include/clang/Frontend/
H A DCommandLineSourceLoc.h66 clang::ParsedSourceLocation &Val);
72 clang::ParsedSourceLocation &Val) {
75 Val = ParsedSourceLocation::FromString(ArgValue);
76 if (Val.FileName.empty()) {
71 parse(Option &O, StringRef ArgName, StringRef ArgValue, clang::ParsedSourceLocation &Val) argument
/external/clang/lib/CodeGen/
H A DCGStmtOpenMP.cpp61 llvm::ConstantInt *Val = cast<llvm::ConstantInt>(Len.getScalarVal()); local
62 LoopStack.setVectorizerWidth(Val->getZExtValue());
/external/clang/lib/Rewrite/Core/
H A DTokenRewriter.cpp82 TokenRewriter::AddTokenBefore(token_iterator I, const char *Val) { argument
83 unsigned Len = strlen(Val);
90 Tok.setLocation(ScratchBuf->getToken(Val, Len, Spelling));
/external/llvm/include/llvm/ADT/
H A DDenseMapInfo.h26 //static unsigned getHashValue(const T &Val);
34 uintptr_t Val = static_cast<uintptr_t>(-1); local
35 Val <<= PointerLikeTypeTraits<T*>::NumLowBitsAvailable;
36 return reinterpret_cast<T*>(Val);
39 uintptr_t Val = static_cast<uintptr_t>(-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.h43 unsigned &Val = Map[Entry]; local
46 if (Val) return Val;
49 Val = static_cast<unsigned>(Vector.size()) + 1;
53 return Val;
/external/llvm/include/llvm/IR/
H A DComdat.h43 void setSelectionKind(SelectionKind Val) { SK = Val; } argument
/external/llvm/unittests/IR/
H A DMDBuilderTest.cpp42 ConstantFP *Val = cast<ConstantFP>(Op); local
43 EXPECT_TRUE(Val->isExactlyValue(1.0));
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DConstraintManager.h31 Optional<bool> Val; member in class:clang::ento::ConditionTruthVal
35 ConditionTruthVal(bool constraint) : Val(constraint) {}
42 return Val.hasValue() && Val.getValue();
47 return Val.hasValue() && !Val.getValue();
52 return Val.hasValue();
58 return !Val.hasValue();
/external/clang/test/CXX/expr/expr.const/
H A Dp3-0x.cpp77 template<typename T, T v> struct Val { static constexpr T value = v; }; struct in class:EE::EEE
78 static_assert(Val<bool, E1>::value == 1, ""); // ok
79 static_assert(Val<bool, '\0'>::value == 0, ""); // ok
80 static_assert(Val<bool, U'\1'>::value == 1, ""); // ok
81 static_assert(Val<bool, E5>::value == 1, ""); // expected-error {{5, which cannot be narrowed to type 'bool'}}
100 int n = Val<bool, &S::operator int>::value; // expected-error-re {{conversion from 'int (S::*)(){{( __attribute__\(\(thiscall\)\))?}} const' to 'bool' is not allowed in a converted constant expression}}

Completed in 1237 milliseconds

1234567891011>>