Home
last modified time | relevance | path

Searched refs:lower_bound (Results 1 – 25 of 150) sorted by relevance

123456

/external/libcxx/test/std/containers/associative/map/map.ops/
Dlower_bound.pass.cpp43 R r = m.lower_bound(5); in main()
45 r = m.lower_bound(7); in main()
47 r = m.lower_bound(9); in main()
49 r = m.lower_bound(11); in main()
51 r = m.lower_bound(13); in main()
53 r = m.lower_bound(15); in main()
55 r = m.lower_bound(17); in main()
57 r = m.lower_bound(19); in main()
59 r = m.lower_bound(4); in main()
61 r = m.lower_bound(6); in main()
[all …]
/external/libcxx/test/std/containers/associative/set/
Dlower_bound.pass.cpp42 R r = m.lower_bound(5); in main()
44 r = m.lower_bound(7); in main()
46 r = m.lower_bound(9); in main()
48 r = m.lower_bound(11); in main()
50 r = m.lower_bound(13); in main()
52 r = m.lower_bound(15); in main()
54 r = m.lower_bound(17); in main()
56 r = m.lower_bound(19); in main()
58 r = m.lower_bound(4); in main()
60 r = m.lower_bound(6); in main()
[all …]
/external/libcxx/test/std/containers/associative/multimap/multimap.ops/
Dlower_bound.pass.cpp44 R r = m.lower_bound(4); in main()
46 r = m.lower_bound(5); in main()
48 r = m.lower_bound(6); in main()
50 r = m.lower_bound(7); in main()
52 r = m.lower_bound(8); in main()
54 r = m.lower_bound(9); in main()
56 r = m.lower_bound(10); in main()
74 R r = m.lower_bound(4); in main()
76 r = m.lower_bound(5); in main()
78 r = m.lower_bound(6); in main()
[all …]
/external/libcxx/test/std/containers/associative/multiset/
Dlower_bound.pass.cpp43 R r = m.lower_bound(4); in main()
45 r = m.lower_bound(5); in main()
47 r = m.lower_bound(6); in main()
49 r = m.lower_bound(7); in main()
51 r = m.lower_bound(8); in main()
53 r = m.lower_bound(9); in main()
55 r = m.lower_bound(11); in main()
73 R r = m.lower_bound(4); in main()
75 r = m.lower_bound(5); in main()
77 r = m.lower_bound(6); in main()
[all …]
/external/webrtc/webrtc/voice_engine/test/auto_test/
Dvoe_output_test.cc36 OutputTest(int16_t lower_bound, int16_t upper_bound);
43 void SetOutputBound(int16_t lower_bound, int16_t upper_bound);
53 VoEOutputCheckMediaProcess(int16_t lower_bound, int16_t upper_bound);
75 OutputTest::OutputTest(int16_t lower_bound, int16_t upper_bound) in OutputTest() argument
76 : output_checker_(lower_bound, upper_bound) { in OutputTest()
143 int16_t lower_bound, int16_t upper_bound) in VoEOutputCheckMediaProcess() argument
145 lower_bound_(lower_bound), in VoEOutputCheckMediaProcess()
/external/chromium-trace/catapult/third_party/python_gflags/
Dgflags.py2138 if parser.lower_bound is not None or parser.upper_bound is not None:
2447 return ((self.lower_bound is not None and val < self.lower_bound) or
2457 if self.lower_bound is not None:
2458 _WriteSimpleXMLElement(outfile, 'lower_bound', self.lower_bound, indent)
2482 def __init__(self, lower_bound=None, upper_bound=None): argument
2484 self.lower_bound = lower_bound
2487 if lower_bound is not None and upper_bound is not None:
2488 sh = ("%s in the range [%s, %s]" % (sh, lower_bound, upper_bound))
2489 elif lower_bound == 0:
2495 elif lower_bound is not None:
[all …]
/external/chromium-trace/catapult/third_party/gsutil/third_party/python-gflags/
Dgflags.py2138 if parser.lower_bound is not None or parser.upper_bound is not None:
2447 return ((self.lower_bound is not None and val < self.lower_bound) or
2457 if self.lower_bound is not None:
2458 _WriteSimpleXMLElement(outfile, 'lower_bound', self.lower_bound, indent)
2482 def __init__(self, lower_bound=None, upper_bound=None): argument
2484 self.lower_bound = lower_bound
2487 if lower_bound is not None and upper_bound is not None:
2488 sh = ("%s in the range [%s, %s]" % (sh, lower_bound, upper_bound))
2489 elif lower_bound == 0:
2495 elif lower_bound is not None:
[all …]
/external/libcxx/test/std/numerics/rand/rand.dis/rand.dist.samp/rand.dist.samp.pconst/
Deval.pass.cpp59 I lb = std::lower_bound(u.begin(), u.end(), b[i]); in main()
60 I ub = std::lower_bound(u.begin(), u.end(), b[i+1]); in main()
119 I lb = std::lower_bound(u.begin(), u.end(), b[i]); in main()
120 I ub = std::lower_bound(u.begin(), u.end(), b[i+1]); in main()
179 I lb = std::lower_bound(u.begin(), u.end(), b[i]); in main()
180 I ub = std::lower_bound(u.begin(), u.end(), b[i+1]); in main()
239 I lb = std::lower_bound(u.begin(), u.end(), b[i]); in main()
240 I ub = std::lower_bound(u.begin(), u.end(), b[i+1]); in main()
299 I lb = std::lower_bound(u.begin(), u.end(), b[i]); in main()
300 I ub = std::lower_bound(u.begin(), u.end(), b[i+1]); in main()
[all …]
Deval_param.pass.cpp61 I lb = std::lower_bound(u.begin(), u.end(), b[i]); in main()
62 I ub = std::lower_bound(u.begin(), u.end(), b[i+1]); in main()
/external/ceres-solver/internal/ceres/
Dprogram.cc203 const double lower_bound = parameter_block->LowerBoundForParameter(j); in IsBoundsConstrained() local
205 if (lower_bound > -std::numeric_limits<double>::max() || in IsBoundsConstrained()
225 const double lower_bound = parameter_block->LowerBoundForParameter(j); in IsFeasible() local
227 if (parameters[j] < lower_bound || parameters[j] > upper_bound) { in IsFeasible()
234 parameters, size, j, lower_bound, parameters[j], upper_bound); in IsFeasible()
244 const double lower_bound = parameter_block->LowerBoundForParameter(j); in IsFeasible() local
246 if (lower_bound >= upper_bound) { in IsFeasible()
253 parameters, size, j, lower_bound, upper_bound); in IsFeasible()
/external/google-breakpad/src/processor/
Dcontained_range_map-inl.h75 MapIterator iterator_base = map_->lower_bound(base); in StoreRange()
76 MapIterator iterator_high = map_->lower_bound(high); in StoreRange()
167 MapConstIterator iterator = map_->lower_bound(address); in RetrieveRange()
Drange_map-inl.h68 MapConstIterator iterator_base = map_.lower_bound(base); in StoreRange()
69 MapConstIterator iterator_high = map_.lower_bound(high); in StoreRange()
124 MapConstIterator iterator = map_.lower_bound(address); in RetrieveRange()
/external/libunwind_llvm/test/
Dlibunwind_01.pass.cpp4 void backtrace(int lower_bound) { in backtrace() argument
19 if (n < lower_bound) { in backtrace()
/external/autotest/server/site_tests/firmware_ECThermal/
Dfirmware_ECThermal.py372 lower_bound = -self.INT_MAX
375 lower_bound = self._thermal_setting[sensor_type][idx + 2] - 3
378 lower_bound = self._thermal_setting[sensor_type][idx + 2] - 3
383 logging.info(" Expecting %d - %d C", lower_bound, upper_bound)
386 elif temp_reading < lower_bound:
/external/autotest/client/tests/npb/
Dnpb.py123 lower_bound = full_thrds * (1 - ratio)
126 logging.debug('Lower bound: %s', lower_bound)
129 violates_lower_bound = time_ratio < lower_bound
/external/autotest/client/site_tests/hardware_EC/
Dhardware_EC.py53 lower_bound = target_fanspeed - fan_rpm_error_margin
55 if not (lower_bound <= current_reading <= upper_bound):
/external/libcxx/include/
Dset146 iterator lower_bound(const key_type& k);
147 const_iterator lower_bound(const key_type& k) const;
149 iterator lower_bound(const K& x); // C++14
151 const_iterator lower_bound(const K& x) const; // C++14
326 iterator lower_bound(const key_type& k);
327 const_iterator lower_bound(const key_type& k) const;
329 iterator lower_bound(const K& x); // C++14
331 const_iterator lower_bound(const K& x) const; // C++14
675 iterator lower_bound(const key_type& __k)
676 {return __tree_.lower_bound(__k);}
[all …]
/external/webrtc/webrtc/modules/audio_coding/neteq/
Dnack.cc109 NackList::const_iterator lower_bound = in ChangeFromLateToMissing() local
110 nack_list_.lower_bound(static_cast<uint16_t>( in ChangeFromLateToMissing()
113 for (NackList::iterator it = nack_list_.begin(); it != lower_bound; ++it) in ChangeFromLateToMissing()
/external/sfntly/cpp/src/sample/chromium/
Dsubsetter_impl.cc287 IntegerSet::const_iterator left = glyph_ids.lower_bound(range_begin); in HasOverlap()
288 IntegerSet::const_iterator right = glyph_ids.lower_bound(range_end); in HasOverlap()
397 int32_t lower_bound = b->first_glyph_index(); in ConstructIndexFormat4() local
400 BitmapGlyphInfoMap::const_iterator i = loca.lower_bound(lower_bound); in ConstructIndexFormat4()
450 int32_t lower_bound = b->first_glyph_index(); in ConstructIndexFormat5() local
453 BitmapGlyphInfoMap::const_iterator i = loca.lower_bound(lower_bound); in ConstructIndexFormat5()
/external/libcxx/test/std/numerics/rand/rand.dis/rand.dist.samp/rand.dist.samp.plinear/
Deval.pass.cpp79 int k = std::lower_bound(b, b+Np+1, u[i]) - b - 1; in main()
129 int k = std::lower_bound(b, b+Np+1, u[i]) - b - 1; in main()
179 int k = std::lower_bound(b, b+Np+1, u[i]) - b - 1; in main()
229 int k = std::lower_bound(b, b+Np+1, u[i]) - b - 1; in main()
279 int k = std::lower_bound(b, b+Np+1, u[i]) - b - 1; in main()
329 int k = std::lower_bound(b, b+Np+1, u[i]) - b - 1; in main()
/external/llvm/lib/MC/
DMCRegisterInfo.cpp66 const DwarfLLVMRegPair *I = std::lower_bound(M, M+Size, Key); in getDwarfRegNum()
77 const DwarfLLVMRegPair *I = std::lower_bound(M, M+Size, Key); in getLLVMRegNum()
/external/opencv/cv/src/
Dcvemd.cpp121 CvEMDState * state, float *lower_bound,
155 float *lower_bound, in cvCalcEMD2() argument
218 if( lower_bound ) in cvCalcEMD2()
259 &state, lower_bound, local_buffer_ptr, in cvCalcEMD2()
262 if( result > 0 && lower_bound ) in cvCalcEMD2()
264 emd = *lower_bound; in cvCalcEMD2()
338 CvEMDState* state, float* lower_bound, in icvInitEMD() argument
451 if( lower_bound && equal_sums ) /* check lower bound */ in icvInitEMD()
477 i = *lower_bound <= lb; in icvInitEMD()
478 *lower_bound = lb; in icvInitEMD()
/external/opencv3/modules/imgproc/src/
Demd.cpp121 CvEMDState * state, float *lower_bound,
154 float *lower_bound, in cvCalcEMD2() argument
212 if( lower_bound ) in cvCalcEMD2()
253 &state, lower_bound, local_buf ); in cvCalcEMD2()
255 if( result > 0 && lower_bound ) in cvCalcEMD2()
257 emd = *lower_bound; in cvCalcEMD2()
327 CvEMDState* state, float* lower_bound, in icvInitEMD() argument
431 if( lower_bound && equal_sums ) /* check lower bound */ in icvInitEMD()
457 i = *lower_bound <= lb; in icvInitEMD()
458 *lower_bound = lb; in icvInitEMD()
/external/clang/lib/Lex/
DPPConditionalDirectiveRecord.cpp30 low = std::lower_bound(CondDirectiveLocs.begin(), CondDirectiveLocs.end(), in rangeIntersectsConditionalDirective()
60 low = std::lower_bound(CondDirectiveLocs.begin(), CondDirectiveLocs.end(), in findConditionalDirectiveRegionLoc()
/external/llvm/utils/TableGen/
DSequenceToOffsetTable.h71 typename SeqMap::iterator I = Seqs.lower_bound(Seq); in add()
107 typename SeqMap::const_iterator I = Seqs.lower_bound(Seq); in get()

123456