HomeSort by relevance Sort by last modified time
    Searched refs:Value (Results 276 - 300 of 2613) sorted by null

<<11121314151617181920>>

  /external/llvm/lib/Target/ARM/MCTargetDesc/
ARMAsmBackend.h 41 /// processFixupValue - Target hook to process the literal value of a fixup
45 const MCValue &Target, uint64_t &Value,
48 unsigned adjustFixupValue(const MCFixup &Fixup, uint64_t Value, bool IsPCRel,
53 uint64_t Value, bool IsPCRel) const override;
60 uint64_t Value) const;
62 bool fixupNeedsRelaxation(const MCFixup &Fixup, uint64_t Value,
  /external/llvm/tools/llvm-diff/
DifferenceEngine.h 31 class Value;
38 Context(DifferenceEngine &Engine, Value *L, Value *R) : Engine(Engine) {
55 virtual bool operator()(Value *L, Value *R) = 0;
  /external/proguard/src/proguard/evaluation/
Stack.java 23 import proguard.evaluation.value.*;
28 * This class represents an operand stack that contains <code>Value</code>
38 protected Value[] values;
49 values = new Value[maxSize];
85 values = new Value[maxSize];
104 values = new Value[other.values.length];
133 Value thisValue = this.values[index];
137 Value newValue = null;
139 Value otherValue = other.values[index];
185 * Gets the specified Value from the stack, without disturbing it
273 Value value = values[--currentSize]; local
535 Value value = values[index]; local
552 Value value = values[index]; local
    [all...]
  /external/vulkan-validation-layers/libs/glm/detail/
func_integer.hpp 49 /// modulo pow(2, 32). The value carry is set to 0 if the sum was
64 /// otherwise. The value borrow is set to 0 if x >= y, or to 1 otherwise.
106 /// Extracts bits [offset, offset + bits - 1] from value,
110 /// most significant bits will be set to the value of bit offset + base - 1.
123 genIUType const & Value,
148 /// Returns the reversal of the bits of value.
149 /// The bit numbered n of the result will be taken from bit (bits - 1) - n of value,
150 /// where bits is the total number of bits used to represent value.
157 GLM_FUNC_DECL genIUType bitfieldReverse(genIUType const & Value);
159 /// Returns the number of bits set to 1 in the binary representation of value
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p10/src/
omxVCM4P10_InvTransformResidualAndAdd.c 62 * Return Value:
85 OMX_S32 Value;
124 Value = (OMX_S32) Out [j * 4 + i] + pSrcPred [j * iSrcPredStep + i];
126 /* Saturate Value to OMX_U8 */
127 Value = armClip (0, 255, Value);
129 pDstRecon[j * iDstReconStep + i] = (OMX_U8) Value;
omxVCM4P10_TransformDequantChromaDCFromPair.c 51 int i, Value;
57 Value = (pDst[i] * Scale) << Shift;
58 pDst[i] = (OMX_S16)Value;
65 Value = (pDst[i] * Scale) >> 1;
66 pDst[i] = (OMX_S16)Value;
117 * Return Value:
  /prebuilts/gdb/darwin-x86/lib/python2.7/ctypes/test/
test_array_in_pointer.py 13 class Value(Structure):
17 _fields_ = [("pvalues", POINTER(Value))]
22 val_array = (Value * 4)()
45 val_array = (Value * 4)()
50 ptr = cast(val_array, POINTER(Value))
  /prebuilts/gdb/linux-x86/lib/python2.7/ctypes/test/
test_array_in_pointer.py 13 class Value(Structure):
17 _fields_ = [("pvalues", POINTER(Value))]
22 val_array = (Value * 4)()
45 val_array = (Value * 4)()
50 ptr = cast(val_array, POINTER(Value))
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/test/
test_array_in_pointer.py 13 class Value(Structure):
17 _fields_ = [("pvalues", POINTER(Value))]
22 val_array = (Value * 4)()
45 val_array = (Value * 4)()
50 ptr = cast(val_array, POINTER(Value))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/test/
test_array_in_pointer.py 13 class Value(Structure):
17 _fields_ = [("pvalues", POINTER(Value))]
22 val_array = (Value * 4)()
45 val_array = (Value * 4)()
50 ptr = cast(val_array, POINTER(Value))
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/StackFrame/
GetValues002Test.java 21 import org.apache.harmony.jpda.tests.framework.jdwp.Value;
28 * Tests we correctly read value of boolean variable in the stack.
35 Value oldValue = new Value(StackTrace002Debuggee.BOOLEAN_PARAM_VALUE);
44 * Tests we correctly read value of byte variable in the stack.
51 Value expectedValue = new Value(StackTrace002Debuggee.BYTE_PARAM_VALUE);
60 * Tests we correctly read value of char variable in the stack.
67 Value expectedValue = new Value(StackTrace002Debuggee.CHAR_PARAM_VALUE)
    [all...]
  /external/clang/lib/CodeGen/
CGValue.h 1 //===-- CGValue.h - LLVM CodeGen wrappers for llvm::Value* ------*- C++ -*-===//
10 // These classes implement wrappers around llvm::Value in order to
20 #include "llvm/IR/Value.h"
34 /// RValue - This trivial value class is used to represent the result of an
36 /// simple LLVM SSA value, a pair of SSA values for complex numbers, or the
37 /// address of an aggregate value in memory.
45 // Stores first value and flavor.
46 llvm::PointerIntPair<llvm::Value *, 2, Flavor> V1;
47 // Stores second value and volatility.
48 llvm::PointerIntPair<llvm::Value *, 1, bool> V2
    [all...]
CGOpenMPRuntime.h 33 class Value;
196 typedef llvm::DenseMap<unsigned, llvm::Value *> OpenMPDefaultLocMapTy;
244 typedef llvm::DenseMap<unsigned, llvm::Value *> OpenMPDebugLocMapTy;
252 llvm::Value *DebugLoc;
253 llvm::Value *ThreadID;
299 llvm::Value *emitUpdateLocation(CodeGenFunction &CGF, SourceLocation Loc,
340 /// \brief Gets thread id value for the current thread.
342 llvm::Value *getThreadID(CodeGenFunction &CGF, SourceLocation Loc);
346 /// linkage CommonLinkage by default and is initialized by null value.
363 llvm::Value *Ctor, llvm::Value *CopyCtor
    [all...]
  /external/v8/src/
d8.h 67 return reinterpret_cast<Counter*>(answer->value);
69 void Set(const char* name, Counter* value) {
73 answer->value = value;
82 Counter* CurrentValue() { return static_cast<Counter*>(entry_->value); }
195 T value; local
196 ReadMemory(&value, sizeof(value), offset);
197 return value;
260 static void PostMessageOut(const v8::FunctionCallbackInfo<v8::Value>& args)
    [all...]
  /external/llvm/lib/IR/
Value.cpp 1 //===-- Value.cpp - Implement the Value class -----------------------------===//
10 // This file implements the Value, ValueHandle, and User classes.
14 #include "llvm/IR/Value.h"
40 // Value Class
43 assert(Ty && "Value defined with a null type: Error!");
47 Value::Value(Type *ty, unsigned scid)
63 Value::~Value() {
    [all...]
  /external/llvm/test/tools/llvm-readobj/ARM/
attribute-2.s 7 @CHECK-OBJ-NEXT: Value: 2
14 @CHECK-OBJ-NEXT: Value: 2
21 @CHECK-OBJ-NEXT: Value: 2
28 @CHECK-OBJ-NEXT: Value: 2
35 @CHECK-OBJ-NEXT: Value: 2
42 @CHECK-OBJ-NEXT: Value: 2
49 @CHECK-OBJ-NEXT: Value: 2
56 @CHECK-OBJ-NEXT: Value: 2
63 @CHECK-OBJ-NEXT: Value: 2
70 @CHECK-OBJ-NEXT: Value:
    [all...]
  /build/kati/
expr.cc 40 Value::Value() {
43 Value::~Value() {
46 string Value::DebugString() const {
47 if (static_cast<const Value*>(this)) {
53 class Literal : public Value {
76 class Expr : public Value {
82 for (Value* v : vals_) {
88 void AddValue(Value* v)
191 const string&& value = v->Eval(ev); variable
    [all...]
  /external/llvm/test/MC/ARM/
directive-eabi_attribute.s 15 @ CHECK-OBJ-NEXT: Value: 2.09
20 @ CHECK-OBJ-NEXT: Value: Cortex-A9
25 @ CHECK-OBJ-NEXT: Value: cortex-a9
29 @ CHECK-OBJ-NEXT: Value: 10
35 @ CHECK-OBJ-NEXT: Value: 65
41 @ CHECK-OBJ-NEXT: Value: 0
47 @ CHECK-OBJ-NEXT: Value: 2
53 @ CHECK-OBJ-NEXT: Value: 3
59 @ CHECK-OBJ-NEXT: Value: 0
65 @ CHECK-OBJ-NEXT: Value:
    [all...]
  /external/v8/test/unittests/
atomic-utils-unittest.cc 18 EXPECT_EQ(0, zero_int.Value());
19 EXPECT_EQ(0U, zero_size_t.Value());
20 EXPECT_EQ(0, zero_intptr_t.Value());
24 TEST(AtomicNumber, Value) {
26 EXPECT_EQ(1, a.Value());
28 EXPECT_EQ(-1, b.Value());
30 EXPECT_EQ(1U, c.Value());
32 EXPECT_EQ(std::numeric_limits<size_t>::max(), d.Value());
39 EXPECT_EQ(-1, a.Value());
46 EXPECT_EQ(std::numeric_limits<int>::min(), a.Value());
    [all...]
  /external/chromium-trace/catapult/tracing/tracing/value/
value_unittest.py 6 from tracing import value as value_module
17 'value': {'a': 1, 'b': 'b'}
19 v = value_module.Value.FromDict(d)
31 'value': {'a': 1, 'b': 'b'}
33 v = value_module.Value.FromDict(d)
48 v = value_module.Value.FromDict(d)
  /external/jsoncpp/include/json/
reader.h 11 #include "value.h"
28 *Value.
58 /** \brief Read a Value from a <a HREF="http://www.json.org">JSON</a>
61 * \param root [out] Contains the root value of the document if it was
73 parse(const std::string& document, Value& root, bool collectComments = true);
75 /** \brief Read a Value from a <a HREF="http://www.json.org">JSON</a>
82 * \param root [out] Contains the root value of the document if it was
95 Value& root,
99 /// \see Json::operator>>(std::istream&, Json::Value&).
100 bool parse(std::istream& is, Value& root, bool collectComments = true)
    [all...]
  /external/llvm/examples/BrainF/
BrainF.h 84 Value *ptr_arr;
85 Value *ptr_arrmax;
91 Value *curhead;
  /external/llvm/include/llvm/IR/
UseListOrder.h 26 class Value;
30 const Value *V;
34 UseListOrder(const Value *V, const Function *F, size_t ShuffleSize)
  /external/llvm/include/llvm-c/Transforms/
PassManagerBuilder.h 49 LLVMBool Value);
54 LLVMBool Value);
59 LLVMBool Value);
  /external/llvm/lib/MC/MCDisassembler/
MCExternalSymbolizer.cpp 24 // Value in the MCInst. The immediate Value has had any PC adjustment made by
31 // and IsBranch is true then a symbol look up for Value is done and if a symbol
32 // is found an MCExpr is created with that, else an MCExpr with Value is
37 int64_t Value,
44 SymbolicOp.Value = Value;
48 // Clear SymbolicOp.Value from above and also all other fields.
53 // if the Value is the address of a symbol. In the case this is a branch
56 // reference. So if the immediate Value comes from a width of 1 byte
    [all...]

Completed in 1114 milliseconds

<<11121314151617181920>>