Home
last modified time | relevance | path

Searched refs:Value (Results 1 – 25 of 1895) sorted by relevance

12345678910>>...76

/external/llvm/include/llvm/Analysis/
DInstructionSimplify.h46 class Value; variable
50 Value *SimplifyAddInst(Value *LHS, Value *RHS, bool isNSW, bool isNUW,
57 Value *SimplifySubInst(Value *LHS, Value *RHS, bool isNSW, bool isNUW,
64 Value *SimplifyFAddInst(Value *LHS, Value *RHS, FastMathFlags FMF,
71 Value *SimplifyFSubInst(Value *LHS, Value *RHS, FastMathFlags FMF,
78 Value *SimplifyFMulInst(Value *LHS, Value *RHS,
86 Value *SimplifyMulInst(Value *LHS, Value *RHS, const DataLayout *TD = 0,
92 Value *SimplifySDivInst(Value *LHS, Value *RHS, const DataLayout *TD = 0,
98 Value *SimplifyUDivInst(Value *LHS, Value *RHS, const DataLayout *TD = 0,
104 Value *SimplifyFDivInst(Value *LHS, Value *RHS, const DataLayout *TD = 0,
[all …]
DValueTracking.h22 class Value; variable
39 void ComputeMaskedBits(Value *V, APInt &KnownZero, APInt &KnownOne,
45 void ComputeSignBit(Value *V, bool &KnownZero, bool &KnownOne,
53 bool isKnownToBeAPowerOfTwo(Value *V, bool OrZero = false, unsigned Depth = 0);
59 bool isKnownNonZero(Value *V, const DataLayout *TD = 0, unsigned Depth = 0);
70 bool MaskedValueIsZero(Value *V, const APInt &Mask,
82 unsigned ComputeNumSignBits(Value *Op, const DataLayout *TD = 0,
90 bool ComputeMultiple(Value *V, unsigned Base, Value *&Multiple,
97 bool CannotBeNegativeZero(const Value *V, unsigned Depth = 0);
104 Value *isBytewiseValue(Value *V);
[all …]
/external/llvm/lib/Target/AArch64/MCTargetDesc/
DAArch64AsmBackend.cpp46 MCValue &Target, uint64_t &Value,
55 MCValue &Target, uint64_t &Value, in processFixupValue() argument
77 static uint64_t adjustFixupValue(unsigned Kind, uint64_t Value);
89 uint64_t Value,
179 uint64_t Value) const { in applyFixup()
181 Value = adjustFixupValue(Fixup.getKind(), Value); in applyFixup()
182 if (!Value) return; // Doesn't change encoding. in applyFixup()
190 Data[Offset + i] |= uint8_t((Value >> (i * 8)) & 0xff); in applyFixup()
211 uint64_t Value, in fixupNeedsRelaxation() argument
232 static unsigned ADRImmBits(unsigned Value) { in ADRImmBits() argument
[all …]
/external/llvm/include/llvm/Transforms/Utils/
DBuildLibCalls.h21 class Value; variable
26 Value *CastToCStr(Value *V, IRBuilder<> &B);
31 Value *EmitStrLen(Value *Ptr, IRBuilder<> &B, const DataLayout *TD,
37 Value *EmitStrNLen(Value *Ptr, Value *MaxLen, IRBuilder<> &B,
43 Value *EmitStrChr(Value *Ptr, char C, IRBuilder<> &B, const DataLayout *TD,
47 Value *EmitStrNCmp(Value *Ptr1, Value *Ptr2, Value *Len, IRBuilder<> &B,
52 Value *EmitStrCpy(Value *Dst, Value *Src, IRBuilder<> &B,
58 Value *EmitStrNCpy(Value *Dst, Value *Src, Value *Len, IRBuilder<> &B,
65 Value *EmitMemCpyChk(Value *Dst, Value *Src, Value *Len, Value *ObjSize,
71 Value *EmitMemChr(Value *Ptr, Value *Val, Value *Len, IRBuilder<> &B,
[all …]
/external/llvm/include/llvm/Support/
DMathExtras.h30 inline uint32_t Hi_32(uint64_t Value) { in Hi_32() argument
31 return static_cast<uint32_t>(Value >> 32); in Hi_32()
35 inline uint32_t Lo_32(uint64_t Value) { in Lo_32() argument
36 return static_cast<uint32_t>(Value); in Lo_32()
106 inline bool isMask_32(uint32_t Value) { in isMask_32() argument
107 return Value && ((Value + 1) & Value) == 0; in isMask_32()
113 inline bool isMask_64(uint64_t Value) { in isMask_64() argument
114 return Value && ((Value + 1) & Value) == 0; in isMask_64()
120 inline bool isShiftedMask_32(uint32_t Value) { in isShiftedMask_32() argument
121 return isMask_32((Value - 1) | Value); in isShiftedMask_32()
[all …]
/external/llvm/include/llvm/IR/
DIRBuilder.h179 Value *CreateGlobalString(StringRef Str, const Twine &Name = "");
284 CallInst *CreateMemSet(Value *Ptr, Value *Val, uint64_t Size, unsigned Align,
289 CallInst *CreateMemSet(Value *Ptr, Value *Val, Value *Size, unsigned Align,
296 CallInst *CreateMemCpy(Value *Dst, Value *Src, uint64_t Size, unsigned Align,
303 CallInst *CreateMemCpy(Value *Dst, Value *Src, Value *Size, unsigned Align,
312 CallInst *CreateMemMove(Value *Dst, Value *Src, uint64_t Size, unsigned Align,
317 CallInst *CreateMemMove(Value *Dst, Value *Src, Value *Size, unsigned Align,
323 CallInst *CreateLifetimeStart(Value *Ptr, ConstantInt *Size = 0);
328 CallInst *CreateLifetimeEnd(Value *Ptr, ConstantInt *Size = 0);
331 Value *getCastedInt8PtrValue(Value *Ptr);
[all …]
DValue.h34 typedef StringMapEntry<Value*> ValueName;
61 class Value {
84 void operator=(const Value &) LLVM_DELETED_FUNCTION;
85 Value(const Value &) LLVM_DELETED_FUNCTION;
92 Value(Type *Ty, unsigned scid);
94 virtual ~Value();
130 void takeName(Value *V);
136 void replaceAllUsesWith(Value *V);
247 bool hasSameSubclassOptionalData(const Value *V) const { in hasSameSubclassOptionalData()
253 void intersectOptionalDataWith(const Value *V) { in intersectOptionalDataWith()
[all …]
DInstructions.h64 explicit AllocaInst(Type *Ty, Value *ArraySize = 0,
66 AllocaInst(Type *Ty, Value *ArraySize,
72 AllocaInst(Type *Ty, Value *ArraySize, unsigned Align,
74 AllocaInst(Type *Ty, Value *ArraySize, unsigned Align,
88 const Value *getArraySize() const { return getOperand(0); } in getArraySize()
89 Value *getArraySize() { return getOperand(0); } in getArraySize()
119 static inline bool classof(const Value *V) { in classof()
143 LoadInst(Value *Ptr, const Twine &NameStr, Instruction *InsertBefore);
144 LoadInst(Value *Ptr, const Twine &NameStr, BasicBlock *InsertAtEnd);
145 LoadInst(Value *Ptr, const Twine &NameStr, bool isVolatile = false,
[all …]
DInstrTypes.h79 static inline bool classof(const Value *V) { in classof()
93 UnaryInstruction(Type *Ty, unsigned iType, Value *V,
98 UnaryInstruction(Type *Ty, unsigned iType, Value *V, BasicBlock *IAE) in UnaryInstruction()
112 DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value);
122 static inline bool classof(const Value *V) { in classof()
132 DEFINE_TRANSPARENT_OPERAND_ACCESSORS(UnaryInstruction, Value)
142 BinaryOperator(BinaryOps iType, Value *S1, Value *S2, Type *Ty,
144 BinaryOperator(BinaryOps iType, Value *S1, Value *S2, Type *Ty,
154 DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value);
161 static BinaryOperator *Create(BinaryOps Op, Value *S1, Value *S2,
[all …]
DIntrinsicInst.h53 static inline bool classof(const Value *V) { in classof()
72 static inline bool classof(const Value *V) { in classof()
76 static Value *StripCast(Value *C);
83 Value *getAddress() const;
90 static inline bool classof(const Value *V) { in classof()
99 const Value *getValue() const;
100 Value *getValue();
103 const_cast<Value*>(getArgOperand(1)))->getZExtValue(); in getOffset()
111 static inline bool classof(const Value *V) { in classof()
120 Value *getRawDest() const { return const_cast<Value*>(getArgOperand(0)); } in getRawDest()
[all …]
/external/llvm/lib/Object/
DMachOObject.cpp26 static void SwapValue(T &Value) { in SwapValue() argument
27 Value = sys::SwapByteOrder(Value); in SwapValue()
31 static void SwapStruct(T &Value);
172 void SwapStruct(macho::SegmentLoadCommand &Value) { in SwapStruct() argument
173 SwapValue(Value.Type); in SwapStruct()
174 SwapValue(Value.Size); in SwapStruct()
175 SwapValue(Value.VMAddress); in SwapStruct()
176 SwapValue(Value.VMSize); in SwapStruct()
177 SwapValue(Value.FileOffset); in SwapStruct()
178 SwapValue(Value.FileSize); in SwapStruct()
[all …]
/external/webkit/Source/WebCore/xml/
DXPathFunctions.cpp77 virtual Value evaluate() const;
78 virtual Value::Type resultType() const { return Value::NumberValue; } in resultType()
84 virtual Value evaluate() const;
85 virtual Value::Type resultType() const { return Value::NumberValue; } in resultType()
91 virtual Value evaluate() const;
92 virtual Value::Type resultType() const { return Value::NumberValue; } in resultType()
96 virtual Value evaluate() const;
97 virtual Value::Type resultType() const { return Value::NodeSetValue; } in resultType()
101 virtual Value evaluate() const;
102 virtual Value::Type resultType() const { return Value::StringValue; } in resultType()
[all …]
DXPathPredicate.h43 virtual Value evaluate() const;
44 virtual Value::Type resultType() const { return Value::NumberValue; } in resultType()
46 Value m_value;
53 virtual Value evaluate() const;
54 virtual Value::Type resultType() const { return Value::StringValue; } in resultType()
56 Value m_value;
61 virtual Value evaluate() const;
62 virtual Value::Type resultType() const { return Value::NumberValue; } in resultType()
72 virtual Value evaluate() const;
73 virtual Value::Type resultType() const { return Value::NumberValue; } in resultType()
[all …]
/external/chromium/chrome/browser/policy/
Dconfiguration_policy_pref_store.cc46 const Value** result) const;
55 virtual void Apply(ConfigurationPolicyType setting, Value* value);
61 Value::ValueType value_type;
72 Value* value,
79 bool ApplyProxyPolicy(ConfigurationPolicyType policy, Value* value);
83 bool ApplySyncPolicy(ConfigurationPolicyType policy, Value* value);
87 bool ApplyAutofillPolicy(ConfigurationPolicyType policy, Value* value);
92 bool ApplyDownloadDirPolicy(ConfigurationPolicyType policy, Value* value);
122 std::map<ConfigurationPolicyType, Value*> proxy_policies_;
134 { Value::TYPE_STRING, kPolicyHomepageLocation, prefs::kHomePage },
[all …]
/external/regex-re2/util/
Dsparse_array.h99 template<typename Value>
161 inline iterator set(int i, Value v);
167 inline Value get(int i, Value defaultv) const;
175 inline iterator set_existing(int i, Value v);
179 inline iterator set_new(int i, Value v);
183 inline Value get_existing(int i) const;
232 template<typename Value>
233 SparseArray<Value>::SparseArray() in SparseArray()
237 template<typename Value>
238 class SparseArray<Value>::IndexValue {
[all …]
/external/llvm/lib/Target/ARM/MCTargetDesc/
DARMAsmBackend.cpp115 MCValue &Target, uint64_t &Value,
120 uint64_t Value) const;
125 uint64_t Value,
168 uint64_t Value, in fixupNeedsRelaxation() argument
179 int64_t Offset = int64_t(Value) - 4; in fixupNeedsRelaxation()
189 int64_t Offset = int64_t(Value) - 4; in fixupNeedsRelaxation()
196 int64_t Offset = int64_t(Value) - 4; in fixupNeedsRelaxation()
254 static unsigned adjustFixupValue(const MCFixup &Fixup, uint64_t Value, in adjustFixupValue() argument
263 return Value; in adjustFixupValue()
265 Value >>= 16; in adjustFixupValue()
[all …]
/external/chromium/chrome/common/
Djson_schema_validator_unittest_base.cc25 Value* LoadValue(const std::string& filename) { in LoadValue()
33 Value* result = serializer.Deserialize(NULL, &error_message); in LoadValue()
39 Value* LoadValue(const std::string& filename, Value::ValueType type) { in LoadValue()
40 scoped_ptr<Value> result(LoadValue(filename)); in LoadValue()
52 LoadValue(filename, Value::TYPE_LIST)); in LoadList()
57 LoadValue(filename, Value::TYPE_DICTIONARY)); in LoadDictionary()
120 scoped_ptr<Value>(Value::CreateStringValue("foo")).get(), in TestStringPattern()
123 scoped_ptr<Value>(Value::CreateStringValue("foooooo")).get(), in TestStringPattern()
126 scoped_ptr<Value>(Value::CreateStringValue("bar")).get(), in TestStringPattern()
136 scoped_ptr<Value>(Value::CreateStringValue("foo")).get(), in TestEnum()
[all …]
/external/webkit/Source/JavaScriptCore/wtf/
DHashCountedSet.h30 template<typename Value, typename HashFunctions = typename DefaultHash<Value>::Hash,
31 typename Traits = HashTraits<Value> > class HashCountedSet {
34 typedef HashMap<Value, unsigned, HashFunctions, Traits> ImplType;
36 typedef Value ValueType;
78 template<typename Value, typename HashFunctions, typename Traits>
79 inline int HashCountedSet<Value, HashFunctions, Traits>::size() const in size()
84 template<typename Value, typename HashFunctions, typename Traits>
85 inline int HashCountedSet<Value, HashFunctions, Traits>::capacity() const in capacity()
90 template<typename Value, typename HashFunctions, typename Traits>
91 inline bool HashCountedSet<Value, HashFunctions, Traits>::isEmpty() const in isEmpty()
[all …]
/external/llvm/include/llvm/Object/
DRelocVisitor.h30 int64_t Value; member
35 RelocToApply(const RelocToApply &In) : Value(In.Value), Width(In.Width) {} in RelocToApply()
36 RelocToApply(int64_t Value, char Width) : Value(Value), Width(Width) {} in RelocToApply()
37 RelocToApply() : Value(0), Width(0) {} in RelocToApply()
50 uint64_t Value = 0) {
56 return visitELF_X86_64_64(R, Value);
58 return visitELF_X86_64_PC32(R, Value, SecAddr);
60 return visitELF_X86_64_32(R, Value);
62 return visitELF_X86_64_32S(R, Value);
72 return visitELF_386_32(R, Value);
[all …]
/external/llvm/lib/Transforms/Utils/
DIntegerDivision.cpp32 static Value *generateSignedRemainderCode(Value *Dividend, Value *Divisor, in generateSignedRemainderCode()
45 Value *DividendSign = Builder.CreateAShr(Dividend, ThirtyOne); in generateSignedRemainderCode()
46 Value *DivisorSign = Builder.CreateAShr(Divisor, ThirtyOne); in generateSignedRemainderCode()
47 Value *DvdXor = Builder.CreateXor(Dividend, DividendSign); in generateSignedRemainderCode()
48 Value *DvsXor = Builder.CreateXor(Divisor, DivisorSign); in generateSignedRemainderCode()
49 Value *UDividend = Builder.CreateSub(DvdXor, DividendSign); in generateSignedRemainderCode()
50 Value *UDivisor = Builder.CreateSub(DvsXor, DivisorSign); in generateSignedRemainderCode()
51 Value *URem = Builder.CreateURem(UDividend, UDivisor); in generateSignedRemainderCode()
52 Value *Xored = Builder.CreateXor(URem, DividendSign); in generateSignedRemainderCode()
53 Value *SRem = Builder.CreateSub(Xored, DividendSign); in generateSignedRemainderCode()
[all …]
/external/llvm/include/llvm/MC/
DMCObjectWriter.h115 void Write8(uint8_t Value) { in Write8() argument
116 OS << char(Value); in Write8()
119 void WriteLE16(uint16_t Value) { in WriteLE16() argument
120 Write8(uint8_t(Value >> 0)); in WriteLE16()
121 Write8(uint8_t(Value >> 8)); in WriteLE16()
124 void WriteLE32(uint32_t Value) { in WriteLE32() argument
125 WriteLE16(uint16_t(Value >> 0)); in WriteLE32()
126 WriteLE16(uint16_t(Value >> 16)); in WriteLE32()
129 void WriteLE64(uint64_t Value) { in WriteLE64() argument
130 WriteLE32(uint32_t(Value >> 0)); in WriteLE64()
[all …]
/external/llvm/lib/ExecutionEngine/RuntimeDyld/
DRuntimeDyldMachO.cpp26 uint64_t Value, in resolveRelocation() argument
38 << " Value: " << format("%p", Value) in resolveRelocation()
51 (uintptr_t)Value, in resolveRelocation()
60 (uintptr_t)Value, in resolveRelocation()
70 (uintptr_t)Value, in resolveRelocation()
81 uint64_t Value, in resolveI386Relocation() argument
87 Value -= FinalAddress + 4; // see resolveX86_64Relocation in resolveI386Relocation()
94 uint64_t ValueToWrite = Value + Addend; in resolveI386Relocation()
110 uint64_t Value, in resolveX86_64Relocation() argument
120 Value -= FinalAddress + 4; in resolveX86_64Relocation()
[all …]
DRuntimeDyldELF.cpp195 uint64_t Value, in resolveX86_64Relocation() argument
204 *Target = Value + Addend; in resolveX86_64Relocation()
205 DEBUG(dbgs() << "Writing " << format("%p", (Value + Addend)) in resolveX86_64Relocation()
211 Value += Addend; in resolveX86_64Relocation()
212 assert((Type == ELF::R_X86_64_32 && (Value <= UINT32_MAX)) || in resolveX86_64Relocation()
214 ((int64_t)Value <= INT32_MAX && (int64_t)Value >= INT32_MIN))); in resolveX86_64Relocation()
215 uint32_t TruncatedAddr = (Value & 0xFFFFFFFF); in resolveX86_64Relocation()
229 int64_t RealOffset = *Placeholder + Value + Addend - FinalAddress; in resolveX86_64Relocation()
240 uint32_t Value, in resolveX86Relocation() argument
250 *Target = *Placeholder + Value + Addend; in resolveX86Relocation()
[all …]
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime.Tests/
DAntlr.Runtime.Tools.Tests.pas114 property Value: String read GetValue write SetValue; property
139 Foo.Value := FValue;
163 Value: string;
165 Value := 'bar';
166 FIANTLRString.SetValue(Value);
167 CheckEquals(FIANTLRString.Value,'bar');
194 Foo.Value := 'original';
209 CheckEquals((ReturnValue as IFoo).Value,(FICloneable as IFoo).Value);
233 Value: Integer;
235 Value := 100;
[all …]
/external/llvm/include/llvm/ADT/
DStringSwitch.h55 StringSwitch& Case(const char (&S)[N], const T& Value) { in Case() argument
58 Result = &Value; in Case()
65 StringSwitch& EndsWith(const char (&S)[N], const T &Value) { in EndsWith() argument
68 Result = &Value; in EndsWith()
75 StringSwitch& StartsWith(const char (&S)[N], const T &Value) { in StartsWith() argument
78 Result = &Value; in StartsWith()
86 const T& Value) { in Cases() argument
87 return Case(S0, Value).Case(S1, Value); in Cases()
92 const char (&S2)[N2], const T& Value) { in Cases() argument
93 return Case(S0, Value).Case(S1, Value).Case(S2, Value); in Cases()
[all …]

12345678910>>...76