Home
last modified time | relevance | path

Searched refs:value_ (Results 26 – 50 of 8631) sorted by relevance

12345678910>>...346

/dports/www/firefox-esr/firefox-91.8.0/js/src/frontend/
H A DBytecodeOffset.h25 ptrdiff_t value_ = 0; variable
42 return value_ == rhs.value_;
56 return value_ < rhs.value_;
61 return value_ <= rhs.value_;
66 return value_ > rhs.value_;
71 return value_ >= rhs.value_;
76 MOZ_ASSERT(size_t(uint32_t(value_)) == size_t(value_)); in toUint32()
87 ptrdiff_t value_ = 0; variable
92 explicit constexpr BytecodeOffsetDiff(ptrdiff_t value_) : value_(value_) {} in BytecodeOffsetDiff() argument
95 return value_ == rhs.value_;
[all …]
/dports/lang/spidermonkey78/firefox-78.9.0/js/src/frontend/
H A DBytecodeOffset.h25 ptrdiff_t value_ = 0; variable
42 return value_ == rhs.value_;
56 return value_ < rhs.value_;
61 return value_ <= rhs.value_;
66 return value_ > rhs.value_;
71 return value_ >= rhs.value_;
76 MOZ_ASSERT(size_t(uint32_t(value_)) == size_t(value_)); in toUint32()
87 ptrdiff_t value_ = 0; variable
92 explicit constexpr BytecodeOffsetDiff(ptrdiff_t value_) : value_(value_) {} in BytecodeOffsetDiff() argument
95 return value_ == rhs.value_;
[all …]
/dports/www/firefox/firefox-99.0/js/src/frontend/
H A DBytecodeOffset.h25 ptrdiff_t value_ = 0; variable
42 return value_ == rhs.value_;
56 return value_ < rhs.value_;
61 return value_ <= rhs.value_;
66 return value_ > rhs.value_;
71 return value_ >= rhs.value_;
76 MOZ_ASSERT(size_t(uint32_t(value_)) == size_t(value_)); in toUint32()
87 ptrdiff_t value_ = 0; variable
92 explicit constexpr BytecodeOffsetDiff(ptrdiff_t value_) : value_(value_) {} in BytecodeOffsetDiff() argument
95 return value_ == rhs.value_;
[all …]
/dports/mail/thunderbird/thunderbird-91.8.0/js/src/frontend/
H A DBytecodeOffset.h25 ptrdiff_t value_ = 0; variable
42 return value_ == rhs.value_;
56 return value_ < rhs.value_;
61 return value_ <= rhs.value_;
66 return value_ > rhs.value_;
71 return value_ >= rhs.value_;
76 MOZ_ASSERT(size_t(uint32_t(value_)) == size_t(value_)); in toUint32()
87 ptrdiff_t value_ = 0; variable
92 explicit constexpr BytecodeOffsetDiff(ptrdiff_t value_) : value_(value_) {} in BytecodeOffsetDiff() argument
95 return value_ == rhs.value_;
[all …]
/dports/multimedia/assimp/assimp-5.1.3/contrib/draco/src/draco/core/
H A Ddraco_index_type.h75 return value_ == i.value_;
81 return value_ != i.value_;
87 return value_ < i.value_;
91 return value_ > i.value_;
95 return value_ >= i.value_;
102 ++value_;
122 return ThisIndexType(value_ + i.value_);
128 return ThisIndexType(value_ - i.value_);
135 value_ += i.value_;
143 value_ -= i.value_;
[all …]
/dports/www/wt/wt-4.6.1/src/Wt/
H A DWJavaScriptHandle.h56 : value_(handle.value_), id_(handle.id_) in WJavaScriptHandle()
69 value_ = handle.value_;
78 : value_(handle.value_), id_(handle.id_) in WJavaScriptHandle()
97 value_ = handle.value_;
118 return value_; in isValid()
128 if (!value_) { in jsRef()
144 if (!value_) { in setValue()
153 (*value_) = v; in setValue()
168 if (!value_) { in value()
171 return *value_; in value()
[all …]
/dports/games/frogatto/frogatto-1.3.1/MacOSJet/boost/include/boost/asio/detail/
H A Dsocket_option.hpp39 : value_(0) in boolean()
71 return !value_; in operator !()
92 return &value_; in data()
99 return &value_; in data()
119 value_ = *reinterpret_cast<char*>(&value_) ? 1 : 0; in resize()
132 int value_; member in boost::asio::detail::socket_option::boolean
142 : value_(0) in integer()
148 : value_(v) in integer()
155 value_ = v; in operator =()
162 return value_; in value()
[all …]
/dports/math/vtk6/VTK-6.2.0/ThirdParty/jsoncpp/vtkjsoncpp/
H A Djson_value.cpp411 value_ = other.value_; in Value()
490 std::swap(value_, other.value_); in swap()
516 return value_.int_ < other.value_.int_; in operator <()
518 return value_.uint_ < other.value_.uint_; in operator <()
520 return value_.real_ < other.value_.real_; in operator <()
522 return value_.bool_ < other.value_.bool_; in operator <()
565 return value_.int_ == other.value_.int_; in operator ==()
567 return value_.uint_ == other.value_.uint_; in operator ==()
569 return value_.real_ == other.value_.real_; in operator ==()
571 return value_.bool_ == other.value_.bool_; in operator ==()
[all …]
/dports/math/dune-fem/dune-fem-d1c625e6d51167d0cce57de6adcef21f548a8f82/dune/fem/misc/
H A Ddouble.hh326 : value_( other.value_ ) in Double()
332 value_ = other.value_; in operator =()
339 value_ += other.value_; in operator +=()
346 value_ -= other.value_; in operator -=()
353 value_ *= other.value_; in operator *=()
360 value_ /= other.value_; in operator /=()
602 return (a.value_ == b.value_); in operator ==()
642 return (a.value_ != b.value_); in operator !=()
682 return (a.value_ < b.value_); in operator <()
722 return (a.value_ <= b.value_); in operator <=()
[all …]
/dports/games/openspades/openspades-0.1.3/Sources/json/
H A Djson_value.cpp432 value_ = other.value_; in Value()
521 std::swap( value_, other.value_ ); in swap()
575 return value_.int_ < other.value_.int_; in operator <()
577 return value_.uint_ < other.value_.uint_; in operator <()
579 return value_.real_ < other.value_.real_; in operator <()
581 return value_.bool_ < other.value_.bool_; in operator <()
641 return value_.int_ == other.value_.int_; in operator ==()
643 return value_.uint_ == other.value_.uint_; in operator ==()
645 return value_.real_ == other.value_.real_; in operator ==()
647 return value_.bool_ == other.value_.bool_; in operator ==()
[all …]
/dports/devel/hyperscan/boost_1_75_0/boost/asio/detail/
H A Dsocket_option.hpp38 : value_(0) in boolean()
70 return !value_; in operator !()
91 return &value_; in data()
98 return &value_; in data()
118 value_ = *reinterpret_cast<char*>(&value_) ? 1 : 0; in resize()
131 int value_; member in boost::asio::detail::socket_option::boolean
141 : value_(0) in integer()
147 : value_(v) in integer()
154 value_ = v; in operator =()
161 return value_; in value()
[all …]
/dports/devel/boost-python-libs/boost_1_72_0/boost/asio/detail/
H A Dsocket_option.hpp38 : value_(0) in boolean()
70 return !value_; in operator !()
91 return &value_; in data()
98 return &value_; in data()
118 value_ = *reinterpret_cast<char*>(&value_) ? 1 : 0; in resize()
131 int value_; member in boost::asio::detail::socket_option::boolean
141 : value_(0) in integer()
147 : value_(v) in integer()
154 value_ = v; in operator =()
161 return value_; in value()
[all …]
/dports/science/py-scipy/scipy-1.7.1/scipy/_lib/boost/boost/asio/detail/
H A Dsocket_option.hpp38 : value_(0) in boolean()
70 return !value_; in operator !()
91 return &value_; in data()
98 return &value_; in data()
118 value_ = *reinterpret_cast<char*>(&value_) ? 1 : 0; in resize()
131 int value_; member in boost::asio::detail::socket_option::boolean
141 : value_(0) in integer()
147 : value_(v) in integer()
154 value_ = v; in operator =()
161 return value_; in value()
[all …]
/dports/devel/R-cran-BH/BH/inst/include/boost/asio/detail/
H A Dsocket_option.hpp38 : value_(0) in boolean()
70 return !value_; in operator !()
91 return &value_; in data()
98 return &value_; in data()
118 value_ = *reinterpret_cast<char*>(&value_) ? 1 : 0; in resize()
131 int value_; member in boost::asio::detail::socket_option::boolean
141 : value_(0) in integer()
147 : value_(v) in integer()
154 value_ = v; in operator =()
161 return value_; in value()
[all …]
/dports/devel/rpclib/rpclib-2.2.1/dependencies/include/asio/detail/
H A Dsocket_option.hpp37 : value_(0) in boolean()
57 return !!value_; in value()
69 return !value_; in operator !()
90 return &value_; in data()
97 return &value_; in data()
117 value_ = *reinterpret_cast<char*>(&value_) ? 1 : 0; in resize()
130 int value_; member in clmdep_asio::detail::socket_option::boolean
140 : value_(0) in integer()
146 : value_(v) in integer()
153 value_ = v; in operator =()
[all …]
/dports/audio/carla/Carla-2.4.1/source/modules/hylia/link/asio/detail/
H A Dsocket_option.hpp37 : value_(0) in boolean()
57 return !!value_; in value()
69 return !value_; in operator !()
90 return &value_; in data()
97 return &value_; in data()
117 value_ = *reinterpret_cast<char*>(&value_) ? 1 : 0; in resize()
130 int value_; member in asio::detail::socket_option::boolean
140 : value_(0) in integer()
146 : value_(v) in integer()
153 value_ = v; in operator =()
[all …]
/dports/databases/percona57-pam-for-mysql/boost_1_59_0/boost/asio/detail/
H A Dsocket_option.hpp38 : value_(0) in boolean()
70 return !value_; in operator !()
91 return &value_; in data()
98 return &value_; in data()
118 value_ = *reinterpret_cast<char*>(&value_) ? 1 : 0; in resize()
131 int value_; member in boost::asio::detail::socket_option::boolean
141 : value_(0) in integer()
147 : value_(v) in integer()
154 value_ = v; in operator =()
161 return value_; in value()
[all …]
/dports/math/stanmath/math-4.2.0/lib/boost_1.75.0/boost/asio/detail/
H A Dsocket_option.hpp38 : value_(0) in boolean()
70 return !value_; in operator !()
91 return &value_; in data()
98 return &value_; in data()
118 value_ = *reinterpret_cast<char*>(&value_) ? 1 : 0; in resize()
131 int value_; member in boost::asio::detail::socket_option::boolean
141 : value_(0) in integer()
147 : value_(v) in integer()
154 value_ = v; in operator =()
161 return value_; in value()
[all …]
/dports/databases/galera/galera-release_25.3.35/asio/asio/detail/
H A Dsocket_option.hpp37 : value_(0) in boolean()
57 return !!value_; in value()
69 return !value_; in operator !()
90 return &value_; in data()
97 return &value_; in data()
117 value_ = *reinterpret_cast<char*>(&value_) ? 1 : 0; in resize()
130 int value_; member in asio::detail::socket_option::boolean
140 : value_(0) in integer()
146 : value_(v) in integer()
153 value_ = v; in operator =()
[all …]
/dports/databases/xtrabackup/boost_1_59_0/boost/asio/detail/
H A Dsocket_option.hpp38 : value_(0) in boolean()
70 return !value_; in operator !()
91 return &value_; in data()
98 return &value_; in data()
118 value_ = *reinterpret_cast<char*>(&value_) ? 1 : 0; in resize()
131 int value_; member in boost::asio::detail::socket_option::boolean
141 : value_(0) in integer()
147 : value_(v) in integer()
154 value_ = v; in operator =()
161 return value_; in value()
[all …]
/dports/databases/percona57-server/boost_1_59_0/boost/asio/detail/
H A Dsocket_option.hpp38 : value_(0) in boolean()
70 return !value_; in operator !()
91 return &value_; in data()
98 return &value_; in data()
118 value_ = *reinterpret_cast<char*>(&value_) ? 1 : 0; in resize()
131 int value_; member in boost::asio::detail::socket_option::boolean
141 : value_(0) in integer()
147 : value_(v) in integer()
154 value_ = v; in operator =()
161 return value_; in value()
[all …]
/dports/databases/percona57-client/boost_1_59_0/boost/asio/detail/
H A Dsocket_option.hpp38 : value_(0) in boolean()
70 return !value_; in operator !()
91 return &value_; in data()
98 return &value_; in data()
118 value_ = *reinterpret_cast<char*>(&value_) ? 1 : 0; in resize()
131 int value_; member in boost::asio::detail::socket_option::boolean
141 : value_(0) in integer()
147 : value_(v) in integer()
154 value_ = v; in operator =()
161 return value_; in value()
[all …]
/dports/emulators/citra-qt5/citra-ac98458e0/externals/boost/boost/asio/detail/
H A Dsocket_option.hpp38 : value_(0) in boolean()
70 return !value_; in operator !()
91 return &value_; in data()
98 return &value_; in data()
118 value_ = *reinterpret_cast<char*>(&value_) ? 1 : 0; in resize()
131 int value_; member in boost::asio::detail::socket_option::boolean
141 : value_(0) in integer()
147 : value_(v) in integer()
154 value_ = v; in operator =()
161 return value_; in value()
[all …]
/dports/emulators/citra/citra-ac98458e0/externals/boost/boost/asio/detail/
H A Dsocket_option.hpp38 : value_(0) in boolean()
70 return !value_; in operator !()
91 return &value_; in data()
98 return &value_; in data()
118 value_ = *reinterpret_cast<char*>(&value_) ? 1 : 0; in resize()
131 int value_; member in boost::asio::detail::socket_option::boolean
141 : value_(0) in integer()
147 : value_(v) in integer()
154 value_ = v; in operator =()
161 return value_; in value()
[all …]
/dports/emulators/mess/mame-mame0226/3rdparty/asio/include/asio/detail/
H A Dsocket_option.hpp37 : value_(0) in boolean()
57 return !!value_; in value()
69 return !value_; in operator !()
90 return &value_; in data()
97 return &value_; in data()
117 value_ = *reinterpret_cast<char*>(&value_) ? 1 : 0; in resize()
130 int value_; member in asio::detail::socket_option::boolean
140 : value_(0) in integer()
146 : value_(v) in integer()
153 value_ = v; in operator =()
[all …]

12345678910>>...346