/external/deqp/modules/glshared/ |
D | glsVertexArrayTests.hpp | 244 …static WrappedType<Type> create (Type value) { WrappedType<Type> v; v.m_value = value; ret… in create() 245 …static WrappedType<Type> fromFloat (float value) { WrappedType<Type> v; v.m_value = (Type)v… in fromFloat() 246 inline Type getValue (void) const { return m_value; } in getValue() 248 …rappedType<Type>& other) const { return WrappedType<Type>::create((Type)(m_value + other.getValue(… in operator +() 249 …rappedType<Type>& other) const { return WrappedType<Type>::create((Type)(m_value * other.getValue(… in operator *() 250 …rappedType<Type>& other) const { return WrappedType<Type>::create((Type)(m_value / other.getValue(… in operator /() 251 …rappedType<Type>& other) const { return WrappedType<Type>::create((Type)(m_value % other.getValue(… in operator %() 252 …rappedType<Type>& other) const { return WrappedType<Type>::create((Type)(m_value - other.getValue(… in operator -() 254 …inline WrappedType<Type>& operator+= (const WrappedType<Type>& other) { m_value += other.getValu… in operator +=() 255 …inline WrappedType<Type>& operator*= (const WrappedType<Type>& other) { m_value *= other.getValu… in operator *=() [all …]
|
/external/libhevc/decoder/ |
D | ihevcd_trace.h | 68 #define BITS_PARSE(m_str, m_value, m_ps_bitstrm, m_numbits) \ argument 70 m_value = ihevcd_bits_get(m_ps_bitstrm, m_numbits); \ 71 fprintf( g_trace.fp, "%-40s u(%d) : %d\n", m_str, m_numbits, m_value ); \ 79 #define UEV_PARSE(m_str, m_value, m_ps_bitstrm) \ argument 81 m_value = ihevcd_uev(m_ps_bitstrm); \ 82 fprintf( g_trace.fp, "%-40s ue(v) : %d\n", m_str, m_value ); \ 88 #define SEV_PARSE(m_str, m_value, m_ps_bitstrm) \ argument 90 m_value = ihevcd_sev(m_ps_bitstrm); \ 91 fprintf( g_trace.fp, "%-40s se(v) : %d\n", m_str, m_value ); \ 109 #define AEV_TRACE(m_str, m_value, m_range) \ argument [all …]
|
/external/llvm-project/lldb/test/API/lang/cpp/breakpoint-commands/ |
D | nested.cpp | 10 Baz (int value):m_value(value) {} in Baz() 13 printf ("%s returning: %d.\n", __FUNCTION__, m_value); in Function() 14 return m_value + 1; in Function() 17 int m_value; member in Foo::Bar::Baz 23 Baz2 (int value):m_value(value) {} in Baz2() 26 printf ("%s returning: %d.\n", __FUNCTION__, m_value); in Function() 27 return m_value + 2; in Function() 30 int m_value; member in Foo::Bar::Baz2 45 Baz (int value):m_value(value) {} in Baz() 48 printf ("%s returning: %d.\n", __FUNCTION__, m_value); in Function() [all …]
|
/external/deqp/framework/randomshaders/ |
D | rsgVariableValue.hpp | 77 …StridedValueRead (const VariableType& type, const Scalar* value) : m_type(type), m_value(value) {} in StridedValueRead() 80 const Scalar* getValuePtr (void) const { return m_value; } in getValuePtr() 84 const Scalar* m_value; member in rsg::StridedValueRead 91 ConstStridedValueAccess (void) : m_type(DE_NULL), m_value(DE_NULL) {} in ConstStridedValueAccess() 92 …cess (const VariableType& type, const Scalar* valuePtr) : m_type(&type), m_value(const_cast<Scalar… in ConstStridedValueAccess() 97 …Ndx) const { return ConstStridedValueAccess(getType().getElementType(), m_value + Stride*compNdx)… in component() 98 …tNdx) const { return ConstStridedValueAccess(getType().getElementType(), m_value + Stride*getType(… in arrayElement() 99 …urn ConstStridedValueAccess(getType().getMembers()[memberNdx].getType(), m_value + Stride*getType(… in member() 101 float asFloat (void) const { DE_STATIC_ASSERT(Stride == 1); return m_value->floatVal; } in asFloat() 102 int asInt (void) const { DE_STATIC_ASSERT(Stride == 1); return m_value->intVal; } in asInt() [all …]
|
D | rsgExpression.hpp | 119 …ExecConstValueAccess getValue (void) const { return m_value.getValue(VariableType::getScalarTyp… in getValue() 122 ExecValueStorage m_value; member in rsg::FloatLiteral 137 …ExecConstValueAccess getValue (void) const { return m_value.getValue(VariableType::getScalarTyp… in getValue() 140 ExecValueStorage m_value; member in rsg::IntLiteral 156 …ExecConstValueAccess getValue (void) const { return m_value.getValue(VariableType::getScalarTyp… in getValue() 159 ExecValueStorage m_value; member in rsg::BoolLiteral 174 ExecConstValueAccess getValue (void) const { return m_value.getValue(m_valueRange.getType()); } in getValue() 178 ExecValueStorage m_value; member in rsg::ConstructorOp 199 ExecConstValueAccess getValue (void) const { return m_value.getValue(m_valueRange.getType()); } in getValue() 203 ExecValueStorage m_value; member in rsg::AssignOp [all …]
|
/external/llvm-project/lldb/source/Core/ |
D | ValueObjectMemory.cpp | 60 m_value.SetContext(Value::eContextTypeLLDBType, m_type_sp.get()); in ValueObjectMemory() 64 m_value.SetValueType(Value::eValueTypeLoadAddress); in ValueObjectMemory() 65 m_value.GetScalar() = load_address; in ValueObjectMemory() 69 m_value.SetValueType(Value::eValueTypeFileAddress); in ValueObjectMemory() 70 m_value.GetScalar() = file_address; in ValueObjectMemory() 72 m_value.GetScalar() = m_address.GetOffset(); in ValueObjectMemory() 73 m_value.SetValueType(Value::eValueTypeScalar); in ValueObjectMemory() 92 m_value.SetCompilerType(m_compiler_type); in ValueObjectMemory() 95 m_value.SetValueType(Value::eValueTypeLoadAddress); in ValueObjectMemory() 96 m_value.GetScalar() = load_address; in ValueObjectMemory() [all …]
|
D | ValueObjectChild.cpp | 109 m_value.SetCompilerType(GetCompilerType()); in UpdateValue() 113 m_value.GetScalar() = parent->GetValue().GetScalar(); in UpdateValue() 114 m_value.SetValueType(parent->GetValue().GetValueType()); in UpdateValue() 122 m_value.GetScalar() = parent->GetPointerValue(); in UpdateValue() 128 m_value.SetValueType(Value::eValueTypeLoadAddress); in UpdateValue() 130 m_value.SetValueType(Value::eValueTypeFileAddress); in UpdateValue() 133 m_value.SetValueType(is_instance_ptr_base in UpdateValue() 138 m_value.SetValueType(Value::eValueTypeHostAddress); in UpdateValue() 142 m_value.SetValueType(Value::eValueTypeScalar); in UpdateValue() 146 switch (m_value.GetValueType()) { in UpdateValue() [all …]
|
D | Value.cpp | 42 : m_value(), m_compiler_type(), m_context(nullptr), in Value() 47 : m_value(scalar), m_compiler_type(), m_context(nullptr), in Value() 52 : m_value(), m_compiler_type(), m_context(nullptr), in Value() 59 : m_value(v.m_value), m_compiler_type(v.m_compiler_type), in Value() 63 (uintptr_t)v.m_value.ULongLong(LLDB_INVALID_ADDRESS); in Value() 69 m_value = (uintptr_t)m_data_buffer.GetBytes(); in Value() 75 m_value = rhs.m_value; in operator =() 81 (uintptr_t)rhs.m_value.ULongLong(LLDB_INVALID_ADDRESS); in operator =() 87 m_value = (uintptr_t)m_data_buffer.GetBytes(); in operator =() 96 m_value = (uintptr_t)m_data_buffer.GetBytes(); in SetBytes() [all …]
|
D | ValueObjectCast.cpp | 36 m_value.SetCompilerType(cast_type); in ValueObjectCast() 52 return m_value.GetValueByteSize(nullptr, &exe_ctx); in GetByteSize() 65 Value old_value(m_value); in UpdateValue() 67 m_value = m_parent->GetValue(); in UpdateValue() 69 m_value.SetCompilerType(compiler_type); in UpdateValue() 75 SetValueDidChange(m_value.GetValueType() != old_value.GetValueType() || in UpdateValue() 76 m_value.GetScalar() != old_value.GetScalar()); in UpdateValue() 79 m_error = m_value.GetValueAsData(&exe_ctx, m_data, GetModule().get()); in UpdateValue()
|
D | ValueObjectConstResult.cpp | 75 m_value.GetScalar() = (uintptr_t)m_data.GetDataStart(); in ValueObjectConstResult() 76 m_value.SetValueType(Value::eValueTypeHostAddress); in ValueObjectConstResult() 77 m_value.SetCompilerType(compiler_type); in ValueObjectConstResult() 117 m_value.GetScalar() = (uintptr_t)data_sp->GetBytes(); in ValueObjectConstResult() 118 m_value.SetValueType(Value::eValueTypeHostAddress); in ValueObjectConstResult() 119 m_value.SetCompilerType(compiler_type); in ValueObjectConstResult() 145 m_value.GetScalar() = address; in ValueObjectConstResult() 147 m_value.GetScalar().GetData(m_data, addr_byte_size); in ValueObjectConstResult() 151 m_value.SetValueType(Value::eValueTypeScalar); in ValueObjectConstResult() 154 m_value.SetValueType(Value::eValueTypeFileAddress); in ValueObjectConstResult() [all …]
|
D | ValueObjectVariable.cpp | 137 m_value.SetBytes(m_data.GetDataStart(), m_data.GetByteSize()); in UpdateValue() 138 m_value.SetContext(Value::eContextTypeVariable, variable); in UpdateValue() 162 Value old_value(m_value); in UpdateValue() 164 nullptr, m_value, &m_error)) { in UpdateValue() 165 m_resolved_value = m_value; in UpdateValue() 166 m_value.SetContext(Value::eContextTypeVariable, variable); in UpdateValue() 170 m_value.SetCompilerType(compiler_type); in UpdateValue() 172 Value::ValueType value_type = m_value.GetValueType(); in UpdateValue() 188 if (size_t value_buf_size = m_value.GetBuffer().GetByteSize()) { in UpdateValue() 189 size_t value_size = m_value.GetValueByteSize(&m_error, &exe_ctx); in UpdateValue() [all …]
|
/external/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/ |
D | DWARFFormValue.cpp | 27 m_value = ValueTypeTag(); in Clear() 37 m_value.data = nullptr; in ExtractValue() 46 m_value.value.uval = in ExtractValue() 50 m_value.value.uval = data.GetU8(offset_ptr); in ExtractValue() 54 m_value.value.uval = data.GetU16(offset_ptr); in ExtractValue() 58 m_value.value.uval = data.GetU32(offset_ptr); in ExtractValue() 62 m_value.value.uval = 16; in ExtractValue() 67 m_value.value.uval = data.GetULEB128(offset_ptr); in ExtractValue() 71 m_value.value.cstr = data.GetCStr(offset_ptr); in ExtractValue() 74 m_value.value.sval = data.GetSLEB128(offset_ptr); in ExtractValue() [all …]
|
D | DWARFFormValue.h | 50 const ValueType &Value() const { return m_value; } in Value() 51 ValueType &ValueRef() { return m_value; } in ValueRef() 52 void SetValue(const ValueType &val) { m_value = val; } in SetValue() 63 bool Boolean() const { return m_value.value.uval != 0; } in Boolean() 64 uint64_t Unsigned() const { return m_value.value.uval; } in Unsigned() 65 void SetUnsigned(uint64_t uval) { m_value.value.uval = uval; } in SetUnsigned() 66 int64_t Signed() const { return m_value.value.sval; } in Signed() 67 void SetSigned(int64_t sval) { m_value.value.sval = sval; } in SetSigned() 87 ValueType m_value; // Contains all data for the form variable
|
/external/deqp/framework/common/ |
D | tcuRGBA.hpp | 57 RGBA (void) { m_value = 0; } in RGBA() 65 …m_value = ((deUint32)a << ALPHA_SHIFT) | ((deUint32)r << RED_SHIFT) | ((deUint32)g << GREEN_SHIFT)… in RGBA() 70 m_value = val; in RGBA() 75 …void setRed (int v) { DE_ASSERT(deInRange32(v, 0, 255)); m_value = (m_value & ~((deUint32)0xF… in setRed() 76 …void setGreen (int v) { DE_ASSERT(deInRange32(v, 0, 255)); m_value = (m_value & ~((deUint32)0x… in setGreen() 77 …void setBlue (int v) { DE_ASSERT(deInRange32(v, 0, 255)); m_value = (m_value & ~((deUint32)0x… in setBlue() 78 …void setAlpha (int v) { DE_ASSERT(deInRange32(v, 0, 255)); m_value = (m_value & ~((deUint32)0x… in setAlpha() 79 int getRed (void) const { return (int)((m_value >> (deUint32)RED_SHIFT) & 0xFFu); } in getRed() 80 int getGreen (void) const { return (int)((m_value >> (deUint32)GREEN_SHIFT) & 0xFFu); } in getGreen() 81 int getBlue (void) const { return (int)((m_value >> (deUint32)BLUE_SHIFT) & 0xFFu); } in getBlue() [all …]
|
/external/mesa3d/src/gallium/drivers/r600/sfn/ |
D | sfn_value.cpp | 100 m_value.f=value; in LiteralValue() 107 m_value.u=value; in LiteralValue() 113 m_value.u=value; in LiteralValue() 123 return m_value.u; in value() 128 return m_value.f; in value_float() 133 os << "[0x" << std::setbase(16) << m_value.u << " " << std::setbase(10) in do_print() 134 << m_value.f << "]."; in do_print() 140 os << "[0x" << std::setbase(16) << m_value.u << " " in do_print() 143 os << m_value.f << "f"; in do_print() 158 m_value(static_cast<AluInlineConstants>(value)) in SpecialValue() [all …]
|
/external/llvm-project/lldb/include/lldb/Utility/ |
D | Predicate.h | 47 Predicate() : m_value(), m_mutex(), m_condition() {} in Predicate() 57 : m_value(initial_value), m_mutex(), m_condition() {} in Predicate() 73 T value = m_value; in GetValue() 96 const T old_value = m_value; in SetValue() 97 m_value = value; in SetValue() 124 auto RealCond = [&] { return Cond(m_value); }; in WaitFor() 127 return m_value; in WaitFor() 130 return m_value; in WaitFor() 191 T m_value; ///< The templatized value T that we are protecting access to 214 ((broadcast_type == eBroadcastOnChange) && old_value != m_value); in Broadcast() [all …]
|
/external/emma/ant/ant14/com/vladium/emma/ant/ |
D | StringValue.java | 27 if (m_value == null) in appendValue() 29 m_value = new StringBuffer (value); in appendValue() 33 m_value.append (separator); in appendValue() 34 m_value.append (value); // no trailing separator kept in appendValue() 41 return m_value != null ? m_value.toString () : null; in getValue() 62 private StringBuffer m_value; field in StringValue
|
/external/llvm-project/lldb/tools/debugserver/source/ |
D | JSONGenerator.h | 146 Integer(uint64_t value = 0) : Object(Type::eTypeInteger), m_value(value) {} in Object() 150 void SetValue(uint64_t value) { m_value = value; } in SetValue() 152 void Dump(std::ostream &s) const override { s << m_value; } in Dump() 155 uint64_t m_value; 160 Float(double d = 0.0) : Object(Type::eTypeFloat), m_value(d) {} in Object() 164 void SetValue(double value) { m_value = value; } in SetValue() 166 void Dump(std::ostream &s) const override { s << m_value; } in Dump() 169 double m_value; 174 Boolean(bool b = false) : Object(Type::eTypeBoolean), m_value(b) {} in Object() 178 void SetValue(bool value) { m_value = value; } in SetValue() [all …]
|
/external/catch2/include/internal/ |
D | catch_approx.cpp | 32 m_value( value ) in Approx() 41 temp.m_value = -temp.m_value; in operator -() 48 rss << "Approx( " << ::Catch::Detail::stringify( m_value ) << " )"; in toString() 55 return marginComparison(m_value, other, m_margin) in equalityComparisonImpl() 56 …|| marginComparison(m_value, other, m_epsilon * (m_scale + std::fabs(std::isinf(m_value)? 0 : m_va… in equalityComparisonImpl()
|
/external/llvm-project/lldb/include/lldb/Core/ |
D | ThreadSafeValue.h | 21 ThreadSafeValue() : m_value(), m_mutex() {} in ThreadSafeValue() 23 ThreadSafeValue(const T &value) : m_value(value), m_mutex() {} in ThreadSafeValue() 31 value = m_value; in GetValue() 38 const T &GetValueNoLock() const { return m_value; } in GetValueNoLock() 42 m_value = value; in SetValue() 47 void SetValueNoLock(const T &value) { m_value = value; } in SetValueNoLock() 52 T m_value;
|
/external/llvm-project/lldb/source/Interpreter/ |
D | OptionGroupBoolean.cpp | 21 : m_value(default_value, default_value) { in OptionGroupBoolean() 45 m_value.SetCurrentValue(!m_value.GetDefaultValue()); in SetOptionValue() 46 m_value.SetOptionWasSet(); in SetOptionValue() 48 error = m_value.SetValueFromString(option_value); in SetOptionValue() 55 m_value.Clear(); in OptionParsingStarting()
|
/external/llvm-project/lldb/include/lldb/Symbol/ |
D | UnwindPlan.h | 208 FAValue() : m_type(unspecified), m_value() {} in FAValue() 220 m_value.ra_search_offset = offset; in SetRaSearch() 229 m_value.reg.reg_num = reg_num; in SetIsRegisterPlusOffset() 230 m_value.reg.offset = offset; in SetIsRegisterPlusOffset() 239 m_value.reg.reg_num = reg_num; in SetIsRegisterDereferenced() 246 m_value.expr.opcodes = opcodes; in SetIsDWARFExpression() 247 m_value.expr.length = len; in SetIsDWARFExpression() 252 return m_value.reg.reg_num; in GetRegisterNumber() 261 return m_value.reg.offset; in GetOffset() 263 return m_value.ra_search_offset; in GetOffset() [all …]
|
/external/emma/core/java12/com/vladium/jcd/cls/constant/ |
D | CONSTANT_Double_info.java | 33 public double m_value; field in CONSTANT_Double_info 38 m_value = value; in CONSTANT_Double_info() 55 return Double.toString (m_value); in toString() 75 out.writeDouble (m_value); in writeInClassFormat() 83 m_value = bytes.readDouble (); in CONSTANT_Double_info()
|
D | CONSTANT_Float_info.java | 33 public float m_value; field in CONSTANT_Float_info 38 m_value = value; in CONSTANT_Float_info() 55 return Float.toString (m_value); in toString() 66 out.writeFloat (m_value); in writeInClassFormat() 74 m_value = bytes.readFloat (); in CONSTANT_Float_info()
|
D | CONSTANT_Long_info.java | 35 public long m_value; field in CONSTANT_Long_info 40 m_value = value; in CONSTANT_Long_info() 57 return Long.toString (m_value); in toString() 76 out.writeLong (m_value); in writeInClassFormat() 84 m_value = bytes.readLong (); in CONSTANT_Long_info()
|