HomeSort by relevance Sort by last modified time
    Searched defs:Val (Results 376 - 400 of 992) sorted by null

<<11121314151617181920>>

  /prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/MC/MCParser/
MCTargetAsmParser.h 69 unsigned Val;
73 AsmRewrite(AsmRewriteKind kind, SMLoc loc, unsigned len = 0, unsigned val = 0)
74 : Kind(kind), Loc(loc), Len(len), Val(val) {}
76 : Kind(kind), Loc(loc), Len(len), Val(0), Label(label) {}
  /prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/Transforms/Scalar/
GVN.h 121 Value *Val;
146 if (!Curr.Val) {
147 Curr.Val = V;
153 Node->Val = V;
165 while (Curr && (Curr->Val != I || Curr->BB != BB)) {
177 Curr->Val = nullptr;
181 Curr->Val = Next->Val;
  /prebuilts/clang/host/linux-x86/clang-4579689/include/clang/Sema/
Ownership.h 141 /// stored in the low bit of the Val pointer.
145 PtrTy Val;
150 : Val(PtrTy()), Invalid(Invalid) {}
151 ActionResult(PtrTy val) : Val(val), Invalid(false) {}
152 ActionResult(const DiagnosticBuilder &) : Val(PtrTy()), Invalid(true) {}
159 bool isUsable() const { return !Invalid && Val; }
160 bool isUnset() const { return !Invalid && !Val; }
162 PtrTy get() const { return Val; }
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/ADT/
PointerUnion.h 93 ValTy Val;
107 : Val(const_cast<void *>(
110 : Val(const_cast<void *>(PointerLikeTypeTraits<PT2>::getAsVoidPointer(V)),
118 return !PointerLikeTypeTraits<PT1>::getFromVoidPointer(Val.getPointer());
129 return static_cast<int>(Val.getInt()) == TyNo;
137 return PointerLikeTypeTraits<T>::getFromVoidPointer(Val.getPointer());
157 assert(is<PT1>() && "Val is not the first pointer");
159 get<PT1>() == Val.getPointer() &&
161 return const_cast<PT1 *>(reinterpret_cast<const PT1 *>(Val.getAddrOfPointer()));
166 Val.initWithPointer(nullptr)
    [all...]
ScopedHashTable.h 51 V Val;
53 ScopedHashTableVal(const K &key, const V &val) : Key(key), Val(val) {}
57 const V &getValue() const { return Val; }
58 V &getValue() { return Val; }
67 const K &key, const V &val,
71 new (New) ScopedHashTableVal(key, val);
113 void setLastValInScope(ScopedHashTableVal<K, V> *Val) {
114 LastValInScope = Val;
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/Bitcode/
BitCodes.h 95 uint64_t Val; // A literal value or data for an encoding.
100 Fixed = 1, // A fixed width field, Val specifies number of bits.
101 VBR = 2, // A VBR field where Val specifies the width of each chunk.
107 explicit BitCodeAbbrevOp(uint64_t V) : Val(V), IsLiteral(true) {}
109 : Val(Data), IsLiteral(false), Enc(E) {}
115 uint64_t getLiteralValue() const { assert(isLiteral()); return Val; }
121 return Val;
  /prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/IR/
Attributes.h 91 static Attribute get(LLVMContext &Context, AttrKind Kind, uint64_t Val = 0);
93 StringRef Val = StringRef());
122 bool hasAttribute(AttrKind Val) const;
125 bool hasAttribute(StringRef Val) const;
296 uintptr_t Val = static_cast<uintptr_t>(-1);
297 Val <<= PointerLikeTypeTraits<void *>::NumLowBitsAvailable;
298 return AttributeSet(reinterpret_cast<AttributeSetNode *>(Val));
302 uintptr_t Val = static_cast<uintptr_t>(-2);
303 Val <<= PointerLikeTypeTraits<void *>::NumLowBitsAvailable;
304 return AttributeSet(reinterpret_cast<AttributeSetNode *>(Val));
    [all...]
ValueHandle.h 44 : PrevPair(nullptr, Kind), Val(RHS.getValPtr()) {
52 Value *Val = nullptr;
54 void setValPtr(Value *V) { Val = V; }
60 : PrevPair(nullptr, Kind), Val(V) {
96 Value *getValPtr() const { return Val; }
302 static unsigned getHashValue(const AssertingVH<T> &Val) {
303 return DenseMapInfo<Value *>::getHashValue(Val.getRawValPtr());
542 static unsigned getHashValue(const PoisoningVH<T> &Val) {
543 return DenseMapInfo<Value *>::getHashValue(Val.getRawValPtr());
  /prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/Transforms/Scalar/
GVN.h 165 Value *Val;
194 if (!Curr.Val) {
195 Curr.Val = V;
201 Node->Val = V;
213 while (Curr && (Curr->Val != I || Curr->BB != BB)) {
225 Curr->Val = nullptr;
229 Curr->Val = Next->Val;
  /prebuilts/clang/host/linux-x86/clang-4630689/include/clang/Sema/
Ownership.h 141 /// stored in the low bit of the Val pointer.
145 PtrTy Val;
150 : Val(PtrTy()), Invalid(Invalid) {}
151 ActionResult(PtrTy val) : Val(val), Invalid(false) {}
152 ActionResult(const DiagnosticBuilder &) : Val(PtrTy()), Invalid(true) {}
159 bool isUsable() const { return !Invalid && Val; }
160 bool isUnset() const { return !Invalid && !Val; }
162 PtrTy get() const { return Val; }
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/ADT/
PointerUnion.h 93 ValTy Val;
107 : Val(const_cast<void *>(
110 : Val(const_cast<void *>(PointerLikeTypeTraits<PT2>::getAsVoidPointer(V)),
118 return !PointerLikeTypeTraits<PT1>::getFromVoidPointer(Val.getPointer());
129 return static_cast<int>(Val.getInt()) == TyNo;
137 return PointerLikeTypeTraits<T>::getFromVoidPointer(Val.getPointer());
157 assert(is<PT1>() && "Val is not the first pointer");
159 get<PT1>() == Val.getPointer() &&
161 return const_cast<PT1 *>(reinterpret_cast<const PT1 *>(Val.getAddrOfPointer()));
166 Val.initWithPointer(nullptr)
    [all...]
ScopedHashTable.h 51 V Val;
53 ScopedHashTableVal(const K &key, const V &val) : Key(key), Val(val) {}
57 const V &getValue() const { return Val; }
58 V &getValue() { return Val; }
67 const K &key, const V &val,
71 new (New) ScopedHashTableVal(key, val);
113 void setLastValInScope(ScopedHashTableVal<K, V> *Val) {
114 LastValInScope = Val;
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/Bitcode/
BitCodes.h 95 uint64_t Val; // A literal value or data for an encoding.
100 Fixed = 1, // A fixed width field, Val specifies number of bits.
101 VBR = 2, // A VBR field where Val specifies the width of each chunk.
107 explicit BitCodeAbbrevOp(uint64_t V) : Val(V), IsLiteral(true) {}
109 : Val(Data), IsLiteral(false), Enc(E) {}
115 uint64_t getLiteralValue() const { assert(isLiteral()); return Val; }
121 return Val;
  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/IR/
Attributes.h 91 static Attribute get(LLVMContext &Context, AttrKind Kind, uint64_t Val = 0);
93 StringRef Val = StringRef());
122 bool hasAttribute(AttrKind Val) const;
125 bool hasAttribute(StringRef Val) const;
296 uintptr_t Val = static_cast<uintptr_t>(-1);
297 Val <<= PointerLikeTypeTraits<void *>::NumLowBitsAvailable;
298 return AttributeSet(reinterpret_cast<AttributeSetNode *>(Val));
302 uintptr_t Val = static_cast<uintptr_t>(-2);
303 Val <<= PointerLikeTypeTraits<void *>::NumLowBitsAvailable;
304 return AttributeSet(reinterpret_cast<AttributeSetNode *>(Val));
    [all...]
ValueHandle.h 44 : PrevPair(nullptr, Kind), Val(RHS.getValPtr()) {
52 Value *Val = nullptr;
54 void setValPtr(Value *V) { Val = V; }
60 : PrevPair(nullptr, Kind), Val(V) {
96 Value *getValPtr() const { return Val; }
302 static unsigned getHashValue(const AssertingVH<T> &Val) {
303 return DenseMapInfo<Value *>::getHashValue(Val.getRawValPtr());
542 static unsigned getHashValue(const PoisoningVH<T> &Val) {
543 return DenseMapInfo<Value *>::getHashValue(Val.getRawValPtr());
  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/Transforms/Scalar/
GVN.h 165 Value *Val;
194 if (!Curr.Val) {
195 Curr.Val = V;
201 Node->Val = V;
213 while (Curr && (Curr->Val != I || Curr->BB != BB)) {
225 Curr->Val = nullptr;
229 Curr->Val = Next->Val;
  /prebuilts/clang/host/linux-x86/clang-4639204/include/clang/Sema/
Ownership.h 141 /// stored in the low bit of the Val pointer.
145 PtrTy Val;
150 : Val(PtrTy()), Invalid(Invalid) {}
151 ActionResult(PtrTy val) : Val(val), Invalid(false) {}
152 ActionResult(const DiagnosticBuilder &) : Val(PtrTy()), Invalid(true) {}
159 bool isUsable() const { return !Invalid && Val; }
160 bool isUnset() const { return !Invalid && !Val; }
162 PtrTy get() const { return Val; }
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/ADT/
PointerUnion.h 93 ValTy Val;
107 : Val(const_cast<void *>(
110 : Val(const_cast<void *>(PointerLikeTypeTraits<PT2>::getAsVoidPointer(V)),
118 return !PointerLikeTypeTraits<PT1>::getFromVoidPointer(Val.getPointer());
129 return static_cast<int>(Val.getInt()) == TyNo;
137 return PointerLikeTypeTraits<T>::getFromVoidPointer(Val.getPointer());
157 assert(is<PT1>() && "Val is not the first pointer");
159 get<PT1>() == Val.getPointer() &&
161 return const_cast<PT1 *>(reinterpret_cast<const PT1 *>(Val.getAddrOfPointer()));
166 Val.initWithPointer(nullptr)
    [all...]
ScopedHashTable.h 51 V Val;
53 ScopedHashTableVal(const K &key, const V &val) : Key(key), Val(val) {}
57 const V &getValue() const { return Val; }
58 V &getValue() { return Val; }
67 const K &key, const V &val,
71 new (New) ScopedHashTableVal(key, val);
113 void setLastValInScope(ScopedHashTableVal<K, V> *Val) {
114 LastValInScope = Val;
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/Bitcode/
BitCodes.h 95 uint64_t Val; // A literal value or data for an encoding.
100 Fixed = 1, // A fixed width field, Val specifies number of bits.
101 VBR = 2, // A VBR field where Val specifies the width of each chunk.
107 explicit BitCodeAbbrevOp(uint64_t V) : Val(V), IsLiteral(true) {}
109 : Val(Data), IsLiteral(false), Enc(E) {}
115 uint64_t getLiteralValue() const { assert(isLiteral()); return Val; }
121 return Val;
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/IR/
Attributes.h 91 static Attribute get(LLVMContext &Context, AttrKind Kind, uint64_t Val = 0);
93 StringRef Val = StringRef());
122 bool hasAttribute(AttrKind Val) const;
125 bool hasAttribute(StringRef Val) const;
296 uintptr_t Val = static_cast<uintptr_t>(-1);
297 Val <<= PointerLikeTypeTraits<void *>::NumLowBitsAvailable;
298 return AttributeSet(reinterpret_cast<AttributeSetNode *>(Val));
302 uintptr_t Val = static_cast<uintptr_t>(-2);
303 Val <<= PointerLikeTypeTraits<void *>::NumLowBitsAvailable;
304 return AttributeSet(reinterpret_cast<AttributeSetNode *>(Val));
    [all...]
ValueHandle.h 44 : PrevPair(nullptr, Kind), Val(RHS.getValPtr()) {
52 Value *Val = nullptr;
54 void setValPtr(Value *V) { Val = V; }
60 : PrevPair(nullptr, Kind), Val(V) {
96 Value *getValPtr() const { return Val; }
302 static unsigned getHashValue(const AssertingVH<T> &Val) {
303 return DenseMapInfo<Value *>::getHashValue(Val.getRawValPtr());
542 static unsigned getHashValue(const PoisoningVH<T> &Val) {
543 return DenseMapInfo<Value *>::getHashValue(Val.getRawValPtr());
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/Transforms/Scalar/
GVN.h 165 Value *Val;
194 if (!Curr.Val) {
195 Curr.Val = V;
201 Node->Val = V;
213 while (Curr && (Curr->Val != I || Curr->BB != BB)) {
225 Curr->Val = nullptr;
229 Curr->Val = Next->Val;
  /prebuilts/clang/host/linux-x86/clang-4691093/include/clang/Sema/
Ownership.h 141 /// stored in the low bit of the Val pointer.
145 PtrTy Val;
150 : Val(PtrTy()), Invalid(Invalid) {}
151 ActionResult(PtrTy val) : Val(val), Invalid(false) {}
152 ActionResult(const DiagnosticBuilder &) : Val(PtrTy()), Invalid(true) {}
159 bool isUsable() const { return !Invalid && Val; }
160 bool isUnset() const { return !Invalid && !Val; }
162 PtrTy get() const { return Val; }
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/ADT/
PointerUnion.h 93 ValTy Val;
107 : Val(const_cast<void *>(
110 : Val(const_cast<void *>(PointerLikeTypeTraits<PT2>::getAsVoidPointer(V)),
118 return !PointerLikeTypeTraits<PT1>::getFromVoidPointer(Val.getPointer());
129 return static_cast<int>(Val.getInt()) == TyNo;
137 return PointerLikeTypeTraits<T>::getFromVoidPointer(Val.getPointer());
157 assert(is<PT1>() && "Val is not the first pointer");
159 get<PT1>() == Val.getPointer() &&
161 return const_cast<PT1 *>(reinterpret_cast<const PT1 *>(Val.getAddrOfPointer()));
166 Val.initWithPointer(nullptr)
    [all...]

Completed in 482 milliseconds

<<11121314151617181920>>