HomeSort by: relevance | last modified time | path
    Searched refs:m_value (Results 1 - 25 of 233) sorted by relevancy

1 2 3 4 5 6 7 8 910

  /src/external/gpl3/gcc/dist/gcc/
tristate.h 34 tristate (enum value val) : m_value (val) {}
35 tristate (bool val) : m_value (val ? TS_TRUE : TS_FALSE) {}
40 bool is_known () const { return m_value != TS_UNKNOWN; }
41 bool is_unknown () const { return m_value == TS_UNKNOWN; }
42 bool is_true () const { return m_value == TS_TRUE; }
43 bool is_false () const { return m_value == TS_FALSE; }
51 return m_value == other.m_value;
56 return m_value != other.m_value;
62 enum value m_value; member in class:tristate
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/config/aarch64/
fractional-cost.h 31 : m_value (uint64_t (int_value) * SCALE) {}
54 explicit operator bool () const { return m_value != 0; }
57 double as_double () const { return double (m_value) / SCALE; }
61 constexpr fractional_cost (uint64_t value, raw) : m_value (value) {}
69 uint64_t m_value; member in class:fractional_cost
77 : m_value (CEIL (uint64_t (a) * SCALE, uint64_t (b)))
85 uint64_t sum = m_value + other.m_value;
86 return { sum >= m_value ? sum : ~uint64_t (0), RAW };
99 uint64_t diff = m_value - other.m_value
    [all...]
  /src/external/gpl3/gcc/dist/gcc/config/aarch64/
fractional-cost.h 31 : m_value (uint64_t (int_value) * SCALE) {}
54 explicit operator bool () const { return m_value != 0; }
57 double as_double () const { return double (m_value) / SCALE; }
61 constexpr fractional_cost (uint64_t value, raw) : m_value (value) {}
69 uint64_t m_value; member in class:fractional_cost
77 : m_value (CEIL (uint64_t (a) * SCALE, uint64_t (b)))
85 uint64_t sum = m_value + other.m_value;
86 return { sum >= m_value ? sum : ~uint64_t (0), RAW };
99 uint64_t diff = m_value - other.m_value
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/
tristate.h 34 tristate (enum value val) : m_value (val) {}
35 tristate (bool val) : m_value (val ? TS_TRUE : TS_FALSE) {}
40 bool is_known () const { return m_value != TS_UNKNOWN; }
41 bool is_true () const { return m_value == TS_TRUE; }
42 bool is_false () const { return m_value == TS_FALSE; }
50 return m_value == other.m_value;
55 return m_value != other.m_value;
58 enum value get_value () const { return m_value; }
61 enum value m_value; member in class:tristate
    [all...]
  /src/external/bsd/elftosb/dist/common/
