Searched defs:Value (Results 126 - 150 of 527) sorted by relevance

1234567891011>>

/external/llvm/include/llvm/ADT/
H A DStatistic.h39 volatile llvm::sys::cas_flag Value; member in class:llvm::Statistic
42 llvm::sys::cas_flag getValue() const { return Value; }
49 Value = 0; Initialized = false;
53 operator unsigned() const { return Value; }
57 Value = Val;
66 sys::AtomicIncrement(&Value);
72 unsigned OldValue = Value;
73 sys::AtomicIncrement(&Value);
78 sys::AtomicDecrement(&Value);
84 unsigned OldValue = Value;
[all...]
/external/llvm/include/llvm/CodeGen/
H A DJITCodeEmitter.h34 class Value;
176 void emitULEB128Bytes(uint64_t Value, unsigned PadTo = 0) { argument
178 uint8_t Byte = Value & 0x7f;
179 Value >>= 7;
180 if (Value || PadTo != 0) Byte |= 0x80;
182 } while (Value);
194 void emitSLEB128Bytes(int64_t Value) { argument
195 int32_t Sign = Value >> (8 * sizeof(Value) - 1);
199 uint8_t Byte = Value
218 emitInt32(uint32_t Value) argument
228 emitInt64(uint64_t Value) argument
238 emitInt32At(uintptr_t *Addr, uintptr_t Value) argument
244 emitInt64At(uintptr_t *Addr, uintptr_t Value) argument
[all...]
/external/llvm/include/llvm/IR/
H A DUse.h12 /// instruction or some other User instance which refers to a Value. The Use
37 class Value;
52 /// \brief A Use represents the edge between a Value definition and its users.
57 /// jumping directly to the User when we arrive from the Value's uses.
59 /// The pointer to the used Value is explicit, and the pointer to the User is
94 operator Value *() const { return Val; }
95 Value *get() const { return Val; }
103 inline void set(Value *Val);
105 Value *operator=(Value *RH
[all...]
/external/llvm/include/llvm/LineEditor/
H A DLineEditor.h131 CompleterModel(T Value) : Value(Value) {} argument
133 return Value(Buffer, Pos);
135 T Value; member in struct:llvm::LineEditor::CompleterModel
140 ListCompleterModel(T Value) : Value(Value) {} argument
143 return Value(Buffer, Pos);
145 T Value; member in struct:llvm::LineEditor::ListCompleterModel
[all...]
/external/llvm/include/llvm/MC/
H A DMCELFObjectWriter.h94 unsigned setRType(unsigned Value, unsigned Type) const { argument
95 return ((Type & R_TYPE_MASK) | ((Value & 0xff) << R_TYPE_SHIFT));
97 unsigned setRType2(unsigned Value, unsigned Type) const { argument
98 return (Type & R_TYPE2_MASK) | ((Value & 0xff) << R_TYPE2_SHIFT);
100 unsigned setRType3(unsigned Value, unsigned Type) const { argument
101 return (Type & R_TYPE3_MASK) | ((Value & 0xff) << R_TYPE3_SHIFT);
103 unsigned setRSsym(unsigned Value, unsigned Type) const { argument
104 return (Type & R_SSYM_MASK) | ((Value & 0xff) << R_SSYM_SHIFT);
H A DMCFixup.h66 const MCExpr *Value; member in class:llvm::MCFixup
78 static MCFixup Create(uint32_t Offset, const MCExpr *Value, argument
82 FI.Value = Value;
92 void setOffset(uint32_t Value) { Offset = Value; } argument
94 const MCExpr *getValue() const { return Value; }
H A DMCInstPrinter.h82 void setAvailableFeatures(uint64_t Value) { AvailableFeatures = Value; } argument
85 void setUseMarkup(bool Value) { UseMarkup = Value; } argument
92 void setPrintImmHex(bool Value) { PrintImmHex = Value; } argument
95 void setPrintImmHex(HexStyle::Style Value) { PrintHexStyle = Value; } argument
98 format_object1<int64_t> formatImm(const int64_t Value) const { return PrintImmHex ? formatHex(Value)
[all...]
H A DMCObjectWriter.h116 void Write8(uint8_t Value) { argument
117 OS << char(Value);
120 void WriteLE16(uint16_t Value) { argument
121 Write8(uint8_t(Value >> 0));
122 Write8(uint8_t(Value >> 8));
125 void WriteLE32(uint32_t Value) { argument
126 WriteLE16(uint16_t(Value >> 0));
127 WriteLE16(uint16_t(Value >> 16));
130 void WriteLE64(uint64_t Value) { argument
131 WriteLE32(uint32_t(Value >>
135 WriteBE16(uint16_t Value) argument
140 WriteBE32(uint32_t Value) argument
145 WriteBE64(uint64_t Value) argument
150 Write16(uint16_t Value) argument
157 Write32(uint32_t Value) argument
164 Write64(uint64_t Value) argument
[all...]
/external/llvm/lib/CodeGen/
H A DLiveRangeCalc.cpp114 assert(I->Value && "No live-in value found");
119 // Value is killed inside this block.
125 LiveOut[MBB] = LiveOutPair(I->Value, (MachineDomTreeNode *)nullptr);
128 Updater.add(Start, End, I->Value);
315 LiveOutPair &Value = LiveOut[*PI]; local
316 if (!Value.first || Value.first == IDomValue.first)
320 if (!Value.second)
321 Value.second =
322 DomTree->getNode(Indexes->getMBBFromIndex(Value
[all...]
H A DLiveRangeCalc.h92 VNInfo *Value; member in struct:llvm::LiveRangeCalc::LiveInBlock
95 : LR(LR), DomNode(node), Kill(kill), Value(nullptr) {}
/external/llvm/lib/Object/
H A DIRObjectFile.cpp95 RecordStreamer::State Value = KV.second; local
97 switch (Value) {
/external/llvm/lib/Target/AArch64/MCTargetDesc/
H A DAArch64MachObjectWriter.cpp124 int64_t Value = 0; local
168 Value = Target.getConstant();
244 Value += (!A_SD.getFragment() ? 0
249 Value -= (!B_SD.getFragment() ? 0
317 Value += Layout.getSymbolOffset(&SD) - Layout.getSymbolOffset(Base);
332 Value += Writer->getSymbolAddress(&SD, Layout);
335 Value -= Writer->getFragmentAddress(Fragment, Layout) +
359 Value) {
360 assert((Value & 0xff000000) == 0 && "Added relocation out of range!");
370 Index = Value;
[all...]
/external/llvm/lib/Target/AArch64/Utils/
H A DAArch64BaseInfo.cpp21 StringRef AArch64NamedImmMapper::toString(uint32_t Value, bool &Valid) const { argument
23 if (Pairs[i].Value == Value) {
38 return Pairs[i].Value;
46 bool AArch64NamedImmMapper::validImm(uint32_t Value) const {
47 return Value < TooBigImm;
771 return SysRegPairs[i].Value;
780 return CycloneSysRegPairs[i].Value;
790 return InstPairs[i].Value;
820 if (SysRegPairs[i].Value
[all...]
/external/llvm/lib/Target/Mips/MCTargetDesc/
H A DMipsAsmBackend.cpp33 static unsigned adjustFixupValue(const MCFixup &Fixup, uint64_t Value, argument
65 Value -= 4;
67 // address range. Forcing a signed division because Value can be negative.
68 Value = (int64_t)Value / 4;
69 // We now check if Value can be encoded as a 16-bit signed immediate.
70 if (!isIntN(16, Value) && Ctx)
74 // Forcing a signed division because Value can be negative.
75 Value = (int64_t)Value /
166 applyFixup(const MCFixup &Fixup, char *Data, unsigned DataSize, uint64_t Value, bool IsPCRel) const argument
380 processFixupValue(const MCAssembler &Asm, const MCAsmLayout &Layout, const MCFixup &Fixup, const MCFragment *DF, const MCValue &Target, uint64_t &Value, bool &IsResolved) argument
[all...]
/external/llvm/lib/Target/PowerPC/InstPrinter/
H A DPPCInstPrinter.cpp205 unsigned int Value = MI->getOperand(OpNo).getImm(); local
206 assert(Value <= 3 && "Invalid u2imm argument!");
207 O << (unsigned int)Value;
212 int Value = MI->getOperand(OpNo).getImm(); local
213 Value = SignExtend32<5>(Value);
214 O << (int)Value;
219 unsigned int Value = MI->getOperand(OpNo).getImm(); local
220 assert(Value <= 31 && "Invalid u5imm argument!");
221 O << (unsigned int)Value;
226 unsigned int Value = MI->getOperand(OpNo).getImm(); local
[all...]
/external/llvm/lib/Transforms/Scalar/
H A DCorrelatedValuePropagation.cpp10 // This file implements the Correlated Value Propagation pass.
62 "Value Propagation", false, false)
65 "Value Propagation", false, false)
67 // Public interface to the Value Propagation pass
82 Value *ReplaceWith = S->getOperand(1);
83 Value *Other = S->getOperand(2);
100 Value *Incoming = P->getIncomingValue(i);
103 Value *V = LVI->getConstantOnEdge(Incoming, P->getIncomingBlock(i), BB);
129 if (Value *V = SimplifyInstruction(P)) {
142 Value *Pointe
231 LazyValueInfo::Tristate Value = LVI->getPredicateOnEdge(CmpInst::ICMP_EQ, local
[all...]
/external/llvm/utils/TableGen/
H A DCodeEmitterGen.cpp176 Case += " Value |= (op & UINT64_C(" + utostr(opMask) + ")) << " +
179 Case += " Value |= (op & UINT64_C(" + utostr(opMask) + ")) >> " +
182 Case += " Value |= op & UINT64_C(" + utostr(opMask) + ");\n";
225 Case += " Value = " + PostEmitter + "(MI, Value";
271 uint64_t Value = 0; local
274 Value |= (uint64_t)B->getValue() << (e-i-1);
276 o << " UINT64_C(" << Value << ")," << '\t' << "// " << R->getName() << "\n";
299 << " uint64_t Value = InstBits[opcode];\n"
327 << " return Value;\
[all...]
H A DDAGISelMatcher.cpp194 OS.indent(indent) << "CheckInteger " << Value << '\n';
199 OS.indent(indent) << "CheckChildInteger " << ChildNo << " " << Value << '\n'; local
215 OS.indent(indent) << "CheckAndImm " << Value << '\n';
219 OS.indent(indent) << "CheckOrImm " << Value << '\n';
/external/mesa3d/src/gallium/drivers/radeon/MCTargetDesc/
H A DAMDGPUAsmBackend.cpp49 uint64_t Value) const { assert(!"Not implemented"); }
50 virtual bool fixupNeedsRelaxation(const MCFixup &Fixup, uint64_t Value, argument
/external/proguard/src/proguard/evaluation/value/
H A DValue.java28 public abstract class Value class
44 * Returns this Value as a Category1Value.
48 throw new IllegalArgumentException("Value is not a Category 1 value [" + this.getClass().getName() + "]");
52 * Returns this Value as a Category2Value.
56 throw new IllegalArgumentException("Value is not a Category 2 value [" + this.getClass().getName() + "]");
61 * Returns this Value as an IntegerValue.
65 throw new IllegalArgumentException("Value is not an integer value [" + this.getClass().getName() + "]");
69 * Returns this Value as a LongValue.
73 throw new IllegalArgumentException("Value is not a long value [" + this.getClass().getName() + "]");
77 * Returns this Value a
[all...]
/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Dmutable-fst.h133 // StdArc arc = aiter.Value();
151 const Arc& Value() const { return data_.base->Value(); } function in class:fst::MutableArcIterator
/external/llvm/lib/IR/
H A DValue.cpp1 //===-- Value.cpp - Implement the Value class -----------------------------===//
10 // This file implements the Value, ValueHandle, and User classes.
14 #include "llvm/IR/Value.h"
37 // Value Class
41 assert(Ty && "Value defined with a null type: Error!");
45 Value::Value(Type *ty, unsigned scid) function in class:Value
60 Value::~Value() {
[all...]
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Collections/
H A DHashList.cs59 Value, enumerator in enum:Antlr.Runtime.Collections.HashList.HashListEnumerator.EnumerationMode
106 public object Value property in class:Antlr.Runtime.Collections.HashList.HashListEnumerator
156 else if (_mode == EnumerationMode.Value)
301 IEnumerator iter = new HashListEnumerator(_hashList, HashListEnumerator.EnumerationMode.Value);
344 return new HashListEnumerator(_hashList, HashListEnumerator.EnumerationMode.Value);
/external/chromium_org/base/
H A Dvalues.h5 // This file specifies a recursive data storage class called Value intended for
8 // A Value represents something that can be stored in JSON or passed to/from
40 class Value;
42 typedef std::vector<Value*> ValueVector;
43 typedef std::map<std::string, Value*> ValueMap;
45 // The Value class is the base class for Values. A Value can be instantiated
46 // via the Create*Value() factory methods, or by directly creating instances of
50 class BASE_EXPORT Value { class in namespace:base
64 virtual ~Value();
[all...]
/external/chromium_org/cc/animation/
H A Dkeyframed_animation_curve.cc71 SkColor ColorKeyframe::Value() const { return value_; } function in class:cc::ColorKeyframe
77 return ColorKeyframe::Create(Time(), Value(), func.Pass());
96 float FloatKeyframe::Value() const { function in class:cc::FloatKeyframe
104 return FloatKeyframe::Create(Time(), Value(), func.Pass());
123 const TransformOperations& TransformKeyframe::Value() const { function in class:cc::TransformKeyframe
131 return TransformKeyframe::Create(Time(), Value(), func.Pass());
150 const FilterOperations& FilterKeyframe::Value() const { function in class:cc::FilterKeyframe
158 return FilterKeyframe::Create(Time(), Value(), func.Pass());
189 return keyframes_.front()->Value();
192 return keyframes_.back()->Value();
[all...]

Completed in 5127 milliseconds

1234567891011>>