Searched defs:m_value (Results 26 - 50 of 58) sorted by relevance

123

/external/deqp/framework/common/
H A DtcuFloat.hpp105 StorageType bits (void) const { return m_value; }
109 inline int signBit (void) const { return (int)(m_value >> (ExponentBits+MantissaBits)) & 1; }
110 inline StorageType exponentBits (void) const { return (m_value >> MantissaBits) & ((StorageType(1)<<ExponentBits)-1); }
111 inline StorageType mantissaBits (void) const { return m_value & ((StorageType(1)<<MantissaBits)-1); }
127 StorageType m_value; member in class:tcu::Float
137 : m_value(0)
143 : m_value(value)
149 : m_value(0)
158 : m_value(0)
H A DtcuFormatUtil.hpp90 : m_value (value)
98 deUint64 bitsLeft = m_value;
103 if (bitsLeft != m_value)
112 if (bitsLeft != m_value)
121 deUint64 m_value; member in class:tcu::Format::Bitfield
142 , m_value (value)
148 const char* name = m_getName(m_value);
152 return stream << Hex<NumBytes*2>((deUint64)m_value);
157 const char* name = m_getName(m_value);
161 return Hex<NumBytes*2>((deUint64)m_value)
166 const T m_value; member in class:tcu::Format::Enum
[all...]
H A DtcuRGBA.hpp57 RGBA (void) { m_value = 0; }
65 m_value = ((deUint32)a << ALPHA_SHIFT) | ((deUint32)r << RED_SHIFT) | ((deUint32)g << GREEN_SHIFT) | ((deUint32)b << BLUE_SHIFT);
70 m_value = val;
75 void setRed (int v) { DE_ASSERT(deInRange32(v, 0, 255)); m_value = (m_value & ~((deUint32)0xFFu << RED_SHIFT)) | ((deUint32)v << RED_SHIFT); }
76 void setGreen (int v) { DE_ASSERT(deInRange32(v, 0, 255)); m_value = (m_value & ~((deUint32)0xFFu << GREEN_SHIFT)) | ((deUint32)v << GREEN_SHIFT); }
77 void setBlue (int v) { DE_ASSERT(deInRange32(v, 0, 255)); m_value = (m_value & ~((deUint32)0xFFu << BLUE_SHIFT)) | ((deUint32)v << BLUE_SHIFT); }
78 void setAlpha (int v) { DE_ASSERT(deInRange32(v, 0, 255)); m_value
104 deUint32 m_value; member in class:tcu::RGBA
[all...]
H A DtcuTestLog.hpp397 , m_value (value)
408 T m_value; member in class:tcu::LogNumber
529 log.writeFloat(m_name.c_str(), m_desc.c_str(), m_unit.c_str(), m_tag, m_value);
535 log.writeInteger(m_name.c_str(), m_desc.c_str(), m_unit.c_str(), m_tag, m_value);
/external/deqp/framework/randomshaders/
H A DrsgBuiltinFunctions.hpp46 ExecConstValueAccess getValue (void) const { return m_value.getValue(m_inValueRange.getType()); }
53 ExecValueStorage m_value; member in class:rsg::UnaryBuiltinVecFunc
66 m_value.setStorage(valueRange.getType());
108 ExecValueAccess dstValue = m_value.getValue(m_inValueRange.getType());
H A DrsgExpression.hpp118 ExecConstValueAccess getValue (void) const { return m_value.getValue(VariableType::getScalarType(VariableType::TYPE_FLOAT)); }
121 ExecValueStorage m_value; member in class:rsg::FloatLiteral
136 ExecConstValueAccess getValue (void) const { return m_value.getValue(VariableType::getScalarType(VariableType::TYPE_INT)); }
139 ExecValueStorage m_value; member in class:rsg::IntLiteral
154 ExecConstValueAccess getValue (void) const { return m_value.getValue(VariableType::getScalarType(VariableType::TYPE_BOOL)); }
157 ExecValueStorage m_value; member in class:rsg::BoolLiteral
172 ExecConstValueAccess getValue (void) const { return m_value.getValue(m_valueRange.getType()); }
176 ExecValueStorage m_value; member in class:rsg::ConstructorOp
197 ExecConstValueAccess getValue (void) const { return m_value.getValue(m_valueRange.getType()); }
201 ExecValueStorage m_value; member in class:rsg::AssignOp
245 ExecValueStorage m_value; member in class:rsg::SwizzleOp
281 ExecValueStorage m_value; member in class:rsg::TexLookup
[all...]
H A DrsgBinaryOps.hpp50 ExecConstValueAccess getValue (void) const { return m_value.getValue(m_type); }
59 ExecValueStorage m_value; member in class:rsg::BinaryOp
H A DrsgVariableValue.hpp77 StridedValueRead (const VariableType& type, const Scalar* value) : m_type(type), m_value(value) {}
80 const Scalar* getValuePtr (void) const { return m_value; }
84 const Scalar* m_value; member in class:rsg::StridedValueRead
91 ConstStridedValueAccess (void) : m_type(DE_NULL), m_value(DE_NULL) {}
92 ConstStridedValueAccess (const VariableType& type, const Scalar* valuePtr) : m_type(&type), m_value(const_cast<Scalar*>(valuePtr)) {}
97 ConstStridedValueAccess component (int compNdx) const { return ConstStridedValueAccess(getType().getElementType(), m_value + Stride*compNdx); }
98 ConstStridedValueAccess arrayElement (int elementNdx) const { return ConstStridedValueAccess(getType().getElementType(), m_value + Stride*getType().getElementScalarOffset(elementNdx)); }
99 ConstStridedValueAccess member (int memberNdx) const { return ConstStridedValueAccess(getType().getMembers()[memberNdx].getType(), m_value + Stride*getType().getMemberScalarOffset(memberNdx)); }
101 float asFloat (void) const { DE_STATIC_ASSERT(Stride == 1); return m_value->floatVal; }
102 int asInt (void) const { DE_STATIC_ASSERT(Stride == 1); return m_value
119 Scalar* m_value; // \\note Non-const internal pointer is used so that ValueAccess can extend this class with RW access member in class:rsg::ConstStridedValueAccess
325 std::vector<Scalar> m_value; member in class:rsg::ValueStorage
[all...]
H A DrsgProgramExecutor.cpp54 std::vector<Scalar> m_value; member in class:rsg::VaryingStorage
58 : m_value(type.getScalarSize()*numVertices)
64 return ValueAccess(type, &m_value[type.getScalarSize()*vtxNdx]);
69 return ConstValueAccess(type, &m_value[type.getScalarSize()*vtxNdx]);
/external/valgrind/drd/tests/
H A Dannotate_smart_pointer.cpp50 AtomicInt32(const int value = 0) : m_value(value) { }
52 LONG operator++() { return InterlockedIncrement(&m_value); }
53 LONG operator--() { return InterlockedDecrement(&m_value); }
56 volatile LONG m_value; member in class:AtomicInt32
112 AtomicInt32(const int value = 0) : m_value(value) { }
114 int operator++() { return __sync_add_and_fetch(&m_value, 1); }
115 int operator--() { return __sync_sub_and_fetch(&m_value, 1); }
117 volatile int m_value; member in class:AtomicInt32
/external/eigen/unsupported/Eigen/src/AutoDiff/
H A DAutoDiffScalar.h89 : m_value(value), m_derivatives(DerType::Zero(nbDer))
97 : m_value(value)
105 : m_value(value), m_derivatives(der)
116 : m_value(other.value()), m_derivatives(other.derivatives())
125 : m_value(other.value()), m_derivatives(other.derivatives())
131 m_value = other.value();
138 m_value = other.value();
145 m_value = other;
151 // inline operator const Scalar& () const { return m_value; }
152 // inline operator Scalar& () { return m_value; }
378 Scalar m_value; member in class:Eigen::AutoDiffScalar
[all...]
/external/libedit/src/
H A Dtty.c56 unsigned int m_value; member in struct:ttymodes_t
1238 x = (el->el_tty.t_t[z][i].t_setmask & m->m_value)
1241 if (el->el_tty.t_t[z][i].t_clrmask & m->m_value)
1297 int c = ffs((int)m->m_value);
1309 el->el_tty.t_t[z][m->m_type].t_setmask |= m->m_value;
1310 el->el_tty.t_t[z][m->m_type].t_clrmask &= ~m->m_value;
1313 el->el_tty.t_t[z][m->m_type].t_setmask &= ~m->m_value;
1314 el->el_tty.t_t[z][m->m_type].t_clrmask |= m->m_value;
1317 el->el_tty.t_t[z][m->m_type].t_setmask &= ~m->m_value;
1318 el->el_tty.t_t[z][m->m_type].t_clrmask &= ~m->m_value;
[all...]
/external/deqp/modules/egl/
H A DteglChooseConfigTests.cpp480 , m_value (value)
498 attributes.push_back(std::pair<EGLenum, EGLint>(EGL_COLOR_COMPONENT_TYPE_EXT, m_value));
507 const EGLenum m_value; member in class:deqp::egl::ColorComponentTypeCase
/external/deqp/modules/gles2/functional/
H A Des2fShaderInvarianceTests.cpp72 const std::string m_value; member in class:deqp::gles2::Functional::__anon4409::FormatArgument
77 , m_value (value)
99 m_formatArguments[arg.m_name] = arg.m_value;
/external/deqp/modules/gles3/functional/
H A Des3fShaderInvarianceTests.cpp72 const std::string m_value; member in class:deqp::gles3::Functional::__anon4572::FormatArgument
77 , m_value (value)
99 m_formatArguments[arg.m_name] = arg.m_value;
H A Des3fShaderOperatorTests.cpp375 FloatScalar (float c) : m_isConstant(true), m_value(c) {}
376 FloatScalar (Symbol s) : m_isConstant(false), m_value(s) {}
381 return m_value.constant;
384 switch (m_value.symbol)
412 } m_value; member in class:deqp::gles3::Functional::FloatScalar
/external/deqp/modules/glshared/
H A DglsStateQueryUtil.hpp96 const T& get (void) const { return m_value; }
105 T m_value; member in class:deqp::gls::StateQueryUtil::StateQueryMemoryWriteGuard
117 ((deUint8*)&m_value)[i] = (deUint8)WRITE_GUARD_VALUE;
125 return m_value;
131 return &m_value;
138 if (((deUint8*)&m_value)[i] != (deUint8)WRITE_GUARD_VALUE)
H A DglsVertexArrayTests.hpp244 static WrappedType<Type> create (Type value) { WrappedType<Type> v; v.m_value = value; return v; }
245 static WrappedType<Type> fromFloat (float value) { WrappedType<Type> v; v.m_value = (Type)value; return v; }
246 inline Type getValue (void) const { return m_value; }
248 inline WrappedType<Type> operator+ (const WrappedType<Type>& other) const { return WrappedType<Type>::create((Type)(m_value + other.getValue())); }
249 inline WrappedType<Type> operator* (const WrappedType<Type>& other) const { return WrappedType<Type>::create((Type)(m_value * other.getValue())); }
250 inline WrappedType<Type> operator/ (const WrappedType<Type>& other) const { return WrappedType<Type>::create((Type)(m_value / other.getValue())); }
251 inline WrappedType<Type> operator% (const WrappedType<Type>& other) const { return WrappedType<Type>::create((Type)(m_value % other.getValue())); }
252 inline WrappedType<Type> operator- (const WrappedType<Type>& other) const { return WrappedType<Type>::create((Type)(m_value - other.getValue())); }
254 inline WrappedType<Type>& operator+= (const WrappedType<Type>& other) { m_value += other.getValue(); return *this; }
255 inline WrappedType<Type>& operator*= (const WrappedType<Type>& other) { m_value *
270 Type m_value; member in class:deqp::gls::GLValue::WrappedType
303 Type m_value; member in class:deqp::gls::GLValue::WrappedFloatType
349 deFloat16 m_value; member in class:deqp::gls::GLValue::Half
381 deInt32 m_value; member in class:deqp::gls::GLValue::Fixed
[all...]
H A DglsDrawTest.cpp397 static WrappedType<Type> create (Type value) { WrappedType<Type> v; v.m_value = value; return v; }
398 inline Type getValue (void) const { return m_value; }
400 inline WrappedType<Type> operator+ (const WrappedType<Type>& other) const { return WrappedType<Type>::create((Type)(m_value + other.getValue())); }
401 inline WrappedType<Type> operator* (const WrappedType<Type>& other) const { return WrappedType<Type>::create((Type)(m_value * other.getValue())); }
402 inline WrappedType<Type> operator/ (const WrappedType<Type>& other) const { return WrappedType<Type>::create((Type)(m_value / other.getValue())); }
403 inline WrappedType<Type> operator- (const WrappedType<Type>& other) const { return WrappedType<Type>::create((Type)(m_value - other.getValue())); }
405 inline WrappedType<Type>& operator+= (const WrappedType<Type>& other) { m_value += other.getValue(); return *this; }
406 inline WrappedType<Type>& operator*= (const WrappedType<Type>& other) { m_value *= other.getValue(); return *this; }
407 inline WrappedType<Type>& operator/= (const WrappedType<Type>& other) { m_value /= other.getValue(); return *this; }
408 inline WrappedType<Type>& operator-= (const WrappedType<Type>& other) { m_value
421 Type m_value; member in class:deqp::gls::__anon4945::GLValue::WrappedType
465 deFloat16 m_value; member in class:deqp::gls::__anon4945::GLValue::Half
495 deInt32 m_value; member in class:deqp::gls::__anon4945::GLValue::Fixed
[all...]
/external/deqp/framework/platform/lnx/X11/
H A DtcuLnxX11GlxPlatform.cpp454 Rank (void) : m_value(0), m_bitsLeft(64) {}
457 deUint64 getValue (void) { return m_value; }
460 deUint64 m_value; member in class:tcu::lnx::x11::glx::Rank
468 m_value = m_value << bits | de::min((1U << bits) - 1, value);
475 m_value = m_value << bits | ((1U << bits) - 1 - de::min((1U << bits) - 1U, value));
/external/eigen/Eigen/src/SparseCore/
H A DSparseMatrix.h869 StorageIndex m_value; member in class:Eigen::SparseMatrix::SingletonVector
873 : m_index(convert_index(i)), m_value(convert_index(v))
876 StorageIndex operator[](Index i) const { return i==m_index ? m_value : 0; }
/external/ltp/testcases/kernel/fs/doio/
H A Diogen.c112 int m_value; member in struct:strmap
596 req->r_type = sc->m_value;
599 if (sc->m_value == LISTIO) {
659 switch (Offset_Mode->m_value) {
761 switch (sc->m_value) {
765 req->r_data.read.r_oflags = O_RDONLY | flags->m_value;
771 (aio_strat == NULL) ? 0 : aio_strat->m_value;
779 req->r_data.write.r_oflags = O_WRONLY | flags->m_value;
786 (aio_strat == NULL) ? 0 : aio_strat->m_value;
812 m_value;
[all...]
/external/pdfium/core/fpdfapi/page/
H A Dfpdf_page_func.cpp119 explicit CPDF_PSOP(PDF_PSOP op) : m_op(op), m_value(0) {
123 explicit CPDF_PSOP(FX_FLOAT value) : m_op(PSOP_CONST), m_value(value) {}
125 : m_op(PSOP_PROC), m_value(0), m_proc(std::move(proc)) {}
129 return m_value;
145 const FX_FLOAT m_value; member in class:CPDF_PSOP
/external/deqp/executor/
H A DxeTestCaseResult.hpp174 NumericValue (deInt64 value) : m_type(TYPE_INT64) { m_value.int64 = value; }
175 NumericValue (double value) : m_type(TYPE_FLOAT64) { m_value.float64 = value; }
178 deInt64 getInt64 (void) const { DE_ASSERT(getType() == TYPE_INT64); return m_value.int64; }
179 double getFloat64 (void) const { DE_ASSERT(getType() == TYPE_FLOAT64); return m_value.float64; }
187 } m_value; member in class:xe::ri::NumericValue
/external/emma/core/java12/com/vladium/util/args/
H A DOptsParser.java1439 m_value = value;
1449 return m_value;
1454 return m_ID + ": [" + m_value + "]";
1492 private final String m_value; field in class:OptsParser.Token

Completed in 808 milliseconds

123