Searched defs:lower_bound (Results 26 - 35 of 35) sorted by relevance

12

/external/sfntly/cpp/src/sample/chromium/
H A Dsubsetter_impl.cc287 IntegerSet::const_iterator left = glyph_ids.lower_bound(range_begin);
288 IntegerSet::const_iterator right = glyph_ids.lower_bound(range_end);
397 int32_t lower_bound = b->first_glyph_index(); local
400 BitmapGlyphInfoMap::const_iterator i = loca.lower_bound(lower_bound);
450 int32_t lower_bound = b->first_glyph_index(); local
453 BitmapGlyphInfoMap::const_iterator i = loca.lower_bound(lower_bound);
/external/stlport/stlport/stl/
H A D_tree.h601 iterator lower_bound(const _KT& __x) { return iterator(_M_lower_bound(__x)); } function in class:_Rb_tree
603 const_iterator lower_bound(const _KT& __x) const { return const_iterator(_M_lower_bound(__x)); } function in class:_Rb_tree
610 { return pair<iterator, iterator>(lower_bound(__x), upper_bound(__x)); }
613 { return pair<const_iterator, const_iterator>(lower_bound(__x), upper_bound(__x)); }
617 __p.second = lower_bound(__x);
630 __p.second = lower_bound(__x);
/external/chromium_org/content/renderer/media/android/
H A Dwebmediaplayer_android.cc902 base::TimeDelta lower_bound = local
904 base::TimeDelta upper_bound = lower_bound;
911 // if the lower_bound is smaller than the current time, just use the current
913 lower_bound =
914 std::min(lower_bound, base::TimeDelta::FromSecondsD(currentTime()));
915 interpolator_.SetBounds(lower_bound, upper_bound);
/external/chromium_org/ui/views/accessibility/
H A Dnative_view_accessibility_win.cc1394 int nav_dir, int start_id, int lower_bound, int upper_bound) const {
1400 if ((start_id - 1) <= lower_bound) {
1393 IsValidNav( int nav_dir, int start_id, int lower_bound, int upper_bound) const argument
/external/flac/libFLAC/
H A Dstream_decoder.c2982 FLAC__uint64 first_frame_offset = decoder->private_->first_frame_offset, lower_bound, upper_bound, lower_bound_sample, upper_bound_sample, this_frame_sample; local
3025 lower_bound = first_frame_offset;
3039 FLAC__uint64 new_lower_bound = lower_bound;
3075 lower_bound = new_lower_bound;
3098 if (lower_bound_sample >= upper_bound_sample || lower_bound > upper_bound) {
3105 pos = (FLAC__int64)lower_bound + (FLAC__int64)((FLAC__double)(FLAC__int64)(target_sample - lower_bound_sample) / (FLAC__double)(FLAC__int64)(upper_bound_sample - lower_bound_sample) * (FLAC__double)(FLAC__int64)(upper_bound - lower_bound)) - approx_bytes_per_frame;
3107 pos = (FLAC__int64)lower_bound + (FLAC__int64)((FLAC__double)(target_sample - lower_bound_sample) / (FLAC__double)(upper_bound_sample - lower_bound_sample) * (FLAC__double)(upper_bound - lower_bound)) - approx_bytes_per_frame;
3111 if(upper_bound - lower_bound <
[all...]
/external/chromium_org/content/browser/indexed_db/
H A Dindexed_db_backing_store.cc3633 bool lower_bound = range.lower().IsValid(); local
3642 if (!lower_bound) {
3712 bool lower_bound = range.lower().IsValid(); local
3721 if (!lower_bound) {
/external/chromium_org/net/url_request/
H A Durl_request_unittest.cc3595 int lower_bound = 0; local
3601 lower_bound = upper_bound;
3612 while (upper_bound - lower_bound >= tolerance) {
3613 int num_cookies = (lower_bound + upper_bound) / 2;
3616 lower_bound = num_cookies;
/external/lldb/source/Plugins/SymbolFile/DWARF/
H A DSymbolFileDWARF.cpp4416 uint64_t lower_bound = 0; local
4444 lower_bound = form_value.Unsigned();
4471 if (upper_bound_valid && upper_bound >= lower_bound)
4472 num_elements = upper_bound - lower_bound + 1;
/external/mksh/src/
H A Dedit.c1578 x_bs0(char *cp, char *lower_bound) argument
1581 while ((!lower_bound || (cp > lower_bound)) &&
/external/valgrind/main/drd/tests/
H A Dtsan_unittest.cpp7464 int lower_bound = ARRAY_SIZE * (myId-1) / N_THREADS, local
7467 for (int i = lower_bound; i < upper_bound;
7509 int lower_bound = ARRAY_SIZE * (myId-1) / N_THREADS, local
7515 for (int i = lower_bound + mutex_id, cnt = 0;

Completed in 1588 milliseconds

12