Searched defs:m_value (Results 1 - 25 of 128) sorted by last modified time

123456

/external/valgrind/main/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/stlport/test/unit/
H A Dsort_test.cpp79 : m_index(index), m_value(value) {}
82 { return m_index == other.m_index && m_value == other.m_value; }
84 { return m_value < other.m_value; }
87 int m_index, m_value; member in struct:Data
/external/smack/asmack-master/static-src/novell-openldap-jldap/com/novell/sasl/client/
H A DParsedDirective.java28 private String m_value; field in class:ParsedDirective
36 m_value = value;
42 return m_value;
/external/smack/src/com/novell/sasl/client/
H A DParsedDirective.java28 private String m_value; field in class:ParsedDirective
36 m_value = value;
42 return m_value;
/external/owasp/sanitizer/tools/emma/lib/
H A Demma.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/vladium/ com/vladium/app/ com/vladium/app/IAppVersion ...
/external/lldb/include/lldb/Core/
H A DThreadSafeValue.h29 m_value (),
35 m_value (value),
50 value = m_value;
60 return m_value;
67 m_value = value;
75 m_value = value;
85 T m_value; member in class:lldb_private::ThreadSafeValue
H A DValue.h36 // m_value contains...
190 return m_value;
202 return m_value;
229 m_value = m_vector.GetAsScalar();
272 Scalar m_value; member in class:lldb_private::Value
H A DValueObject.h1198 Value m_value; member in class:lldb_private::ValueObject
/external/lldb/include/lldb/Host/
H A DPredicate.h56 m_value(),
72 m_value(initial_value),
91 /// Copies the current \a m_value in a thread safe manor and returns
101 T value = m_value;
108 /// Set the contained \a m_value to \a new_value in a thread safe
127 const T old_value = m_value;
128 m_value = value;
134 /// Set some bits in \a m_value.
136 /// Logically set the bits \a bits in the contained \a m_value in a
140 /// The bits to set in \a m_value
470 T m_value; ///< The templatized value T that we are protecting access to member in class:lldb_private::Predicate
[all...]
/external/lldb/include/lldb/Interpreter/
H A DOptionGroupBoolean.h66 return m_value;
72 return m_value;
76 OptionValueBoolean m_value; member in class:lldb_private::OptionGroupBoolean
H A DOptionGroupString.h65 return m_value;
71 return m_value;
75 OptionValueString m_value; member in class:lldb_private::OptionGroupString
H A DOptionGroupUInt64.h65 return m_value;
71 return m_value;
75 OptionValueUInt64 m_value; member in class:lldb_private::OptionGroupUInt64
/external/lldb/include/lldb/Target/
H A DStopInfo.h66 return m_value;
204 uint64_t m_value; // A generic value that can be used for things pertaining to this stop info member in class:lldb_private::StopInfo
/external/lldb/source/Plugins/Process/FreeBSD/
H A DProcessMonitor.cpp283 m_value(value), m_result(result)
292 RegisterValue &m_value; member in class:ReadRegOperation
306 m_value = *(uintptr_t *)(((caddr_t)&regs) + m_offset);
308 memcpy(&m_value, (((caddr_t)&regs) + m_offset), m_size);
322 m_value(value), m_result(result)
330 const RegisterValue &m_value; member in class:WriteRegOperation
343 *(uintptr_t *)(((caddr_t)&regs) + m_offset) = (uintptr_t)m_value.GetAsUInt64();
/external/lldb/source/Plugins/Process/Linux/
H A DProcessMonitor.cpp461 m_value(value), m_result(result)
470 RegisterValue &m_value; member in class:ReadRegOperation
486 m_value = data;
503 m_value(value), m_result(result)
512 const RegisterValue &m_value; member in class:WriteRegOperation
523 buf = (void*) m_value.GetAsUInt32();
525 buf = (void*) m_value.GetAsUInt64();
/external/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFFormValue.h50 const ValueType& Value() const { return m_value; }
55 bool IsInlinedCStr() const { return (m_value.data != NULL) && m_value.data == (uint8_t*)m_value.value.cstr; }
60 bool Boolean() const { return m_value.value.uval != 0; }
61 uint64_t Unsigned() const { return m_value.value.uval; }
62 void SetUnsigned(uint64_t uval) { m_value.value.uval = uval; }
63 int64_t Signed() const { return m_value.value.sval; }
64 void SetSigned(int64_t sval) { m_value.value.sval = sval; }
77 ValueType m_value; // Contain member in class:DWARFFormValue
[all...]
/external/lldb/test/lang/cpp/breakpoints/
H A Dnested.cpp10 Baz (int value):m_value(value) {}
13 printf ("%s returning: %d.\n", __FUNCTION__, m_value);
14 return m_value;
17 int m_value; member in class:Foo::Bar::Baz
23 Baz2 (int value):m_value(value) {}
26 printf ("%s returning: %d.\n", __FUNCTION__, m_value);
27 return m_value;
30 int m_value; member in class:Foo::Bar::Baz2
45 Baz (int value):m_value(value) {}
48 printf ("%s returning: %d.\n", __FUNCTION__, m_value);
52 int m_value; member in class:Baz
[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/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/core/controls/
H A DCSpinner.java48 private int m_value = 0; field in class:CSpinner
76 m_text.setText("" + m_value);
89 m_value = (int) (m_format.parse(m_text.getText()).doubleValue() * m_multiplier);
90 if (m_value < m_minimum || m_value > m_maximum) {
94 m_value,
210 setSelection(Math.max(m_value, m_minimum));
218 setSelection(Math.min(m_value, m_maximum));
236 if (newValue != m_value) {
237 m_value
[all...]
/external/eigen/Eigen/src/SparseCore/
H A DSparseCwiseBinaryOp.h118 m_value = m_functor(m_lhsIter.value(), m_rhsIter.value());
125 m_value = m_functor(m_lhsIter.value(), Scalar(0));
131 m_value = m_functor(Scalar(0), m_rhsIter.value());
136 m_value = 0; // this is to avoid a compilation warning
142 EIGEN_STRONG_INLINE Scalar value() const { return m_value; }
154 Scalar m_value; member in class:Eigen::internal::sparse_cwise_binary_op_inner_iterator_selector
H A DSparseMatrix.h820 Index m_value; member in class:Eigen::SparseMatrix::SingletonVector
824 : m_index(i), m_value(v)
827 Index operator[](Index i) const { return i==m_index ? m_value : 0; }
H A DSparseUtil.h152 Triplet() : m_row(0), m_col(0), m_value(0) {}
155 : m_row(i), m_col(j), m_value(v)
165 const Scalar& value() const { return m_value; }
168 Scalar m_value; member in class:Eigen::Triplet
/external/eigen/unsupported/Eigen/src/AutoDiff/
H A DAutoDiffScalar.h82 : m_value(value), m_derivatives(DerType::Zero(nbDer))
90 : m_value(value)
98 : m_value(value), m_derivatives(der)
103 : m_value(other.value()), m_derivatives(other.derivatives())
112 : m_value(other.value()), m_derivatives(other.derivatives())
118 m_value = other.value();
125 m_value = other.value();
130 // inline operator const Scalar& () const { return m_value; }
131 // inline operator Scalar& () { return m_value; }
133 inline const Scalar& value() const { return m_value; }
370 Scalar m_value; member in class:Eigen::AutoDiffScalar
[all...]
/external/elfutils/0.153/libelf/
H A Delf.h1076 Elf32_Xword m_value; /* Symbol value. */ member in struct:__anon21250
1085 Elf64_Xword m_value; /* Symbol value. */ member in struct:__anon21251
/external/emma/ant/ant14/com/vladium/emma/ant/
H A DPropertyElement.java34 return m_value;
44 m_value = value;
54 private String m_name, m_value; field in class:PropertyElement

Completed in 352 milliseconds

123456