/external/clang/test/CodeGen/ |
typedef.c | 3 typedef struct { int i; } Value; 4 typedef Value *PValue;
|
/external/llvm/include/llvm/ADT/ |
PointerIntPair.h | 44 intptr_t Value; 67 PointerIntPair() : Value(0) {} 77 reinterpret_cast<void*>(Value & PointerBitMask)); 81 return (IntType)((Value >> IntShift) & IntMask); 90 Value = PtrWord | (Value & ~PointerBitMask); 98 Value &= ~ShiftedIntMask; // Remove integer field. 99 Value |= IntWord << IntShift; // Set new integer. 107 Value = PtrWord; 118 Value = PtrWord | (IntWord << IntShift) [all...] |
/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);
|
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p10/src/ |
armVCM4P10_UnpackBlock2x2.c | 56 int Flag, Value; 69 Value = *pSrc++; 70 Value = Value | ((*pSrc++)<<8); 71 if (Value & 0x8000) 73 Value -= 0x10000; 79 Value = *pSrc++; 80 if (Value & 0x80) 82 Value -= 0x100; 86 pDst[i] = (OMX_S16)Value; [all...] |
armVCM4P10_UnpackBlock4x4.c | 56 int Flag, Value; 69 Value = *pSrc++; 70 Value = Value | ((*pSrc++)<<8); 71 if (Value & 0x8000) 73 Value -= 0x10000; 79 Value = *pSrc++; 80 if (Value & 0x80) 82 Value -= 0x100; 86 pDst[i] = (OMX_S16)Value; [all...] |
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;
|
/frameworks/base/media/mca/filterfw/native/core/ |
value.h | 29 void* value; member in struct:__anon29648 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/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: !DICompositeType(tag: DW_TAG_union_type, name: "Value<float>",
|
/external/compiler-rt/lib/ubsan/ |
ubsan_value.cc | 10 // Representation of a runtime value, as marshaled from the generated code to 23 SIntMax Value::getSIntValue() const { 44 UIntMax Value::getUIntValue() const { 60 UIntMax Value::getPositiveIntValue() const { 68 /// Get the floating-point value of this object, extended to a long double. 71 FloatMax Value::getFloatValue() const { 79 __fp16 Value; 80 internal_memcpy(&Value, &Val, 4); 81 return Value; 85 float Value; [all...] |
/external/libunwind/doc/ |
unw_backtrace.tex | 35 \section{Return Value} 38 \Var{buffer}. The return value may be zero to indicate that no addresses were
|
/external/mockito/cglib-and-asm/src/org/mockito/asm/tree/analysis/ |
Value.java | 33 * An immutable symbolic value for semantic interpretation of bytecode.
37 public interface Value {
40 * Returns the size of this value in words.
|
/external/testng/src/main/java/org/testng/mustache/ |
Value.java | 3 public class Value { 6 public Value(Object object) {
|
/external/webrtc/webrtc/system_wrappers/include/ |
atomic32.h | 26 // align the 32 bit value correctly (on a 32 bit boundary), so as long as you're 38 int32_t operator+=(int32_t value); 39 int32_t operator-=(int32_t value); 41 // Sets the value atomically to new_value if the value equals compare value. 44 int32_t 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/go/darwin-x86/src/sync/atomic/ |
value.go | 11 // A Value provides an atomic load and store of a consistently typed value. 13 // The zero value for a Value returns nil from Load. 14 // Once Store has been called, a Value must not be copied. 15 type Value struct { 25 // Load returns the value set by the most recent Store. 26 // It returns nil if there has been no call to Store for this Value. 27 func (v *Value) Load() (x interface{}) { 41 // Store sets the value of the Value to x [all...] |
/prebuilts/go/darwin-x86/test/fixedbugs/ |
bug329.go | 9 type Value struct { 20 func (Value) Complex(x complex128) { 31 func (Value) Struct(x Struct) { 43 var v Value
|
/prebuilts/go/linux-x86/src/sync/atomic/ |
value.go | 11 // A Value provides an atomic load and store of a consistently typed value. 13 // The zero value for a Value returns nil from Load. 14 // Once Store has been called, a Value must not be copied. 15 type Value struct { 25 // Load returns the value set by the most recent Store. 26 // It returns nil if there has been no call to Store for this Value. 27 func (v *Value) Load() (x interface{}) { 41 // Store sets the value of the Value to x [all...] |
/prebuilts/go/linux-x86/test/fixedbugs/ |
bug329.go | 9 type Value struct { 20 func (Value) Complex(x complex128) { 31 func (Value) Struct(x Struct) { 43 var v 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/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/clang/unittests/ASTMatchers/Dynamic/ |
VariantValueTest.cpp | 24 VariantValue Value = kUnsigned; 26 EXPECT_TRUE(Value.isUnsigned()); 27 EXPECT_EQ(kUnsigned, Value.getUnsigned()); 29 EXPECT_TRUE(Value.hasValue()); 30 EXPECT_FALSE(Value.isString()); 31 EXPECT_FALSE(Value.isMatcher()); 36 VariantValue Value = kString; 38 EXPECT_TRUE(Value.isString()); 39 EXPECT_EQ(kString, Value.getString()); 40 EXPECT_EQ("String", Value.getTypeAsString()) [all...] |
/external/deqp/framework/delibs/decpp/ |
deMeta.hpp | 47 Value = !Cond 56 Value = false 65 Value = true
|