Searched refs:m_value (Results 1 - 25 of 120) sorted by relevance

12345

/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/
H A DThreadSafeValue.h22 ThreadSafeValue() : m_value(), m_mutex() {}
24 ThreadSafeValue(const T &value) : m_value(value), m_mutex() {}
32 value = m_value;
39 const T &GetValueNoLock() const { return m_value; }
43 m_value = value;
48 void SetValueNoLock(const T &value) { m_value = value; }
53 T m_value; member in class:lldb_private::ThreadSafeValue
/freebsd-11-stable/contrib/libstdc++/include/ext/pb_ds/detail/binomial_heap_base_/
H A Dfind_fn_imps.hpp59 return m_p_max->m_value;
73 if (Cmp_Fn::operator()(m_p_max->m_value, p_cur->m_value))
/freebsd-11-stable/contrib/libstdc++/include/ext/pb_ds/detail/cc_hash_table_map_/
H A Ddebug_no_store_hash_fn_imps.hpp53 { map_debug_base::check_key_exists(PB_DS_V2F(p->m_value)); }
H A Ddebug_store_hash_fn_imps.hpp54 map_debug_base::check_key_exists(PB_DS_V2F(p_e->m_value));
55 comp_hash pos_hash_pair = ranged_hash_fn_base::operator()(PB_DS_V2F(p_e->m_value));
H A Dentry_list_fn_imps.hpp69 new (&p_e->m_value) value_type(r_val);
83 new (&p_e->m_value) value_type(r_val);
94 p_e->m_value.~value_type();
/freebsd-11-stable/contrib/libstdc++/include/ext/pb_ds/detail/pairing_heap_/
H A Dfind_fn_imps.hpp55 return base_type::m_p_root->m_value;
/freebsd-11-stable/contrib/libstdc++/include/ext/pb_ds/detail/gp_hash_table_map_/
H A Dconstructor_destructor_no_store_hash_fn_imps.hpp56 new (&p_e->m_value) mapped_value_type(r_val);
58 _GLIBCXX_DEBUG_ONLY(map_debug_base::insert_new(p_e->m_value.first);)
H A Dresize_no_store_hash_fn_imps.hpp54 const_key_reference r_key = PB_DS_V2F(p_e->m_value);
64 new (&p_new_e->m_value) value_type(p_e->m_value);
H A Dresize_store_hash_fn_imps.hpp54 const_key_reference r_key = PB_DS_V2F(p_e->m_value);
65 new (&p_new_e->m_value) value_type(p_e->m_value);
H A Dconstructor_destructor_store_hash_fn_imps.hpp56 new (&p_e->m_value) mapped_value_type(r_val);
59 _GLIBCXX_DEBUG_ONLY(map_debug_base::insert_new(p_e->m_value.first);)
/freebsd-11-stable/contrib/libstdc++/include/ext/pb_ds/detail/thin_heap_/
H A Dfind_fn_imps.hpp56 return m_p_max->m_value;
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/
H A DPredicate.h47 Predicate() : m_value(), m_mutex(), m_condition() {}
57 : m_value(initial_value), m_mutex(), m_condition() {}
66 /// Copies the current \a m_value in a thread safe manor and returns
73 T value = m_value;
79 /// Set the contained \a m_value to \a new_value in a thread safe
96 const T old_value = m_value;
97 m_value = value;
102 /// Wait for Cond(m_value) to be true.
104 /// Waits in a thread safe way for Cond(m_value) to be true. If Cond(m_value)
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/
H A DValueObjectCast.cpp36 // m_value.SetContext (Value::eContextTypeClangType,
38 m_value.SetCompilerType(cast_type);
54 return m_value.GetValueByteSize(nullptr, &exe_ctx);
67 Value old_value(m_value);
69 m_value = m_parent->GetValue();
71 // m_value.SetContext (Value::eContextTypeClangType, compiler_type);
72 m_value.SetCompilerType(compiler_type);
78 SetValueDidChange(m_value.GetValueType() != old_value.GetValueType() ||
79 m_value.GetScalar() != old_value.GetScalar());
82 m_error = m_value
[all...]
H A DValueObjectMemory.cpp54 m_value.SetContext(Value::eContextTypeLLDBType, m_type_sp.get());
58 m_value.SetValueType(Value::eValueTypeLoadAddress);
59 m_value.GetScalar() = load_address;
63 m_value.SetValueType(Value::eValueTypeFileAddress);
64 m_value.GetScalar() = file_address;
66 m_value.GetScalar() = m_address.GetOffset();
67 m_value.SetValueType(Value::eValueTypeScalar);
85 // m_value.SetContext(Value::eContextTypeClangType,
87 m_value.SetCompilerType(m_compiler_type);
90 m_value
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/
H A DOptionGroupBoolean.cpp21 : m_value(default_value, default_value) {
45 m_value.SetCurrentValue(!m_value.GetDefaultValue());
46 m_value.SetOptionWasSet();
48 error = m_value.SetValueFromString(option_value);
55 m_value.Clear();
H A DOptionGroupString.cpp22 : m_value(default_value, default_value) {
40 Status error(m_value.SetValueFromString(option_arg));
46 m_value.Clear();
H A DOptionGroupUInt64.cpp22 : m_value(default_value, default_value) {
40 Status error(m_value.SetValueFromString(option_arg));
46 m_value.Clear();
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFFormValue.h49 const ValueType &Value() const { return m_value; }
50 ValueType &ValueRef() { return m_value; }
51 void SetValue(const ValueType &val) { m_value = val; }
62 bool Boolean() const { return m_value.value.uval != 0; }
63 uint64_t Unsigned() const { return m_value.value.uval; }
64 void SetUnsigned(uint64_t uval) { m_value.value.uval = uval; }
65 int64_t Signed() const { return m_value.value.sval; }
66 void SetSigned(int64_t sval) { m_value.value.sval = sval; }
82 // Compile unit where m_value was located.
83 // It may be different from compile unit where m_value refer
86 ValueType m_value; // Contains all data for the form member in class:DWARFFormValue
[all...]
H A DDWARFFormValue.cpp27 m_value = ValueTypeTag();
37 m_value.data = nullptr;
46 m_value.value.uval =
50 m_value.value.uval = data.GetU8(offset_ptr);
54 m_value.value.uval = data.GetU16(offset_ptr);
58 m_value.value.uval = data.GetU32(offset_ptr);
62 m_value.value.uval = 16;
67 m_value.value.uval = data.GetULEB128(offset_ptr);
71 m_value.value.cstr = data.GetCStr(offset_ptr);
74 m_value
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Interpreter/
H A DOptionGroupBoolean.h40 OptionValueBoolean &GetOptionValue() { return m_value; }
42 const OptionValueBoolean &GetOptionValue() const { return m_value; }
45 OptionValueBoolean m_value; member in class:lldb_private::OptionGroupBoolean
H A DOptionGroupString.h37 OptionValueString &GetOptionValue() { return m_value; }
39 const OptionValueString &GetOptionValue() const { return m_value; }
42 OptionValueString m_value; member in class:lldb_private::OptionGroupString
H A DOptionGroupUInt64.h38 OptionValueUInt64 &GetOptionValue() { return m_value; }
40 const OptionValueUInt64 &GetOptionValue() const { return m_value; }
43 OptionValueUInt64 m_value; member in class:lldb_private::OptionGroupUInt64
/freebsd-11-stable/contrib/libstdc++/include/ext/pb_ds/detail/bin_search_tree_/
H A Dsplit_join_fn_imps.hpp63 const bool greater = Cmp_Fn::operator()(PB_DS_V2F(m_p_head->m_p_right->m_value), PB_DS_V2F(other.m_p_head->m_p_left->m_value));
65 const bool lesser = Cmp_Fn::operator()(PB_DS_V2F(other.m_p_head->m_p_right->m_value), PB_DS_V2F(m_p_head->m_p_left->m_value));
103 if (Cmp_Fn::operator()(r_key, PB_DS_V2F(m_p_head->m_p_left->m_value)))
111 if (!Cmp_Fn::operator()(r_key, PB_DS_V2F(m_p_head->m_p_right->m_value)))
H A Dfind_fn_imps.hpp57 PB_DS_V2F(p_nd->m_value),
80 PB_DS_V2F(p_nd->m_value),
103 PB_DS_V2F(p_nd->m_value)))
125 PB_DS_V2F(p_nd->m_value)))
148 if (!Cmp_Fn::operator()(PB_DS_V2F(p_nd->m_value), r_key))
159 PB_DS_V2F(p_pot->m_value)))?
174 if (!Cmp_Fn::operator()(PB_DS_V2F(p_nd->m_value), r_key))
185 PB_DS_V2F(p_pot->m_value)))?
/freebsd-11-stable/contrib/libstdc++/include/ext/pb_ds/detail/list_update_map_/
H A Diterators_fn_imps.hpp57 return iterator(&m_p_l->m_value, m_p_l, this);
70 return iterator(&m_p_l->m_value, m_p_l, const_cast<PB_DS_CLASS_C_DEC* >(this));

Completed in 168 milliseconds

12345