HomeSort by relevance Sort by last modified time
    Searched defs:Value (Results 1 - 25 of 375) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/yasm/source/patched-yasm/tools/python-yasm/
value.pxi 1 # Python bindings for Yasm: Pyrex input file for value.h
26 cdef class Value:
27 cdef yasm_value value
28 def __cinit__(self, value=None, size=None):
35 yasm_value_initialize(&self.value, NULL, sz)
36 if value is None:
38 elif isinstance(value, Expression):
39 yasm_value_initialize(&self.value,
40 yasm_expr_copy((<Expression>value).expr), sz)
41 elif isinstance(value, Symbol)
    [all...]
  /external/clang/test/CodeGen/
typedef.c 3 typedef struct { int i; } Value;
4 typedef Value *PValue;
  /external/lzma/CPP/7zip/UI/Common/
Property.h 11 UString Value;
  /ndk/tests/device/test-cxx-init-array/jni/
global_ctor.h 7 int Value;
14 return (Value == 42);
  /external/chromium_org/tools/gn/
value.cc 5 #include "tools/gn/value.h"
9 Value::Value()
15 Value::Value(const ParseNode* origin, Type t)
21 Value::Value(const ParseNode* origin, int64 int_val)
27 Value::Value(const ParseNode* origin, const base::StringPiece& str_val)
34 Value::~Value()
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p10/src/
armVCM4P10_UnpackBlock2x2.c 41 int Flag, Value;
54 Value = *pSrc++;
55 Value = Value | ((*pSrc++)<<8);
56 if (Value & 0x8000)
58 Value -= 0x10000;
64 Value = *pSrc++;
65 if (Value & 0x80)
67 Value -= 0x100;
71 pDst[i] = (OMX_S16)Value;
    [all...]
armVCM4P10_UnpackBlock4x4.c 41 int Flag, Value;
54 Value = *pSrc++;
55 Value = Value | ((*pSrc++)<<8);
56 if (Value & 0x8000)
58 Value -= 0x10000;
64 Value = *pSrc++;
65 if (Value & 0x80)
67 Value -= 0x100;
71 pDst[i] = (OMX_S16)Value;
    [all...]
omxVCM4P10_InvTransformResidualAndAdd.c 47 * Return Value:
70 OMX_S32 Value;
109 Value = (OMX_S32) Out [j * 4 + i] + pSrcPred [j * iSrcPredStep + i];
111 /* Saturate Value to OMX_U8 */
112 Value = armClip (0, 255, Value);
114 pDstRecon[j * iDstReconStep + i] = (OMX_U8) Value;
  /frameworks/base/media/mca/filterfw/native/core/
value.h 29 void* value; member in struct:__anon31996
32 } Value;
34 // TODO: Probably should make these const Value*?
35 int GetIntValue(Value value);
36 float GetFloatValue(Value value);
37 const char* GetStringValue(Value value);
38 const char* GetBufferValue(Value value)
    [all...]
  /art/compiler/utils/
