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

1 2 3 4 5 6 7 8

  /external/clang/test/CodeGen/
typedef.c 3 typedef struct { int i; } Value;
4 typedef Value *PValue;
  /external/llvm/unittests/ADT/
ilistTest.cpp 20 int Value;
23 Node(int _Value) : Value(_Value) {}
29 EXPECT_EQ(1, List.back().Value);
34 EXPECT_EQ(2, List.back().Value);
35 EXPECT_EQ(2, List.front().getNextNode()->Value);
36 EXPECT_EQ(1, List.back().getPrevNode()->Value);
39 EXPECT_EQ(2, ConstList.back().Value);
40 EXPECT_EQ(2, ConstList.front().getNextNode()->Value);
41 EXPECT_EQ(1, ConstList.back().getPrevNode()->Value);
  /frameworks/base/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;
omxVCM4P10_GetVLCInfo.c 43 * transform coefficient matrix, pSrcCoeff. The value should be 16
45 * value should be 4 for blocks of type CHROMADC.
52 * Return Value:
71 OMX_S32 Value;
123 Value = Buf [i];
124 if (Value == 1 || Value == -1)
129 Value == -1 ? Mask : 0;
134 Value -= (Value > 0 ? 1 : -1)
    [all...]
omxVCM4P10_InvTransformDequant_ChromaDC.c 42 * Return Value:
59 OMX_S32 QPer, V00, Value;
85 Value = (m[j][i] * V00) >> 1;
89 Value = (m[j][i] * V00) << (QPer - 1);
92 pDst[j * 2 + i] = (OMX_S16) Value;
omxVCM4P10_InvTransformDequant_LumaDC.c 42 * Return Value:
58 OMX_S32 m1[4][4], m2[4][4], Value;
111 Value = (m2[j][i] * V + (1 << (1 - QPer))) >> (2 - QPer);
115 Value = m2[j][i] * V * (1 << (QPer - 2));
118 pDst[j * 4 + i] = (OMX_S16) Value;
omxVCM4P10_TransformQuant_ChromaDC.c 43 * Return Value:
61 OMX_S32 Value;
86 Value = (armAbs(m[j][i]) * MF00 + Two_f) >> QbitsPlusOne;
87 pSrcDst[j * 2 + i] = (OMX_S16)((m[j][i] < 0) ? -Value : Value);
omxVCM4P10_TransformQuant_LumaDC.c 42 * Return Value:
58 OMX_S32 Value;
109 Value = (armAbs((m2[j][i]/* + 1*/) / 2) * MF + Two_f) >> QbitsPlusOne;
110 pSrcDst[j * 4 + i] = (OMX_S16)((m2[j][i] < 0) ? -Value : Value);
  /system/media/mca/filterfw/native/core/
value.h 29 void* value; member in struct:__anon26117
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...]
  /external/clang/include/clang/Basic/
