Searched defs:upper_bound (Results 1 - 25 of 33) sorted by relevance

12

/external/chromium_org/media/base/
H A Dtime_delta_interpolator.cc47 base::TimeDelta upper_bound) {
48 DCHECK(lower_bound <= upper_bound);
52 upper_bound_ = std::max(base::TimeDelta(), upper_bound);
56 void TimeDeltaInterpolator::SetUpperBound(base::TimeDelta upper_bound) { argument
57 DCHECK(upper_bound != kNoTimestamp());
61 upper_bound_ = upper_bound;
46 SetBounds(base::TimeDelta lower_bound, base::TimeDelta upper_bound) argument
/external/chromium_org/media/cast/test/
H A Dfake_receiver_time_offset_estimator.cc29 base::TimeDelta* upper_bound) {
31 *upper_bound = offset_;
27 GetReceiverOffsetBounds( base::TimeDelta* lower_bound, base::TimeDelta* upper_bound) argument
/external/chromium_org/media/cast/logging/
H A Dreceiver_time_offset_estimator_impl_unittest.cc57 base::TimeDelta upper_bound; local
59 EXPECT_FALSE(estimator_.GetReceiverOffsetBounds(&lower_bound, &upper_bound));
82 EXPECT_FALSE(estimator_.GetReceiverOffsetBounds(&lower_bound, &upper_bound));
96 EXPECT_FALSE(estimator_.GetReceiverOffsetBounds(&lower_bound, &upper_bound));
103 EXPECT_TRUE(estimator_.GetReceiverOffsetBounds(&lower_bound, &upper_bound));
106 int64 upper_bound_ms = upper_bound.InMilliseconds();
120 base::TimeDelta upper_bound; local
122 EXPECT_FALSE(estimator_.GetReceiverOffsetBounds(&lower_bound, &upper_bound));
145 EXPECT_FALSE(estimator_.GetReceiverOffsetBounds(&lower_bound, &upper_bound));
155 EXPECT_FALSE(estimator_.GetReceiverOffsetBounds(&lower_bound, &upper_bound));
182 base::TimeDelta upper_bound; local
[all...]
H A Dreceiver_time_offset_estimator_impl.cc105 base::TimeDelta* upper_bound) {
110 *upper_bound = upper_bound_.bound();
114 if (upper_bound < lower_bound) {
115 lower_bound += (lower_bound - upper_bound) / 2;
116 upper_bound = lower_bound;
103 GetReceiverOffsetBounds( base::TimeDelta* lower_bound, base::TimeDelta* upper_bound) argument
/external/jemalloc/src/
H A Dquarantine.c22 static void quarantine_drain(quarantine_t *quarantine, size_t upper_bound);
92 quarantine_drain(quarantine_t *quarantine, size_t upper_bound) argument
95 while (quarantine->curbytes > upper_bound && quarantine->curobjs > 0)
126 size_t upper_bound = (opt_quarantine >= usize) ? opt_quarantine local
128 quarantine_drain(quarantine, upper_bound);
/external/ceres-solver/internal/ceres/
H A Dparameter_block.h185 void SetUpperBound(int index, double upper_bound) { argument
195 upper_bounds_[index] = upper_bound;
H A Dproblem.cc194 double upper_bound) {
195 problem_impl_->SetParameterUpperBound(values, index, upper_bound);
192 SetParameterUpperBound(double* values, int index, double upper_bound) argument
H A Dprogram.cc204 const double upper_bound = parameter_block->UpperBoundForParameter(j); local
206 upper_bound < std::numeric_limits<double>::max()) {
226 const double upper_bound = parameter_block->UpperBoundForParameter(j); local
227 if (parameters[j] < lower_bound || parameters[j] > upper_bound) {
234 parameters, size, j, lower_bound, parameters[j], upper_bound);
245 const double upper_bound = parameter_block->UpperBoundForParameter(j); local
246 if (lower_bound >= upper_bound) {
253 parameters, size, j, lower_bound, upper_bound);
H A Dproblem_impl.cc594 double upper_bound) {
596 ->SetUpperBound(index, upper_bound);
592 SetParameterUpperBound(double* values, int index, double upper_bound) argument
/external/chromium_org/media/cast/sender/
H A Daudio_encoder_unittest.cc37 const base::TimeTicks& upper_bound) {
39 upper_bound_ = upper_bound;
36 SetCaptureTimeBounds(const base::TimeTicks& lower_bound, const base::TimeTicks& upper_bound) argument
/external/chromium_org/sandbox/win/src/
H A Dpolicy_engine_opcodes.cc162 unsigned long upper_bound,
164 if (lower_bound > upper_bound) {
171 opcode->SetArgument(1, upper_bound);
184 unsigned long upper_bound = 0; local
186 opcode->GetArgument(1, &upper_bound);
187 return((lower_bound <= value) && (upper_bound >= value))?
160 MakeOpUlongMatchRange(int16 selected_param, unsigned long lower_bound, unsigned long upper_bound, uint32 options) argument
/external/chromium_org/ui/gfx/
H A Dcolor_utils.cc156 const HSL& upper_bound) {
160 DCHECK(lower_bound.h < 0 || upper_bound.h < 0 ||
161 (lower_bound.h <= 1 && upper_bound.h <= lower_bound.h + 1))
163 << ", upper_bound.h: " << upper_bound.h;
164 DCHECK(lower_bound.s < 0 || upper_bound.s < 0 ||
165 (lower_bound.s <= upper_bound.s && upper_bound.s <= 1))
167 << ", upper_bound.s: " << upper_bound
154 IsWithinHSLRange(const HSL& hsl, const HSL& lower_bound, const HSL& upper_bound) argument
[all...]
H A Dcolor_analysis.cc224 const HSL& upper_bound,
344 if (IsWithinHSLRange(hsl, lower_bound, upper_bound)) {
364 const HSL& upper_bound,
382 upper_bound,
396 const HSL& upper_bound,
409 upper_bound,
220 CalculateKMeanColorOfBuffer(uint8_t* decoded_data, int img_width, int img_height, const HSL& lower_bound, const HSL& upper_bound, KMeanImageSampler* sampler) argument
362 CalculateKMeanColorOfPNG(scoped_refptr<base::RefCountedMemory> png, const HSL& lower_bound, const HSL& upper_bound, KMeanImageSampler* sampler) argument
394 CalculateKMeanColorOfBitmap(const SkBitmap& bitmap, const HSL& lower_bound, const HSL& upper_bound, KMeanImageSampler* sampler) argument
/external/lldb/source/Breakpoint/
H A DBreakpointSiteList.cpp209 BreakpointSiteList::FindInRange (lldb::addr_t lower_bound, lldb::addr_t upper_bound, BreakpointSiteList &bp_site_list) const argument
211 if (lower_bound > upper_bound)
218 || (*lower).first >= upper_bound)
233 upper = m_bp_site_list.upper_bound(upper_bound);
/external/stlport/stlport/stl/
H A D_algo.h479 // Binary search (lower_bound, upper_bound, equal_range, binary_search).
507 inline _ForwardIter upper_bound(_ForwardIter __first, _ForwardIter __last, function
517 inline _ForwardIter upper_bound(_ForwardIter __first, _ForwardIter __last, function
H A D_map.h220 iterator upper_bound(const _KT& __x) { return _M_t.upper_bound(__x); } function in class:map
222 const_iterator upper_bound(const _KT& __x) const { return _M_t.upper_bound(__x); } function in class:map
396 iterator upper_bound(const _KT& __x) { return _M_t.upper_bound(__x); } function in class:multimap
398 const_iterator upper_bound(const _KT& __x) const { return _M_t.upper_bound(__x); } function in class:multimap
H A D_set.h200 iterator upper_bound(const _KT& __x) { return _M_t.upper_bound(__x); } function in class:set
202 const_iterator upper_bound(const _KT& __x) const { return _M_t.upper_bound(__x); } function in class:set
371 iterator upper_bound(const _KT& __x) { return _M_t.upper_bound(__x); } function in class:multiset
373 const_iterator upper_bound(const _KT& __x) const { return _M_t.upper_bound(__x); } function in class:multiset
/external/stlport/stlport/stl/debug/
H A D_tree.h192 iterator upper_bound(const _KT& __x) function in class:_Rb_tree
193 { return iterator(&_M_iter_list, _M_non_dbg_impl.upper_bound(__x)); }
195 const_iterator upper_bound(const _KT& __x) const function in class:_Rb_tree
196 { return const_iterator(&_M_iter_list, _M_non_dbg_impl.upper_bound(__x)); }
201 iterator(&_M_iter_list, _M_non_dbg_impl.upper_bound(__x)));
206 const_iterator(&_M_iter_list, _M_non_dbg_impl.upper_bound(__x)));
/external/chromium_org/content/child/npapi/
H A Dplugin_url_fetcher.cc268 int64 upper_bound = 0, instance_size = 0; local
272 response, &data_offset_, &upper_bound, &instance_size);
/external/chromium_org/media/formats/mp4/
H A Dmp4_stream_parser.cc572 int64 upper_bound = std::min(max_clear_offset, queue_.tail()); local
573 while (mdat_tail_ < upper_bound) {
590 queue_.Trim(std::min(mdat_tail_, upper_bound));
/external/stlport/stlport/stl/pointers/
H A D_set.h278 iterator upper_bound(const _KT& __x) function in class:set
279 { return _S_to_value_ite(_M_t.upper_bound(cast_traits::to_storage_type_crefT(__x))); }
281 const_iterator upper_bound(const _KT& __x) const function in class:set
282 { return _S_to_value_ite(_M_t.upper_bound(cast_traits::to_storage_type_crefT(__x))); }
533 iterator upper_bound(const _KT& __x) function in class:multiset
534 { return _S_to_value_ite(_M_t.upper_bound(cast_traits::to_storage_type_crefT(__x))); }
536 const_iterator upper_bound(const _KT& __x) const function in class:multiset
537 { return _S_to_value_ite(_M_t.upper_bound(cast_traits::to_storage_type_crefT(__x))); }
/external/chromium_org/chromeos/network/onc/
H A Donc_validator.cc360 int upper_bound) {
363 (lower_bound <= actual_value && actual_value <= upper_bound)) {
370 << ", " << upper_bound << "] (boundaries inclusive)"; local
556 // In case of missing type, choose higher upper_bound.
557 int upper_bound = (type == kIPv4) ? 32 : 128; local
559 *result, kRoutingPrefix, lower_bound, upper_bound)) {
357 FieldExistsAndIsNotInRange(const base::DictionaryValue& object, const std::string& field_name, int lower_bound, int upper_bound) argument
/external/chromium_org/net/quic/crypto/
H A Dstrike_register.cc342 uint32 upper_bound = local
346 return make_pair(lower_bound, upper_bound);
/external/chromium_org/third_party/sfntly/cpp/src/sample/chromium/
H A Dsubsetter_impl.cc398 int32_t upper_bound = b->last_glyph_index(); local
410 if (gid > upper_bound) {
451 int32_t upper_bound = b->last_glyph_index(); local
464 if (gid > upper_bound) {
/external/sfntly/cpp/src/sample/chromium/
H A Dsubsetter_impl.cc398 int32_t upper_bound = b->last_glyph_index(); local
410 if (gid > upper_bound) {
451 int32_t upper_bound = b->last_glyph_index(); local
464 if (gid > upper_bound) {

Completed in 687 milliseconds

12