/third_party/boost/boost/heap/detail/ |
D | mutable_heap.hpp | 62 return q_.get_stability_count(); in get_stability_count() 67 q_.set_stability_count(new_count); in set_stability_count() 133 q_type q_; member in boost::heap::detail::priority_queue_mutable_wrapper 138 q_(cmp) in priority_queue_mutable_wrapper() 142 q_(rhs.q_), objects(rhs.objects) in priority_queue_mutable_wrapper() 145 q_.push(it); in priority_queue_mutable_wrapper() 150 q_ = rhs.q_; in operator =() 152 q_.clear(); in operator =() 154 q_.push(it); in operator =() 160 q_(std::move(rhs.q_)) in priority_queue_mutable_wrapper() [all …]
|
/third_party/boost/boost/heap/ |
D | priority_queue.hpp | 76 container_type q_; member in boost::heap::priority_queue 128 super_t(rhs), q_(rhs.q_) in priority_queue() 140 super_t(std::move(rhs)), q_(std::move(rhs.q_)) in BOOST_NOEXCEPT_IF() 153 q_ = std::move(rhs.q_); in operator =() 167 q_ = rhs.q_; in operator =() 179 return q_.empty(); in empty() 190 return q_.size(); in size() 201 return q_.max_size(); in max_size() 212 q_.clear(); in clear() 223 return q_.get_allocator(); in get_allocator() [all …]
|
D | d_ary_heap.hpp | 75 container_type q_; member in boost::heap::detail::d_ary_heap 95 return heap->q_.size() - 1; in max_index() 112 return heap->q_[index]; in get_internal_value() 160 super_t(rhs), q_(rhs.q_) in d_ary_heap() 165 super_t(std::move(rhs)), q_(std::move(rhs.q_)) in d_ary_heap() 171 q_ = std::move(rhs.q_); in operator =() 179 q_ = rhs.q_; in operator =() 185 return q_.empty(); in empty() 190 return q_.size(); in size() 195 return q_.max_size(); in max_size() [all …]
|
/third_party/boost/libs/ratio/example/ |
D | si_physics.cpp | 76 double q_; member in User1::quantity 80 quantity() : q_(1) {} in quantity() 82 double get() const {return q_;} in get() 83 void set(double q) {q_ = q;} in set() 89 double q_; member in User1::quantity 91 quantity() : q_(1) {} in quantity() 92 quantity(seconds d) : q_(d.count()) {} // note: only User1::seconds needed here in quantity() 94 double get() const {return q_;} in get() 95 void set(double q) {q_ = q;} in set() 101 double q_; member in User1::quantity [all …]
|
/third_party/boost/libs/thread/test/sync/mutual_exclusion/sync_bounded_queue/ |
D | multi_thread_pass.cpp | 27 boost::sync_bounded_queue<int> &q_; member 31 q_(q), go_(go) in call_push() 38 q_.push(42); in operator ()() 45 boost::sync_bounded_queue<int> &q_; member 50 q_(q), go_(go), end_(end) in call_push_2() 57 q_.push(42); in operator ()() 65 boost::sync_bounded_queue<int> &q_; member 69 q_(q), go_(go) in call_pull() 76 return q_.pull(); in operator ()()
|
/third_party/boost/libs/thread/test/sync/mutual_exclusion/sync_deque/ |
D | multi_thread_pass.cpp | 28 boost::sync_deque<ValueType> *q_; member 32 q_(q), go_(go) in call_push_back() 39 q_->push_back(42); in operator ()() 46 boost::sync_deque<ValueType> *q_; member 50 q_(q), go_(go) in call_pull_front() 57 return q_->pull_front(); in operator ()() 64 boost::sync_deque<ValueType> *q_; member 68 q_(q), go_(go) in call_wait_pull_front() 75 return q_->wait_pull_front(v); in operator ()()
|
/third_party/boost/libs/thread/test/sync/mutual_exclusion/sync_queue/ |
D | multi_thread_pass.cpp | 28 boost::sync_queue<ValueType> *q_; member 32 q_(q), go_(go) in call_push() 39 q_->push(42); in operator ()() 46 boost::sync_queue<ValueType> *q_; member 50 q_(q), go_(go) in call_pull() 57 return q_->pull(); in operator ()() 64 boost::sync_queue<ValueType> *q_; member 68 q_(q), go_(go) in call_wait_pull() 75 return q_->wait_pull(v); in operator ()()
|
/third_party/abseil-cpp/absl/random/ |
D | zipf_distribution.h | 68 double q() const { return q_; } in q() 72 return a.k_ == b.k_ && a.q_ == b.q_ && a.v_ == b.v_; 88 double q_; variable 151 : k_(k), q_(q), v_(v), one_minus_q_(1 - q) { in param_type() 209 return q_ == 2.0 ? (1.0 / (x * x)) : std::exp(std::log(x) * -q_); in pow_negative_q()
|
D | zipf_distribution_test.cc | 112 ZipfModel(size_t k, double q, double v) : k_(k), q_(q), v_(v) {} in ZipfModel() 173 double qm1 = q_ - 1.0; in Init() 181 (q_ == 2.0) ? (1.0 / x) in Init() 182 : (q_ == 3.0) ? (1.0 / (x * x)) : std::pow(x, -qm1); in Init() 187 (q_ == 2.0) ? (1.0 / (x * x)) in Init() 188 : (q_ == 3.0) ? (1.0 / (x * x * x)) : std::pow(x, -q_); in Init() 202 const double q_; member in __anon5f87bf7d0111::ZipfModel
|
D | discrete_distribution.h | 104 std::vector<std::pair<double, size_t>> q_; // (acceptance, alternate) pairs variable 186 q_.emplace_back(1.0, 0); in init() 189 q_ = random_internal::InitDiscreteDistribution(&p_); in init() 200 const auto& q = p.q_[idx]; in operator()
|
/third_party/skia/third_party/externals/abseil-cpp/absl/random/ |
D | zipf_distribution.h | 68 double q() const { return q_; } in q() 72 return a.k_ == b.k_ && a.q_ == b.q_ && a.v_ == b.v_; 88 double q_; variable 151 : k_(k), q_(q), v_(v), one_minus_q_(1 - q) { in param_type() 209 return q_ == 2.0 ? (1.0 / (x * x)) : std::exp(std::log(x) * -q_); in pow_negative_q()
|
D | zipf_distribution_test.cc | 112 ZipfModel(size_t k, double q, double v) : k_(k), q_(q), v_(v) {} in ZipfModel() 173 double qm1 = q_ - 1.0; in Init() 181 (q_ == 2.0) ? (1.0 / x) in Init() 182 : (q_ == 3.0) ? (1.0 / (x * x)) : std::pow(x, -qm1); in Init() 187 (q_ == 2.0) ? (1.0 / (x * x)) in Init() 188 : (q_ == 3.0) ? (1.0 / (x * x * x)) : std::pow(x, -q_); in Init() 202 const double q_; member in __anonc184c6120111::ZipfModel
|
D | discrete_distribution.h | 104 std::vector<std::pair<double, size_t>> q_; // (acceptance, alternate) pairs variable 186 q_.emplace_back(1.0, 0); in init() 189 q_ = random_internal::InitDiscreteDistribution(&p_); in init() 200 const auto& q = p.q_[idx]; in operator()
|
/third_party/boost/libs/chrono/example/ |
D | time2_demo.cpp | 284 double q_; member in User1::quantity 286 quantity() : q_(1) {} in quantity() 288 double get() const {return q_;} in get() 289 void set(double q) {q_ = q;} in set() 295 double q_; member in User1::quantity 297 quantity() : q_(1) {} in quantity() 298 quantity(seconds d) : q_(d.count()) {} // note: only User1::seconds needed here in quantity() 300 double get() const {return q_;} in get() 301 void set(double q) {q_ = q;} in set() 307 double q_; member in User1::quantity [all …]
|
/third_party/skia/third_party/externals/libwebp/src/enc/ |
D | quant_enc.c | 214 m->iq_[i] = (1 << QFIX) / m->q_[i]; in ExpandMatrix() 222 m->q_[i] = m->q_[1]; in ExpandMatrix() 229 m->sharpen_[i] = (kFreqSharpening[i] * m->q_[i]) >> SHARPEN_BITS; in ExpandMatrix() 233 sum += m->q_[i]; in ExpandMatrix() 250 m->y1_.q_[0] = kDcTable[clip(q + enc->dq_y1_dc_, 0, 127)]; in SetupMatrices() 251 m->y1_.q_[1] = kAcTable[clip(q, 0, 127)]; in SetupMatrices() 253 m->y2_.q_[0] = kDcTable[ clip(q + enc->dq_y2_dc_, 0, 127)] * 2; in SetupMatrices() 254 m->y2_.q_[1] = kAcTable2[clip(q + enc->dq_y2_ac_, 0, 127)]; in SetupMatrices() 256 m->uv_.q_[0] = kDcTable[clip(q + enc->dq_uv_dc_, 0, 117)]; in SetupMatrices() 257 m->uv_.q_[1] = kAcTable[clip(q + enc->dq_uv_ac_, 0, 127)]; in SetupMatrices() [all …]
|
D | filter_enc.c | 221 const int delta = (dqm->max_edge_ * dqm->y2_.q_[1]) >> 3; in VP8AdjustFilterStrength()
|
/third_party/flutter/skia/third_party/externals/libwebp/src/enc/ |
D | quant_enc.c | 214 m->iq_[i] = (1 << QFIX) / m->q_[i]; in ExpandMatrix() 222 m->q_[i] = m->q_[1]; in ExpandMatrix() 229 m->sharpen_[i] = (kFreqSharpening[i] * m->q_[i]) >> SHARPEN_BITS; in ExpandMatrix() 233 sum += m->q_[i]; in ExpandMatrix() 250 m->y1_.q_[0] = kDcTable[clip(q + enc->dq_y1_dc_, 0, 127)]; in SetupMatrices() 251 m->y1_.q_[1] = kAcTable[clip(q, 0, 127)]; in SetupMatrices() 253 m->y2_.q_[0] = kDcTable[ clip(q + enc->dq_y2_dc_, 0, 127)] * 2; in SetupMatrices() 254 m->y2_.q_[1] = kAcTable2[clip(q + enc->dq_y2_ac_, 0, 127)]; in SetupMatrices() 256 m->uv_.q_[0] = kDcTable[clip(q + enc->dq_uv_dc_, 0, 117)]; in SetupMatrices() 257 m->uv_.q_[1] = kAcTable[clip(q + enc->dq_uv_ac_, 0, 127)]; in SetupMatrices() [all …]
|
D | filter_enc.c | 221 const int delta = (dqm->max_edge_ * dqm->y2_.q_[1]) >> 3; in VP8AdjustFilterStrength()
|
/third_party/freetype/src/base/ |
D | ftcalc.c | 257 FT_Long q_; in FT_DivFix() local 269 q_ = (FT_Long)q; in FT_DivFix() 271 return s < 0 ? NEG_LONG( q_ ) : q_; in FT_DivFix() 612 FT_Long q_; in FT_DivFix() local 648 q_ = (FT_Long)q; in FT_DivFix() 650 return s < 0 ? NEG_LONG( q_ ) : q_; in FT_DivFix()
|
/third_party/flutter/skia/third_party/externals/freetype/src/base/ |
D | ftcalc.c | 258 FT_Long q_; in FT_DivFix() local 270 q_ = (FT_Long)q; in FT_DivFix() 272 return s < 0 ? NEG_LONG( q_ ) : q_; in FT_DivFix() 613 FT_Long q_; in FT_DivFix() local 649 q_ = (FT_Long)q; in FT_DivFix() 651 return s < 0 ? NEG_LONG( q_ ) : q_; in FT_DivFix()
|
/third_party/skia/third_party/externals/freetype/src/base/ |
D | ftcalc.c | 257 FT_Long q_; in FT_DivFix() local 269 q_ = (FT_Long)q; in FT_DivFix() 271 return s < 0 ? NEG_LONG( q_ ) : q_; in FT_DivFix() 612 FT_Long q_; in FT_DivFix() local 648 q_ = (FT_Long)q; in FT_DivFix() 650 return s < 0 ? NEG_LONG( q_ ) : q_; in FT_DivFix()
|
/third_party/nghttp2/src/ |
D | shrpx_worker.cc | 403 q_.push_back(event); in send() 419 if (q_.empty()) { in process_events() 424 wev = q_.front(); in process_events() 425 q_.pop_front(); in process_events()
|
/third_party/skia/third_party/externals/libwebp/src/dsp/ |
D | enc_sse41.c | 213 const __m128i q0 = _mm_loadu_si128((const __m128i*)&mtx->q_[0]); in DoQuantizeBlock_SSE41() 214 const __m128i q8 = _mm_loadu_si128((const __m128i*)&mtx->q_[8]); in DoQuantizeBlock_SSE41()
|
/third_party/flutter/skia/third_party/externals/libwebp/src/dsp/ |
D | enc_sse41.c | 213 const __m128i q0 = _mm_loadu_si128((const __m128i*)&mtx->q_[0]); in DoQuantizeBlock_SSE41() 214 const __m128i q8 = _mm_loadu_si128((const __m128i*)&mtx->q_[8]); in DoQuantizeBlock_SSE41()
|
/third_party/boost/libs/ratio/doc/ |
D | ratio.qbk | 462 double q_; 466 quantity() : q_(1) {} 468 double get() const {return q_;} 469 void set(double q) {q_ = q;} 475 double q_; 477 quantity() : q_(1) {} 478 quantity(seconds d) : q_(d.count()) {} // note: only User1::seconds needed here 480 double get() const {return q_;} 481 void set(double q) {q_ = q;} 487 double q_; [all …]
|