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

1 2 3 4 5 6 7 8 910

  /external/clang/test/CodeGen/
2002-03-14-BrokenPHINode.c 11 double Val;
17 return asa+(int)Val;
  /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/clang/test/CodeGenCXX/
2010-03-09-AnonAggregate.cpp 8 union { struct { union { int BA; } Val; int Offset; } OffsetedInfo; } Contents;
captured-statements.cpp 112 class Val {
141 // CHECK-5: store %class.Val*
144 Val<float, 202> Obj;
149 // CHECK-5: store %class.Val*
temp-order.cpp 6 unsigned Val = 1;
8 Val *= Base;
9 return Val;
45 static unsigned f0(bool val = false) {
49 if ((A(tt, 3), val))
57 static unsigned f1(bool val = true) {
61 if ((A(tt, 3), val))
  /external/llvm/lib/Target/Hexagon/
HexagonMCInstLower.cpp 59 APFloat Val = MO.getFPImm()->getValueAPF();
62 MCO = MCOperand::CreateImm(*Val.bitcastToAPInt().getRawData());
HexagonSplitConst32AndConst64.cpp 120 APFloat Val = MI->getOperand(1).getFPImm()->getValueAPF();
121 ImmValue = *Val.bitcastToAPInt().getRawData();
139 APFloat Val = MI->getOperand(1).getFPImm()->getValueAPF();
140 ImmValue = *Val.bitcastToAPInt().getRawData();
  /external/clang/test/SemaTemplate/
instantiate-self.cpp 31 enum { Val = 1 };
32 char c[1 + Val]; // ok
  /external/llvm/bindings/ocaml/transforms/passmgr_builder/
passmgr_builder_ocaml.c 40 value Val = alloc_custom(&pmbuilder_ops,
42 PMBuilder_val(Val) = Ref;
43 return Val;
  /external/llvm/include/llvm/ADT/
DenseMapInfo.h 26 //static unsigned getHashValue(const T &Val);
34 uintptr_t Val = static_cast<uintptr_t>(-1);
35 Val <<= PointerLikeTypeTraits<T*>::NumLowBitsAvailable;
36 return reinterpret_cast<T*>(Val);
39 uintptr_t Val = static_cast<uintptr_t>(-2);
40 Val <<= PointerLikeTypeTraits<T*>::NumLowBitsAvailable;
41 return reinterpret_cast<T*>(Val);
54 static unsigned getHashValue(const char& Val) { return Val * 37U; }
64 static unsigned getHashValue(const unsigned& Val) { return Val * 37U;
    [all...]
UniqueVector.h 43 unsigned &Val = Map[Entry];
46 if (Val) return Val;
49 Val = static_cast<unsigned>(Vector.size()) + 1;
53 return Val;
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...]
  /external/llvm/lib/Option/
Option.cpp 120 const char *Val = getAliasArgs();
121 while (*Val != '\0') {
122 A->getValues().push_back(Val);
125 Val += strlen(Val) + 1;
  /external/llvm/lib/Target/ARM/
ARMMCInstLower.cpp 105 APFloat Val = MO.getFPImm()->getValueAPF();
107 Val.convert(APFloat::IEEEdouble, APFloat::rmTowardZero, &ignored);
108 MCOp = MCOperand::CreateFPImm(Val.convertToDouble());
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
ConstraintManager.h 31 Optional<bool> Val;
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/llvm/lib/Transforms/Scalar/
LowerAtomic.cpp 28 Value *Val = CXI->getNewValOperand();
32 Value *Res = Builder.CreateSelect(Equal, Val, Orig);
46 Value *Val = RMWI->getValOperand();
54 Res = Val;
57 Res = Builder.CreateAdd(Orig, Val);
60 Res = Builder.CreateSub(Orig, Val);
63 Res = Builder.CreateAnd(Orig, Val);
66 Res = Builder.CreateNot(Builder.CreateAnd(Orig, Val));
69 Res = Builder.CreateOr(Orig, Val);
72 Res = Builder.CreateXor(Orig, Val);
    [all...]
  /external/llvm/unittests/IR/
MDBuilderTest.cpp 41 ConstantFP *Val = mdconst::extract<ConstantFP>(Op);
42 EXPECT_TRUE(Val->getType()->isFloatingPointTy());
43 EXPECT_TRUE(Val->isExactlyValue(1.0));
  /external/clang/test/CXX/expr/expr.const/
p3-0x.cpp 77 template<typename T, T v> struct Val { static constexpr T value = v; };
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}}
  /external/clang/test/SemaCXX/
captured-statements.cpp 64 class Val {
79 Val<float> Obj;
  /external/llvm/include/llvm/CodeGen/
MachineConstantPool.h 82 } Val;
84 /// The required alignment for this entry. The top bit is set when Val is
90 Val.ConstVal = V;
94 Val.MachineCPVal = V;
  /external/llvm/lib/Target/R600/
SILowerI1Copies.cpp 119 int64_t Val = DefInst->getOperand(1).getImm();
120 assert(Val == 0 || Val == -1);
124 .addImm(Val);
  /external/llvm/utils/yaml-bench/
YAMLBench.cpp 92 StringRef Val = sn->getValue(Storage);
93 outs() << prettyTag(n) << " \"" << yaml::escape(Val) << "\"";
  /external/clang/lib/AST/
TemplateBase.cpp 41 const llvm::APSInt &Val = TemplArg.getAsIntegral();
49 if (llvm::APSInt::isSameValue(ECD->getInitVal(), Val)) {
57 Out << (Val.getBoolValue() ? "true" : "false");
59 const char Ch = Val.getZExtValue();
64 Out << Val;
85 Integer.VAL = Value.getZExtValue();
  /external/clang/lib/StaticAnalyzer/Checkers/
TestAfterDivZeroChecker.cpp 83 void reportBug(SVal Val, CheckerContext &C) const;
169 void TestAfterDivZeroChecker::reportBug(SVal Val, CheckerContext &C) const {
179 R->addVisitor(llvm::make_unique<DivisionBRVisitor>(Val.getAsSymbol(),
229 SVal Val = C.getSVal(LRHS ? B->getLHS() : B->getRHS());
230 if (hasDivZeroMap(Val, C))
231 reportBug(Val, C);
235 SVal Val;
238 Val = C.getSVal(I->getSubExpr());
240 if (hasDivZeroMap(Val, C))
241 reportBug(Val, C)
    [all...]
  /external/llvm/include/llvm/IR/
Use.h 84 if (Val)
91 Use(PrevPtrTag tag) : Val(nullptr) { Prev.setInt(tag); }
94 operator Value *() const { return Val; }
95 Value *get() const { return Val; }
103 inline void set(Value *Val);
110 set(RHS.Val);
114 Value *operator->() { return Val; }
115 const Value *operator->() const { return Val; }
135 Value *Val;
161 static SimpleType getSimplifiedValue(Use &Val) { return Val.get();
    [all...]

Completed in 1178 milliseconds

1 2 3 4 5 6 7 8 910