/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 …]
|
D | glsDrawTest.cpp | 398 …static WrappedType<Type> create (Type value) { WrappedType<Type> v; v.m_value = value; ret… in create() 399 inline Type getValue (void) const { return m_value; } in getValue() 401 …rappedType<Type>& other) const { return WrappedType<Type>::create((Type)(m_value + other.getValue(… in operator +() 402 …rappedType<Type>& other) const { return WrappedType<Type>::create((Type)(m_value * other.getValue(… in operator *() 403 …rappedType<Type>& other) const { return WrappedType<Type>::create((Type)(m_value / other.getValue(… in operator /() 404 …rappedType<Type>& other) const { return WrappedType<Type>::create((Type)(m_value - other.getValue(… in operator -() 406 …inline WrappedType<Type>& operator+= (const WrappedType<Type>& other) { m_value += other.getValu… in operator +=() 407 …inline WrappedType<Type>& operator*= (const WrappedType<Type>& other) { m_value *= other.getValu… in operator *=() 408 …inline WrappedType<Type>& operator/= (const WrappedType<Type>& other) { m_value /= other.getValu… in operator /=() 409 …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/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/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 …]
|
D | tcuFormatUtil.hpp | 90 : m_value (value) in Bitfield() 98 deUint64 bitsLeft = m_value; in toStream() 103 if (bitsLeft != m_value) in toStream() 112 if (bitsLeft != m_value) in toStream() 121 deUint64 m_value; member in tcu::Format::Bitfield 142 , m_value (value) in Enum() 148 const char* name = m_getName(m_value); in toStream() 152 return stream << Hex<NumBytes*2>((deUint64)m_value); in toStream() 157 const char* name = m_getName(m_value); in toString() 161 return Hex<NumBytes*2>((deUint64)m_value).toString(); in toString() [all …]
|
D | tcuFloat.hpp | 105 StorageType bits (void) const { return m_value; } in bits() 109 …inline int signBit (void) const { return (int)(m_value >> (ExponentBits+MantissaBits)) & 1; … in signBit() 110 …inline StorageType exponentBits (void) const { return (m_value >> MantissaBits) & ((StorageType(1… in exponentBits() 111 …inline StorageType mantissaBits (void) const { return m_value & ((StorageType(1)<<MantissaBits)-1… in mantissaBits() 127 StorageType m_value; member in tcu::Float 139 : m_value(0) in Float() 145 : m_value(value) in Float() 151 : m_value(0) in Float() 160 : m_value(0) in Float()
|
/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
|
D | PropertyElement.java | 34 return m_value; in getValue() 44 m_value = value; in setValue() 54 private String m_name, m_value; field in PropertyElement
|
/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) || marginComparison(m_value, other, m_epsilon * … in equalityComparisonImpl()
|
/external/eigen/unsupported/Eigen/src/AutoDiff/ |
D | AutoDiffScalar.h | 89 : m_value(value), m_derivatives(DerType::Zero(nbDer)) in AutoDiffScalar() 97 : m_value(value) in AutoDiffScalar() 105 : m_value(value), m_derivatives(der) in AutoDiffScalar() 116 : m_value(other.value()), m_derivatives(other.derivatives()) 125 : m_value(other.value()), m_derivatives(other.derivatives()) in AutoDiffScalar() 131 m_value = other.value(); 138 m_value = other.value(); 145 m_value = other; 154 inline const Scalar& value() const { return m_value; } in value() 155 inline Scalar& value() { return m_value; } in value() [all …]
|
/external/emma/core/java12/com/vladium/jcd/cls/constant/ |
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_Integer_info.java | 34 public int m_value; field in CONSTANT_Integer_info 39 m_value = value; in CONSTANT_Integer_info() 56 return Integer.toString (m_value); in toString() 67 out.writeInt (m_value); in writeInClassFormat() 75 m_value = bytes.readInt (); in CONSTANT_Integer_info()
|
D | CONSTANT_Utf8_info.java | 37 public String m_value; field in CONSTANT_Utf8_info 42 m_value = value; in CONSTANT_Utf8_info() 60 return "CONSTANT_Utf8: [" + m_value + ']'; in toString() 71 out.writeUTF (m_value); in writeInClassFormat() 79 m_value = bytes.readUTF (); in CONSTANT_Utf8_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()
|
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()
|
/external/deqp/modules/internal/ |
D | ditBuildInfoTests.cpp | 96 , m_value (value) in BuildInfoStringCase() 102 m_testCtx.getLog() << TestLog::Message << m_valueName << " = " << m_value << TestLog::EndMessage; in iterate() 109 std::string m_value; member in dit::BuildInfoStringCase 120 , m_value (value) in BuildEnumCase() 127 const char* valueName = m_getString(m_value); in iterate() 129 std::string logValue = valueName ? std::string(valueName) : de::toString(m_value); in iterate() 140 int m_value; member in dit::BuildEnumCase
|
/external/deqp/executor/ |
D | xeContainerFormatParser.cpp | 88 return m_value.c_str(); in getSessionInfoValue() 94 return m_value.c_str(); in getTestCasePath() 100 return m_value.c_str(); in getTerminateReason() 136 m_value.clear(); in advance() 252 parseContainerValue(m_value, offset); in parseContainerLine() 266 m_value.clear(); in parseContainerLine() 277 m_value.push_back((char)curChar); in parseContainerLine() 283 parseContainerValue(m_value, offset); in parseContainerLine()
|
/external/testng/src/main/java/org/testng/collections/ |
D | Objects.java | 14 private String m_value; field in Objects.ValueHolder 18 m_value = value; in ValueHolder() 22 return m_value == null; in isNull() 27 return m_name + "=" + m_value; in toString() 31 return Strings.isNullOrEmpty(m_value); in isEmptyString()
|
/external/v8/tools/clang/rewrite_to_chrome_style/tests/ |
D | function-templates-original.cc | 26 if (!isInBounds<T>(rhs.m_value)) in Checked() 28 m_value = static_cast<T>(rhs.m_value); in Checked() 35 T m_value; member in WTF::Checked
|
/external/deqp/framework/opengl/ |
D | gluContextInfo.hpp | 43 , m_value (defaultValue) in CachedValue() 52 m_value = m_compute(context); in getValue() 55 return m_value; in getValue() 60 mutable T m_value; member in glu::CachedValue
|
/external/testng/src/main/java/org/testng/internal/annotations/ |
D | ExpectedExceptionsAnnotation.java | 15 private Class[] m_value = {}; field in ExpectedExceptionsAnnotation 19 return m_value; in getValue() 23 m_value = value; in setValue()
|
D | ParametersAnnotation.java | 16 private String[] m_value = {}; field in ParametersAnnotation 20 return m_value; in getValue() 24 m_value = value; in setValue()
|
D | ListenersAnnotation.java | 8 private Class<? extends ITestNGListener>[] m_value; field in ListenersAnnotation 12 return m_value; in getValue() 17 m_value = value; in setValue()
|