Value.h 37 IntegerValue() : m_value(0) {}
38 IntegerValue(uint32_t value) : m_value(value) {}
39 IntegerValue(const IntegerValue & other) : m_value(other.m_value) {}
42 virtual size_t getSize() const { return sizeof(m_value); }
44 inline uint32_t getValue() const { return m_value; }
46 inline operator uint32_t () const { return m_value; }
48 inline IntegerValue & operator = (uint32_t value) { m_value = value; return *this; }
51 uint32_t m_value; //!< The integer value. member in class:elftosb::IntegerValue
85 SizedIntegerValue & operator = (uint8_t value) { m_value = value; m_size = kByteSize; return *this;
121 std::string m_value; member in class:elftosb::StringValue
    [all...]
OptionDictionary.cpp 19 if (it->second.m_value)
21 delete it->second.m_value;
65 return it->second.m_value;
96 if (it->second.m_value)
98 delete it->second.m_value;
106 newValue.m_value = value;
116 if (m_options[name].m_value)
118 delete m_options[name].m_value;
145 m_options[name].m_value = 0;
157 m_options[name].m_value = 0
    [all...]
StringMatcher.h 45 FixedMatcher(const std::string & fixedValue) : m_value(fixedValue) {}
53 return testValue == m_value;
57 const std::string & m_value; //!< The section name to look for. member in class:elftosb::FixedMatcher
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/ext/pb_ds/detail/binomial_heap_base_/
find_fn_imps.hpp 55 return m_p_max->m_value;
67 if (Cmp_Fn::operator()(m_p_max->m_value, p_cur->m_value))
  /src/external/gpl3/gcc/dist/libstdc++-v3/include/ext/pb_ds/detail/binomial_heap_base_/
find_fn_imps.hpp 55 return m_p_max->m_value;
67 if (Cmp_Fn::operator()(m_p_max->m_value, p_cur->m_value))
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/ext/pb_ds/detail/pairing_heap_/
find_fn_imps.hpp 50 return base_type::m_p_root->m_value;
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/ext/pb_ds/detail/thin_heap_/
find_fn_imps.hpp 52 return m_p_max->m_value;
  /src/external/gpl3/gcc/dist/libstdc++-v3/include/ext/pb_ds/detail/pairing_heap_/
find_fn_imps.hpp 50 return base_type::m_p_root->m_value;
  /src/external/gpl3/gcc/dist/libstdc++-v3/include/ext/pb_ds/detail/thin_heap_/
find_fn_imps.hpp 52 return m_p_max->m_value;
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/ext/pb_ds/detail/cc_hash_table_map_/
debug_store_hash_fn_imps.hpp 51 debug_base::check_key_exists(PB_DS_V2F(p_e->m_value), __file, __line);
52 comp_hash pos_hash_pair = ranged_hash_fn_base::operator()(PB_DS_V2F(p_e->m_value));
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/ext/pb_ds/detail/gp_hash_table_map_/
constructor_destructor_no_store_hash_fn_imps.hpp 52 new (&p_e->m_value) mapped_value_type(r_val);
54 _GLIBCXX_DEBUG_ONLY(debug_base::insert_new(p_e->m_value.first);)
resize_no_store_hash_fn_imps.hpp 50 key_const_reference r_key = PB_DS_V2F(p_e->m_value);
60 new (&p_new_e->m_value) value_type(p_e->m_value);
resize_store_hash_fn_imps.hpp 50 key_const_reference r_key = PB_DS_V2F(p_e->m_value);
61 new (&p_new_e->m_value) value_type(p_e->m_value);
  /src/external/gpl3/gcc/dist/libstdc++-v3/include/ext/pb_ds/detail/cc_hash_table_map_/
debug_store_hash_fn_imps.hpp 51 debug_base::check_key_exists(PB_DS_V2F(p_e->m_value), __file, __line);
52 comp_hash pos_hash_pair = ranged_hash_fn_base::operator()(PB_DS_V2F(p_e->m_value));
  /src/external/gpl3/gcc/dist/libstdc++-v3/include/ext/pb_ds/detail/gp_hash_table_map_/
constructor_destructor_no_store_hash_fn_imps.hpp 52 new (&p_e->m_value) mapped_value_type(r_val);
54 _GLIBCXX_DEBUG_ONLY(debug_base::insert_new(p_e->m_value.first);)
resize_no_store_hash_fn_imps.hpp 50 key_const_reference r_key = PB_DS_V2F(p_e->m_value);
60 new (&p_new_e->m_value) value_type(p_e->m_value);
resize_store_hash_fn_imps.hpp 50 key_const_reference r_key = PB_DS_V2F(p_e->m_value);
61 new (&p_new_e->m_value) value_type(p_e->m_value);
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.mi/
mi-catch-cpp-exceptions.cc 21 int m_value; member in class:my_exception
25 : m_value (v)
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.mi/
mi-catch-cpp-exceptions.cc 21 int m_value; member in class:my_exception
25 : m_value (v)
  /src/external/gpl3/gdb/dist/gdb/target/
waitstatus.h 184 m_value = other.m_value;
187 m_value.execd_pathname = xstrdup (m_value.execd_pathname);
195 m_value = other.m_value;
198 other.m_value.execd_pathname = nullptr;
209 m_value = rhs.m_value;
212 m_value.execd_pathname = xstrdup (m_value.execd_pathname)
448 } m_value {}; union in struct:target_waitstatus
    [all...]
  /src/external/gpl3/gdb.old/dist/gdb/target/
waitstatus.h 184 m_value = other.m_value;
187 m_value.execd_pathname = xstrdup (m_value.execd_pathname);
195 m_value = other.m_value;
198 other.m_value.execd_pathname = nullptr;
209 m_value = rhs.m_value;
212 m_value.execd_pathname = xstrdup (m_value.execd_pathname)
448 } m_value {}; union in struct:target_waitstatus
    [all...]

Completed in 90 milliseconds

1 2 3 4 5 6 7 8 910