HomeSort by relevance Sort by last modified time
    Searched defs:lower_bound (Results 1 - 15 of 15) sorted by null

  /bionic/libc/bionic/
mbrtoc32.cpp 78 char32_t lower_bound; local
86 lower_bound = 0;
90 lower_bound = 0x80;
94 lower_bound = 0x800;
98 lower_bound = 0x10000;
126 if (c32 < lower_bound) {
  /external/chromium_org/chrome/browser/install_verification/win/
imported_module_verification.cc 62 std::set<ModuleInfo>::const_iterator lower_bound = std::lower_bound( local
65 if (lower_bound != loaded_modules.end() &&
66 lower_bound->ContainsAddress(*address)) {
67 imported_modules->insert(lower_bound->name);
  /external/chromium_org/media/cast/logging/
receiver_time_offset_estimator_impl_unittest.cc 56 base::TimeDelta lower_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));
105 int64 lower_bound_ms = lower_bound.InMilliseconds();
119 base::TimeDelta lower_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))
181 base::TimeDelta lower_bound; local
    [all...]
  /art/runtime/
safe_map.h 76 iterator lower_bound(const K& k) { return map_.lower_bound(k); } function in class:art::SafeMap
77 const_iterator lower_bound(const K& k) const { return map_.lower_bound(k); } function in class:art::SafeMap
  /external/chromium_org/third_party/webrtc/modules/audio_coding/main/acm2/
nack.cc 109 NackList::const_iterator lower_bound = nack_list_.lower_bound( local
113 for (NackList::iterator it = nack_list_.begin(); it != lower_bound; ++it)
  /external/ceres-solver/internal/ceres/
program.cc 203 const double lower_bound = parameter_block->LowerBoundForParameter(j); local
205 if (lower_bound > -std::numeric_limits<double>::max() ||
225 const double lower_bound = parameter_block->LowerBoundForParameter(j); local
227 if (parameters[j] < lower_bound || parameters[j] > upper_bound) {
234 parameters, size, j, lower_bound, parameters[j], upper_bound);
244 const double lower_bound = parameter_block->LowerBoundForParameter(j); local
246 if (lower_bound >= upper_bound) {
253 parameters, size, j, lower_bound, upper_bound);
  /external/chromium_org/sandbox/win/src/
policy_engine_opcodes.cc 161 unsigned long lower_bound,
164 if (lower_bound > upper_bound) {
170 opcode->SetArgument(0, lower_bound);
183 unsigned long lower_bound = 0; local
185 opcode->GetArgument(0, &lower_bound);
187 return((lower_bound <= value) && (upper_bound >= value))?
  /external/chromium_org/net/quic/crypto/
strike_register.cc 329 uint32 lower_bound; local
331 lower_bound = max(horizon_, current_time_internal - window_secs_);
333 lower_bound = horizon_;
346 return make_pair(lower_bound, upper_bound);
  /external/chromium_org/chromeos/network/onc/
onc_validator.cc 359 int lower_bound,
363 (lower_bound <= actual_value && actual_value <= upper_bound)) {
369 << "', but expected a value in the range [" << lower_bound
555 int lower_bound = 1; local
559 *result, kRoutingPrefix, lower_bound, upper_bound)) {
  /external/chromium_org/third_party/sfntly/cpp/src/sample/chromium/
subsetter_impl.cc 287 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/chromium_org/content/renderer/media/android/
webmediaplayer_android.cc 902 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
    [all...]
  /external/flac/libFLAC/
stream_decoder.c 2982 FLAC__uint64 first_frame_offset = decoder->private_->first_frame_offset, lower_bound, upper_bound, lower_bound_sample, upper_bound_sample, this_frame_sample; local
    [all...]
  /external/chromium_org/content/browser/indexed_db/
indexed_db_backing_store.cc 3633 bool lower_bound = range.lower().IsValid(); local
3712 bool lower_bound = range.lower().IsValid(); local
    [all...]
  /external/chromium_org/net/url_request/
url_request_unittest.cc 3595 int lower_bound = 0; local
    [all...]
  /external/lldb/source/Plugins/SymbolFile/DWARF/
SymbolFileDWARF.cpp 4416 uint64_t lower_bound = 0; local
    [all...]

Completed in 400 milliseconds