Home
last modified time | relevance | path

Searched refs:val_ (Results 1 – 25 of 64) sorted by relevance

123

/third_party/boost/boost/polygon/
Disotropy.hpp350 unsigned int val_; member in boost::polygon::direction_1d
353 inline direction_1d() : val_(LOW) {} in direction_1d()
354 inline direction_1d(const direction_1d& that) : val_(that.val_) {} in direction_1d()
355 inline direction_1d(const direction_1d_enum val) : val_(val) {} in direction_1d()
359 val_ = d.val_; return * this; } in operator =()
360 inline bool operator==(direction_1d d) const { return (val_ == d.val_); } in operator ==()
362 inline unsigned int to_int(void) const { return val_; } in to_int()
363 inline direction_1d& backward() { val_ ^= 1; return *this; } in backward()
364 inline int get_sign() const { return val_ * 2 - 1; } in get_sign()
371 unsigned int val_; member in boost::polygon::orientation_2d
[all …]
/third_party/skia/third_party/externals/abseil-cpp/absl/container/internal/
Dtracked.h35 Tracked(const T& val) : val_(val) {} in Tracked()
37 : val_(that.val_), in Tracked()
43 : val_(std::move(that.val_)), in Tracked()
49 val_ = that.val_;
55 val_ = std::move(that.val_);
61 const T& val() const { return val_; } in val()
64 return a.val_ == b.val_;
74 T val_;
/third_party/abseil-cpp/absl/container/internal/
Dtracked.h35 Tracked(const T& val) : val_(val) {} in Tracked()
37 : val_(that.val_), in Tracked()
43 : val_(std::move(that.val_)), in Tracked()
49 val_ = that.val_;
55 val_ = std::move(that.val_);
61 const T& val() const { return val_; } in val()
64 return a.val_ == b.val_;
74 T val_;
/third_party/protobuf/src/google/protobuf/
Dmap_field.h85 val_.string_value_.Destruct(); in ~MapKey()
100 val_.int64_value_ = value; in SetInt64Value()
104 val_.uint64_value_ = value; in SetUInt64Value()
108 val_.int32_value_ = value; in SetInt32Value()
112 val_.uint32_value_ = value; in SetUInt32Value()
116 val_.bool_value_ = value; in SetBoolValue()
120 *val_.string_value_.get_mutable() = std::move(val); in SetStringValue()
125 return val_.int64_value_; in GetInt64Value()
129 return val_.uint64_value_; in GetUInt64Value()
133 return val_.int32_value_; in GetInt32Value()
[all …]
/third_party/skia/third_party/externals/brotli/c/dec/
Dbit_reader.h37 brotli_reg_t val_; /* pre-fetched bits */ member
44 brotli_reg_t val_; member
68 to->val_ = from->val_; in BrotliBitReaderSaveState()
76 to->val_ = from->val_; in BrotliBitReaderRestoreState()
112 br->val_ >>= 56; in BrotliFillBitWindow()
114 br->val_ |= BROTLI_UNALIGNED_LOAD64LE(br->next_in) << 8; in BrotliFillBitWindow()
121 br->val_ >>= 48; in BrotliFillBitWindow()
123 br->val_ |= BROTLI_UNALIGNED_LOAD64LE(br->next_in) << 16; in BrotliFillBitWindow()
129 br->val_ >>= 32; in BrotliFillBitWindow()
131 br->val_ |= ((uint64_t)BROTLI_UNALIGNED_LOAD32LE(br->next_in)) << 32; in BrotliFillBitWindow()
[all …]
Dbit_reader.c30 br->val_ = 0; in BrotliInitBitReader()
31 br->bit_pos_ = sizeof(br->val_) << 3; in BrotliInitBitReader()
35 size_t aligned_read_mask = (sizeof(br->val_) >> 1) - 1; in BrotliWarmupBitReader()
/third_party/node/deps/brotli/c/dec/
Dbit_reader.h37 brotli_reg_t val_; /* pre-fetched bits */ member
44 brotli_reg_t val_; member
68 to->val_ = from->val_; in BrotliBitReaderSaveState()
76 to->val_ = from->val_; in BrotliBitReaderRestoreState()
112 br->val_ >>= 56; in BrotliFillBitWindow()
114 br->val_ |= BROTLI_UNALIGNED_LOAD64LE(br->next_in) << 8; in BrotliFillBitWindow()
121 br->val_ >>= 48; in BrotliFillBitWindow()
123 br->val_ |= BROTLI_UNALIGNED_LOAD64LE(br->next_in) << 16; in BrotliFillBitWindow()
129 br->val_ >>= 32; in BrotliFillBitWindow()
131 br->val_ |= ((uint64_t)BROTLI_UNALIGNED_LOAD32LE(br->next_in)) << 32; in BrotliFillBitWindow()
[all …]
Dbit_reader.c30 br->val_ = 0; in BrotliInitBitReader()
31 br->bit_pos_ = sizeof(br->val_) << 3; in BrotliInitBitReader()
35 size_t aligned_read_mask = (sizeof(br->val_) >> 1) - 1; in BrotliWarmupBitReader()
/third_party/boost/boost/units/
Dabsolute.hpp40 BOOST_CONSTEXPR absolute() : val_() { } in absolute()
41 BOOST_CONSTEXPR absolute(const value_type& val) : val_(val) { } in absolute()
42 BOOST_CONSTEXPR absolute(const this_type& source) : val_(source.val_) { } in absolute()
44 …ONSTEXPR this_type& operator=(const this_type& source) { val_ = source.val_; return *thi… in operator =()
46 BOOST_CONSTEXPR const value_type& value() const { return val_; } in value()
48 …BOOST_CXX14_CONSTEXPR const this_type& operator+=(const value_type& val) { val_ += val; retur… in operator +=()
49 …BOOST_CXX14_CONSTEXPR const this_type& operator-=(const value_type& val) { val_ -= val; retur… in operator -=()
52 value_type val_; member in boost::units::absolute
Dquantity.hpp101 BOOST_CONSTEXPR quantity() : val_() in quantity()
106 BOOST_CONSTEXPR quantity(unspecified_null_pointer_constant_type) : val_() in quantity()
111 BOOST_CONSTEXPR quantity(const this_type& source) : val_(source.val_) in quantity()
129 val_ = source.val_; in operator =()
140 val_(source.value()) in quantity()
149 val_(static_cast<Y>(source.value())) in quantity()
159 val_(source.value()) in quantity()
193 : val_(conversion_helper<quantity<Unit2,YY>,this_type>::convert(source).value()) in quantity()
209 : val_(conversion_helper<quantity<Unit2,YY>,this_type>::convert(source).value()) in quantity()
221 : val_(conversion_helper<quantity<Unit2,YY>,this_type>::convert(source).value()) in quantity()
[all …]
/third_party/skia/third_party/externals/tint/src/
Dsymbol.cc24 : val_(val), program_id_(program_id) {} in Symbol()
28 : val_(val), program_id_(program_id), debug_name_(std::move(debug_name)) {} in Symbol()
44 return val_ == other.val_; in operator ==()
50 return val_ < other.val_; in operator <()
54 return "$" + std::to_string(val_); in to_str()
/third_party/boost/libs/optional/test/
Dtestable_classes.hpp19 int val_; member
20 explicit ScopeGuard(int v) : val_(v) {} in ScopeGuard()
21 int& val() { return val_; } in val()
22 const int& val() const { return val_; } in val()
43 int val_; member
44 Impl(int v) : val_(v) {} in Impl()
45 int& val() { return val_; } in val()
46 const int& val() const { return val_; } in val()
/third_party/boost/boost/polygon/detail/
Dvoronoi_ctypes.hpp93 val_ = std::frexp(val, &exp_); in extended_exponent_fpt()
97 val_ = std::frexp(val, &exp_); in extended_exponent_fpt()
102 return val_ > 0; in is_pos()
106 return val_ < 0; in is_neg()
110 return val_ == 0; in is_zero()
114 return extended_exponent_fpt(-val_, exp_); in operator -()
118 if (this->val_ == 0.0 || in operator +()
122 if (that.val_ == 0.0 || in operator +()
128 fpt_type val = std::ldexp(this->val_, exp_dif) + that.val_; in operator +()
132 fpt_type val = std::ldexp(that.val_, exp_dif) + this->val_; in operator +()
[all …]
/third_party/boost/boost/coroutine/
Dasymmetric_coroutine.hpp735 R * val_; member in boost::coroutines::pull_coroutine::iterator
744 val_ = 0; in fetch_()
747 val_ = c_->impl_->get_pointer(); in fetch_()
770 c_( 0), val_( 0) in iterator()
774 c_( c), val_( 0) in iterator()
778 c_( other.c_), val_( other.val_) in iterator()
785 val_ = other.val_; in operator =()
790 { return other.c_ == c_ && other.val_ == val_; } in operator ==()
793 { return other.c_ != c_ || other.val_ != val_; } in operator !=()
805 if ( ! val_) in operator *()
[all …]
/third_party/boost/boost/system/
Derror_code.hpp439 int val_; member in boost::system::error_condition
448 val_( 0 ), failed_( false ), cat_( &generic_category() ) in error_condition()
453 val_( val ), failed_( detail::failed_impl( val, cat ) ), cat_( &cat ) in error_condition()
467 val_ = val; in assign()
482 val_ = 0; in clear()
491 return val_; in value()
544 return lhs.val_ == rhs.val_ && *lhs.cat_ == *rhs.cat_; in operator ==()
549 return *lhs.cat_ < *rhs.cat_ || ( *lhs.cat_ == *rhs.cat_ && lhs.val_ < rhs.val_ ); in operator <()
575 int val_; member in boost::system::error_code
584 val_( 0 ), failed_( false ), cat_( &system_category() ) in error_code()
[all …]
/third_party/flatbuffers/tests/MyGame/Example/
DStat.kt27 val val_ : Long in idInByteBuffer() constant
32 fun mutateVal_(val_: Long) : Boolean { in mutateVal_()
35 bb.putLong(o + bb_pos, val_) in mutateVal_()
67 fun createStat(builder: FlatBufferBuilder, idOffset: Int, val_: Long, count: UShort) : Int { in createStat()
69 addVal_(builder, val_) in createStat()
76 fun addVal_(builder: FlatBufferBuilder, val_: Long) = builder.addLong(1, val_, 0L) in startStat()
/third_party/boost/libs/hana/include/boost/hana/functional/
Dalways.hpp45 T val_;
49 { return val_; }
53 { return val_; }
57 { return std::move(val_); }
/third_party/boost/boost/hana/functional/
Dalways.hpp45 T val_;
49 { return val_; }
53 { return val_; }
57 { return std::move(val_); }
/third_party/flutter/skia/third_party/externals/libwebp/src/utils/
Dbit_reader_utils.c149 br->val_ = 0; in VP8LInitBitReader()
153 if (length > sizeof(br->val_)) { in VP8LInitBitReader()
154 length = sizeof(br->val_); in VP8LInitBitReader()
159 br->val_ = value; in VP8LInitBitReader()
183 br->val_ >>= 8; in ShiftBytes()
184 br->val_ |= ((vp8l_val_t)br->buf_[br->pos_]) << (VP8L_LBITS - 8); in ShiftBytes()
196 if (br->pos_ + sizeof(br->val_) < br->len_) { in VP8LDoFillBitWindow()
197 br->val_ >>= VP8L_WBITS; in VP8LDoFillBitWindow()
199 br->val_ |= (vp8l_val_t)HToLE32(WebPMemToUint32(br->buf_ + br->pos_)) << in VP8LDoFillBitWindow()
/third_party/skia/third_party/externals/libwebp/src/utils/
Dbit_reader_utils.c149 br->val_ = 0; in VP8LInitBitReader()
153 if (length > sizeof(br->val_)) { in VP8LInitBitReader()
154 length = sizeof(br->val_); in VP8LInitBitReader()
159 br->val_ = value; in VP8LInitBitReader()
183 br->val_ >>= 8; in ShiftBytes()
184 br->val_ |= ((vp8l_val_t)br->buf_[br->pos_]) << (VP8L_LBITS - 8); in ShiftBytes()
196 if (br->pos_ + sizeof(br->val_) < br->len_) { in VP8LDoFillBitWindow()
197 br->val_ >>= VP8L_WBITS; in VP8LDoFillBitWindow()
199 br->val_ |= (vp8l_val_t)HToLE32(WebPMemToUint32(br->buf_ + br->pos_)) << in VP8LDoFillBitWindow()
/third_party/boost/libs/pfr/test/run/
Doptional_like.cpp11 T val_; member
23 f.a.val_ = 5; in main()
25 BOOST_TEST_EQ(boost::pfr::get<0>(f).val_, 5); in main()
Dget_non_default_constructible.cpp11 T val_; member
23 f.a.val_ = 5; in main()
25 BOOST_TEST_EQ(boost::pfr::get<0>(f).val_, 5); in main()
/third_party/boost/libs/variant/test/
Dconst_ref_apply_visitor.cpp19 int val_; member
21 construction_logger(int val) : val_(val) in construction_logger()
23 std::cout << val_ << " constructed\n"; in construction_logger()
27 val_(cl.val_) in construction_logger()
29 std::cout << val_ << " copy constructed\n"; in construction_logger()
34 val_(cl.val_) in construction_logger()
36 std::cout << val_ << " move constructed\n"; in construction_logger()
42 return os << cl.val_; in operator <<()
47 return is >> cl.val_; in operator <<()
/third_party/boost/boost/thread/pthread/
Dthread_data.hpp45 int res = pthread_attr_init(&val_); in thread_attributes()
49 int res = pthread_attr_destroy(&val_); in ~thread_attributes()
64 int res = pthread_attr_setstacksize(&val_, size); in set_stack_size()
70 int res = pthread_attr_getstacksize(&val_, &size); in get_stack_size()
78 return &val_; in native_handle()
81 return &val_; in native_handle()
85 pthread_attr_t val_; member in boost::thread_attributes
/third_party/boost/libs/iostreams/test/detail/
Dnull_padded_codecvt.hpp42 null_padded_codecvt_state(int val = 0) : val_(val) { } in null_padded_codecvt_state()
43 operator int() const { return val_; } in operator int()
44 int& val() { return val_; } in val()
45 const int& val() const { return val_; } in val()
47 int val_; member in boost::iostreams::test::null_padded_codecvt_state

123