scoped_hashtable_test.cc 24 class Value {
26 explicit Value(int v):value_(v) {}
34 ScopedHashtable<int, Value*> sht;
47 sht.Add(1, new Value(1));
50 sht.Add(1, new Value(2));
56 sht.Add(1, new Value(3));
59 sht.Add(2, new Value(4));
  /external/clang/test/CodeGenCXX/
debug-info-union-template.cpp 6 template <typename T> union Value { int a; };
7 void g(float value) {
8 Value<float> tempValue;
10 Value<float> f;
13 // CHECK: {{.*}}, metadata !"Value<float>", {{.*}}, null, metadata [[TTPARAM:.*]]} ; [ DW_TAG_union_type ] [Value<float>]
  /external/clang/unittests/ASTMatchers/Dynamic/
VariantValueTest.cpp 24 VariantValue Value = kUnsigned;
26 EXPECT_TRUE(Value.isUnsigned());
27 EXPECT_EQ(kUnsigned, Value.getUnsigned());
29 EXPECT_FALSE(Value.isString());
30 EXPECT_FALSE(Value.isMatchers());
31 EXPECT_FALSE(Value.hasTypedMatcher<Decl>());
32 EXPECT_FALSE(Value.hasTypedMatcher<UnaryOperator>());
37 VariantValue Value = kString;
39 EXPECT_TRUE(Value.isString());
40 EXPECT_EQ(kString, Value.getString())
    [all...]
  /external/compiler-rt/lib/ubsan/
ubsan_value.cc 10 // Representation of a runtime value, as marshaled from the generated code to
21 SIntMax Value::getSIntValue() const {
42 UIntMax Value::getUIntValue() const {
58 UIntMax Value::getPositiveIntValue() const {
66 /// Get the floating-point value of this object, extended to a long double.
69 FloatMax Value::getFloatValue() const {
77 __fp16 Value;
78 internal_memcpy(&Value, &Val, 4);
79 return Value;
83 float Value;
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/platform/
HashTools.h 35 struct Value {
42 const Value* findValue(register const char* str, register unsigned int len);
  /external/chromium_org/third_party/leveldatabase/src/util/
crc32c.h 20 inline uint32_t Value(const char* data, size_t n) {
  /external/chromium_org/third_party/protobuf/python/google/protobuf/internal/
enum_type_wrapper.py 52 """Returns a string containing the name of an enum value."""
55 raise ValueError('Enum %s has no name defined for value %d' % (
58 def Value(self, name):
59 """Returns the value coresponding to the given enum name."""
62 raise ValueError('Enum %s has no value defined for name %s' % (
84 """Return a list of the (name, value) pairs of the enum.
  /external/chromium_org/v8/src/
token.h 190 enum Value {
198 static const char* Name(Value tok) {
204 static bool IsKeyword(Value tok) {
208 static bool IsAssignmentOp(Value tok) {
212 static bool IsBinaryOp(Value op) {
216 static bool IsCompareOp(Value op) {
220 static bool IsOrderedRelationalCompareOp(Value op) {
224 static bool IsEqualityOp(Value op) {
228 static bool IsInequalityOp(Value op) {
232 static bool IsArithmeticCompareOp(Value op)
    [all...]
  /external/clang/include/clang/Basic/
MacroBuilder.h 29 /// Append a \#define line for macro of the form "\#define Name Value\n".
30 void defineMacro(const Twine &Name, const Twine &Value = "1") {
31 Out << "#define " << Name << ' ' << Value << '\n';
  /external/llvm/include/llvm/Support/
LEB128.h 22 /// Utility function to encode a SLEB128 value to an output stream.
23 inline void encodeSLEB128(int64_t Value, raw_ostream &OS) {
26 uint8_t Byte = Value & 0x7f;
28 Value >>= 7;
29 More = !((((Value == 0 ) && ((Byte & 0x40) == 0)) ||
30 ((Value == -1) && ((Byte & 0x40) != 0))));
37 /// Utility function to encode a ULEB128 value to an output stream.
38 inline void encodeULEB128(uint64_t Value, raw_ostream &OS,
41 uint8_t Byte = Value & 0x7f;
42 Value >>= 7
    [all...]
  /external/llvm/unittests/ADT/
SparseSetTest.cpp 162 unsigned Value;
163 explicit Alt(unsigned x) : Value(x) {}
164 unsigned getSparseSetIndex() const { return Value - 1000; }
175 EXPECT_EQ(1005u, I->Value);
181 EXPECT_EQ(1006u, I->Value);
ilistTest.cpp 21 int Value;
24 Node(int _Value) : Value(_Value) {}
25 ~Node() { Value = -1; }
31 EXPECT_EQ(1, List.back().Value);
36 EXPECT_EQ(2, List.back().Value);
37 EXPECT_EQ(2, List.front().getNextNode()->Value);
38 EXPECT_EQ(1, List.back().getPrevNode()->Value);
41 EXPECT_EQ(2, ConstList.back().Value);
42 EXPECT_EQ(2, ConstList.front().getNextNode()->Value);
43 EXPECT_EQ(1, ConstList.back().getPrevNode()->Value);
    [all...]
  /external/lzma/CPP/7zip/Common/
MethodProps.h 15 NWindows::NCOM::CPropVariant Value;
  /external/v8/src/
token.h 188 enum Value {
196 static const char* Name(Value tok) {
202 static bool IsKeyword(Value tok) {
206 static bool IsAssignmentOp(Value tok) {
210 static bool IsBinaryOp(Value op) {
214 static bool IsCompareOp(Value op) {
218 static bool IsOrderedRelationalCompareOp(Value op) {
222 static bool IsEqualityOp(Value op) {
226 static Value NegateCompareOp(Value op)
    [all...]
  /external/webrtc/src/system_wrappers/source/
atomic32_mac.cc 40 WebRtc_Word32 Atomic32::operator+=(WebRtc_Word32 value)
42 return OSAtomicAdd32Barrier(value, &_value);
45 WebRtc_Word32 Atomic32::operator-=(WebRtc_Word32 value)
47 return OSAtomicAdd32Barrier(-value, &_value);
56 WebRtc_Word32 Atomic32::Value() const
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p10/src/
armVCM4P10_UnpackBlock4x4_s.s 35 Value RN 4
50 MOV Value, #0 ;// Initialize the zero value
51 MOV Value2, #0 ;// Initialize the zero value
54 STRD Value, [pDst, #0] ;// pDst[0] = pDst[1] = pDst[2] = pDst[3] = 0
55 STRD Value, [pDst, #8] ;// pDst[4] = pDst[5] = pDst[6] = pDst[7] = 0
56 STRD Value, [pDst, #16] ;// pDst[8] = pDst[9] = pDst[10] = pDst[11] = 0
57 STRD Value, [pDst, #24] ;// pDst[12] = pDst[13] = pDst[14] = pDst[15] = 0
66 ;// Next, to compute the offset, where the unpacked value needs to be stored,
74 LDRBNE Value, [pSrc], #2
    [all...]

Completed in 423 milliseconds

1 2 3 4 5 6 7 8 91011>>