HomeSort by relevance Sort by last modified time
    Searched defs:Value (Results 76 - 100 of 184) sorted by null

1 2 34 5 6 7 8

  /external/llvm/bindings/ocaml/executionengine/
executionengine_ocaml.c 34 CAMLprim value llvm_initialize_native_target(value Unit) {
40 static value llvm_ee_error_exn;
42 CAMLprim value llvm_register_ee_exns(value Error) {
48 static void llvm_raise(value Prototype, char *Message) {
67 static void llvm_finalize_generic_value(value GenVal) {
80 static value alloc_generic_value(LLVMGenericValueRef Ref) {
81 value Val = alloc_custom(&generic_value_ops, sizeof(LLVMGenericValueRef), 0, 1);
87 CAMLprim value llvm_genericvalue_of_float(LLVMTypeRef Ty, value N)
    [all...]
  /external/llvm/include/llvm/Object/
COFF.h 45 support::ulittle32_t Value;
  /external/llvm/include/llvm/Support/
Endian.h 62 static void write_le(void *memory, value_type value) {
64 value = sys::SwapByteOrder(value);
66 (memory)->val = value;
80 static void write_be(void *memory, value_type value) {
82 value = sys::SwapByteOrder(value);
84 (memory)->val = value;
99 return endian::read_le<value_type, unaligned>(Value);
102 uint8_t Value[sizeof(value_type)]
    [all...]
ValueHandle.h 1 //===- llvm/Support/ValueHandle.h - Value Smart Pointer classes -*- C++ -*-===//
19 #include "llvm/Value.h"
35 /// ValueHandleBase - This is the common base class of value handles.
36 /// ValueHandle's are smart pointers to Value's that have special behavior when
37 /// the value is deleted or ReplaceAllUsesWith'd. See the specific handles
41 friend class Value;
56 Value *VP;
62 ValueHandleBase(HandleBaseKind Kind, Value *V)
77 Value *operator=(Value *RHS)
262 static const bool value = true; member in struct:llvm::isPodLike
    [all...]
  /external/llvm/include/llvm/
Use.h 11 // instruction or some other User instance which refers to a Value. The Use
12 // class keeps the "use list" of the referenced value up to date.
34 class Value;
55 /// Use is here to make keeping the "use" list of a Value up-to-date really
87 /// Normally Use will just implicitly convert to a Value* that it holds.
88 operator Value*() const { return Val; }
90 /// If implicit conversion to Value* doesn't work, the get() method returns
91 /// the Value*.
92 Value *get() const { return Val; }
98 inline void set(Value *Val)
    [all...]
Value.h 1 //===-- llvm/Value.h - Definition of the Value class ------------*- C++ -*-===//
10 // This file declares the Value class.
35 template <typename ValueTy = Value>
37 typedef StringMapEntry<Value*> ValueName;
47 // Value Class
51 /// computed by a program that may be used as operands to other values. Value is
53 /// All Values have a Type. Type is not a subclass of Value. Some values can
54 /// have a name and they belong to some Module. Setting the name on the Value
57 /// Every value has a "use list" that keeps track of which other Values ar
    [all...]
  /external/llvm/lib/CodeGen/
ELF.h 56 // getGlobalValue - If this is a global value which originated the
59 assert(SourceType == isGV && "This is not a global value");
70 // getGV - From a global value return a elf symbol to represent it
129 uint64_t Value;
138 ELFSym() : SourceType(isOther), NameIdx(0), Value(0),
148 assert(X == (X & 0xF) && "Bind value out of range!");
153 assert(X == (X & 0xF) && "Type value out of range!");
158 assert(V == (V & 0x3) && "Visibility value out of range!");
  /external/llvm/lib/MC/
MCExpr.cpp 155 const MCConstantExpr *MCConstantExpr::Create(int64_t Value, MCContext &Ctx) {
156 return new (Ctx) MCConstantExpr(Value);
268 MCValue Value;
280 EvaluateAsRelocatableImpl(Value, Asm, Layout, Addrs, /*InSet*/ Addrs);
282 // Record the current value.
283 Res = Value.getConstant();
285 return IsRelocatable && Value.isAbsolute();
466 MCValue Value;
468 if (!AUE->getSubExpr()->EvaluateAsRelocatableImpl(Value, Asm, Layout,
474 if (!Value.isAbsolute()
    [all...]
  /external/llvm/lib/MC/MCParser/
ELFAsmParser.cpp 544 const MCExpr *Value = MCSymbolRefExpr::Create(Sym, getContext());
546 getStreamer().EmitAssignment(Alias, Value);
  /external/llvm/lib/Target/
TargetData.cpp 332 StructLayout *Value = I->second;
333 Value->~StructLayout();
334 free(Value);
533 ArrayRef<Value *> Indices) const {
538 generic_gep_type_iterator<Value* const*>
  /external/llvm/utils/TableGen/
RegisterInfoEmitter.cpp 54 "Register enum value mismatch!");
216 unsigned Value = 0;
218 Value |= Bits.test(i + j) << j;
219 OS << format("0x%0*x, ", Digits, Value);
338 // Emit the register enum value arrays for each RegisterClass
521 << " Register Class Value Types...\n"
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
complement.h 194 virtual StateId Value() const { return s_; }
236 virtual const A& Value() const {
242 arc_ = aiter_->Value();
const-fst.h 131 StateId s = siter.Value();
149 const A &arc = aiter.Value();
347 StateId Value() const { return s_; }
373 const A& Value() const { return arcs_[i_]; }
partition.h 41 Element() : value(0), next(0), prev(0) {}
42 Element(T v) : value(v), next(0), prev(0) {}
44 T value; member in struct:fst::Partition::Element
183 class_index_[el->value] = new_class;
264 const T Value() {
265 return (element_->value);
relabel.h 64 StateId s = siter.Value();
67 A arc = aiter.Value();
112 ipairs.push_back(make_pair(syms_iter.Value(),
122 opairs.push_back(make_pair(syms_iter.Value(),
211 input_map_[syms_iter.Value()] = new_isymbols->Find(syms_iter.Symbol());
221 output_map_[syms_iter.Value()] =
276 A arc = aiter.Value();
419 StateId Value() const { return s_; }
string-weight.h 168 const L& Value() const { return init_ ? first_ : *iter_; }
200 const L& Value() const { return iter_ == rest_.rend() ? first_ : *iter_; }
243 L label = iter.Value();
254 return iter.Value() != kStringBad;
262 rw.PushFront(iter.Value());
270 h ^= h<<1 ^ iter.Value();
282 // PushBack(iter.Value());
297 if (iter1.Value() != iter2.Value())
321 else if (iter.Value() == kStringInfinity
    [all...]
symbol-table.h 181 // keeps track of the last available key (highest key value in
192 // Add a symbol to the table. The associated value key is automatically
196 // \return the value key assigned to the associated string symbol
202 // by the current available key (highest key value in the symbol table).
203 // Note string symbols with the same key value with still have the same
204 // key value after the symbol table has been merged, but a different
205 // value. Adding symbol tables do not result in changes in the base table.
344 // return the Value() of the current symbol (in64 key)
345 int64 Value(void) {
  /external/v8/tools/
stats-viewer.py 148 value = counter.Value()
150 counter_changed = ui_counter.Set(value)
239 value = Tkinter.Label(self.root, width=15, anchor=Tkinter.W,
241 value.grid(row=index, column=(1 + i), padx=1, pady=1)
251 ui_counter.Set(counter.Value())
280 def Set(self, value):
284 value: The value to display
287 True if the value had changed, otherwise False. The first cal
    [all...]
  /external/webkit/Source/JavaScriptCore/runtime/
PropertySlot.h 45 Value
91 bool isCacheableValue() const { return m_cachedPropertyType == Value; }
98 void setValue(JSValue slotBase, JSValue value)
100 ASSERT(value);
104 m_value = value;
107 void setValue(JSValue slotBase, JSValue value, size_t offset)
109 ASSERT(value);
112 m_value = value;
114 m_cachedPropertyType = Value;
117 void setValue(JSValue value)
    [all...]
  /frameworks/base/graphics/java/android/renderscript/
Sampler.java 36 public enum Value {
45 Value(int id) {
50 Value mMin;
51 Value mMag;
52 Value mWrapS;
53 Value mWrapT;
54 Value mWrapR;
65 public Value getMinification() {
73 public Value getMagnification() {
81 public Value getWrapS()
    [all...]
  /external/clang/include/clang/AST/
TemplateBase.h 45 /// The template argument is a type. Its value is stored in the
51 /// The template argument is an integral value stored in an llvm::APSInt
60 /// The template argument is a value- or type-dependent expression
75 char Value[sizeof(llvm::APSInt)];
108 TemplateArgument(const llvm::APSInt &Value, QualType Type) : Kind(Integral) {
111 new (Integer.Value) llvm::APSInt(Value);
173 new (Integer.Value) llvm::APSInt(*Other.getAsIntegral());
195 // Destroy the current integral value, if that's what we're holding.
202 new (Integer.Value) llvm::APSInt(*Other.getAsIntegral())
    [all...]
VTableBuilder.h 99 return (Kind)(Value & 0x7);
152 Value = ((Offset.getQuantity() << 3) | ComponentKind);
165 Value = Ptr | ComponentKind;
172 return CharUnits::fromQuantity(Value >> 3);
183 return static_cast<uintptr_t>(Value & ~7ULL);
186 explicit VTableComponent(uint64_t Value)
187 : Value(Value) { }
189 /// The kind is stored in the lower 3 bits of the value. For offsets, we
194 int64_t Value;
    [all...]
  /external/clang/lib/Lex/
PPMacroExpansion.cpp 333 // an argument value in a macro could expand to ',' or '(' or ')'.
356 // an argument value in a macro could expand to ',' or '(' or ')'.
799 // Get the result value. Result = true means the file exists.
    [all...]
  /external/clang/test/CXX/dcl.decl/dcl.init/dcl.init.ref/
p5-0x.cpp 108 double& rd3 = i; // expected-error{{non-const lvalue reference to type 'double' cannot bind to a value of unrelated type 'int'}}
126 const int& r2 = cvi; // expected-error{{binding of reference to type 'const int' to a value of type 'const volatile int' drops qualifiers}}
184 class Value {
187 operator Value &() const ;
191 Value x = Move(0);
192 Value y(Move(0));
  /external/llvm/include/llvm/Analysis/
MemoryDependenceAnalysis.h 46 /// clobbers the desired value. The pointer member of the MemDepResult
62 /// load/store. The value loaded or stored is the produced value.
68 /// this case, the load is loading an undef value or a store is the
98 PairTy Value;
99 explicit MemDepResult(PairTy V) : Value(V) {}
101 MemDepResult() : Value(0, Invalid) {}
128 bool isClobber() const { return Value.getInt() == Clobber; }
132 bool isDef() const { return Value.getInt() == Def; }
138 return Value.getInt() == Othe
    [all...]

Completed in 4400 milliseconds

1 2 34 5 6 7 8