MacroBuilder.h 27 /// Append a #define line for macro of the form "#define Name Value\n".
28 void defineMacro(const Twine &Name, const Twine &Value = "1") {
29 Out << "#define " << Name << ' ' << Value << '\n';
  /external/v8/src/
token.h 184 enum Value {
192 static const char* Name(Value tok) {
198 static bool IsKeyword(Value tok) {
202 static bool IsAssignmentOp(Value tok) {
206 static bool IsBinaryOp(Value op) {
210 static bool IsCompareOp(Value op) {
214 static bool IsOrderedCompareOp(Value op) {
218 static Value NegateCompareOp(Value op) {
233 static Value InvertCompareOp(Value op)
    [all...]
  /frameworks/base/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...]
  /frameworks/base/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/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...]
  /external/clang/test/CXX/basic/basic.lookup/basic.lookup.classref/
p1.cpp 25 struct Value {
27 void set(T value) {} // expected-note{{lookup in the object type 'Value' refers here}}
30 Value v;
36 Value v;
39 v.set<double>(3.2); // expected-warning{{lookup of 'set' in member access expression is ambiguous; using member of 'Value' [-Wambiguous-member-template]}}
43 Value v;
  /external/llvm/include/llvm/ADT/
PointerIntPair.h 42 intptr_t Value;
59 PointerIntPair() : Value(0) {}
60 PointerIntPair(PointerTy Ptr, IntType Int) : Value(0) {
69 reinterpret_cast<void*>(Value & PointerBitMask));
73 return (IntType)((Value >> IntShift) & IntMask);
82 Value = PtrVal | (Value & ~PointerBitMask);
90 Value &= ~ShiftedIntMask; // Remove integer field.
91 Value |= IntVal << IntShift; // Set new integer.
95 assert(Value == reinterpret_cast<intptr_t>(getPointer()) &
    [all...]
  /external/llvm/include/llvm/MC/
SubtargetFeature.h 31 /// SubtargetFeatureKV - Used to provide key value pairs for feature and
37 uint64_t Value; // K-V integer value
48 /// SubtargetInfoKV - Used to provide key value pairs for CPU and arbitrary
53 void *Value; // K-V pointer value
68 /// value is "generic" then the CPU subtype should be generic for the target.
  /external/llvm/lib/CodeGen/
LiveRangeCalc.h 16 // live, but don't know which value it has as every point. LiveRangeCalc will
43 /// LiveOutPair - A value and the block that defined it. The domtree node is
47 /// LiveOutMap - Map basic blocks to the value leaving the block.
51 /// live-out value and its defining block.
58 /// The live-out value is defined in MBB.
60 /// The live-out value passses through MBB. All predecessors must carry
61 /// the same value.
70 /// to be live-in, but the value has not yet been determined.
77 // Cleared when the final value has been determined and LI has been updated.
81 // range passes through the block. When the final value has bee
    [all...]
  /external/llvm/lib/MC/
MCSymbol.cpp 16 // Sentinel value for the absolute pseudo section.
45 const MCExpr *Value = S->getVariableValue();
46 if (Value->getKind() != MCExpr::SymbolRef)
48 const MCSymbolRefExpr *Ref = static_cast<const MCSymbolRefExpr*>(Value);
54 void MCSymbol::setVariableValue(const MCExpr *Value) {
56 assert(Value && "Invalid variable value!");
57 assert((isUndefined() || (isAbsolute() && isa<MCConstantExpr>(Value))) &&
59 this->Value = Value;
    [all...]
  /external/webkit/Source/WebCore/platform/
HashTools.h 47 struct Value {
55 const Value* findValue(register const char* str, register unsigned int len);
  /external/webrtc/src/system_wrappers/source/
atomic32.cc 46 // TODO (hellner) operator= and Atomic32Wrapper::Value() can be fully
80 WebRtc_Word32 Atomic32Wrapper::Value() const
82 return _impl.Value();
atomic32_linux.h 40 inline WebRtc_Word32 Value() const;
113 inline WebRtc_Word32 Atomic32Impl::Value() const
atomic32_mac.h 39 inline WebRtc_Word32 Value() const;
112 inline WebRtc_Word32 Atomic32Impl::Value() const
  /frameworks/base/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/src/
armCOMM_Bitstream.c 34 * Returns Value
41 OMX_U32 Value;
47 Value = (pBitStream[0] << 24 ) | ( pBitStream[1] << 16) | (pBitStream[2] << 8 ) | (pBitStream[3]) ;
48 Value = (Value << Offset ) | (pBitStream[4] >> (8-Offset));
51 return Value >> (32-N);
68 * Returns Value
76 OMX_U32 Value;
87 Value = (pBitStream[0] << 24 ) | ( pBitStream[1] << 16) | (pBitStream[2] << 8 ) | (pBitStream[3]) ;
88 Value = (Value << Offset ) | (pBitStream[4] >> (8-Offset))
    [all...]

Completed in 4658 milliseconds

1 2 3 4 5 6 7 8