HomeSort by relevance Sort by last modified time
    Searched refs:lower_bound (Results 26 - 50 of 694) sorted by null

12 3 4 5 6 7 8 91011>>

  /ndk/tests/device/test-gnustl-full/unit/
bound_test.cpp 67 vector<int>::iterator location = lower_bound(v1.begin(), v1.end(), 3);
77 char const** location = lower_bound((char const**)str, (char const**)str + strCt, (const char *)"d", char_str_less);
multiset_test.cpp 68 i = s.lower_bound(3);
78 ci = s.lower_bound(3);
91 ci = crs.lower_bound(3);
  /ndk/tests/device/test-stlport/unit/
bound_test.cpp 67 vector<int>::iterator location = lower_bound(v1.begin(), v1.end(), 3);
77 char const** location = lower_bound((char const**)str, (char const**)str + strCt, (const char *)"d", char_str_less);
multiset_test.cpp 68 i = s.lower_bound(3);
78 ci = s.lower_bound(3);
91 ci = crs.lower_bound(3);
  /external/chromium_org/third_party/closure_linter/closure_linter/
errorrules.py 32 'without warning.', lower_bound=1)
  /external/chromium_org/ui/gfx/
color_utils.h 35 // If a component is negative in either |lower_bound| or |upper_bound|, that
43 const HSL& lower_bound,
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/x86_64-linux/include/c++/4.6/ext/pb_ds/detail/ov_tree_map_/
debug_fn_imps.hpp 70 _GLIBCXX_DEBUG_ASSERT(lower_bound(PB_DS_V2F(*it)) == it);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/ov_tree_map_/
debug_fn_imps.hpp 67 PB_DS_DEBUG_VERIFY(lower_bound(PB_DS_V2F(*it)) == it);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/pb_ds/detail/ov_tree_map_/
debug_fn_imps.hpp 67 PB_DS_DEBUG_VERIFY(lower_bound(PB_DS_V2F(*it)) == it);
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/ext/pb_ds/detail/ov_tree_map_/
debug_fn_imps.hpp 70 _GLIBCXX_DEBUG_ASSERT(lower_bound(PB_DS_V2F(*it)) == it);
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/ext/pb_ds/detail/ov_tree_map_/
debug_fn_imps.hpp 67 PB_DS_DEBUG_VERIFY(lower_bound(PB_DS_V2F(*it)) == it);
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.6/include/ext/pb_ds/detail/ov_tree_map_/
debug_fn_imps.hpp 70 _GLIBCXX_DEBUG_ASSERT(lower_bound(PB_DS_V2F(*it)) == it);
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/ext/pb_ds/detail/ov_tree_map_/
debug_fn_imps.hpp 67 PB_DS_DEBUG_VERIFY(lower_bound(PB_DS_V2F(*it)) == it);
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/ext/pb_ds/detail/ov_tree_map_/
debug_fn_imps.hpp 67 PB_DS_DEBUG_VERIFY(lower_bound(PB_DS_V2F(*it)) == it);
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/pb_ds/detail/ov_tree_map_/
debug_fn_imps.hpp 67 PB_DS_DEBUG_VERIFY(lower_bound(PB_DS_V2F(*it)) == it);
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/detail/
binary_search.hpp 37 ForwardIter lower_bound(ForwardIter first, ForwardIter last, function in namespace:boost::detail
62 ForwardIter lower_bound(ForwardIter first, ForwardIter last, function in namespace:boost::detail
158 left = boost::detail::lower_bound(first, middle, val);
190 left = boost::detail::lower_bound(first, middle, val, comp);
202 ForwardIter i = boost::detail::lower_bound(first, last, val);
210 ForwardIter i = boost::detail::lower_bound(first, last, val, comp);
  /external/lldb/source/Breakpoint/
BreakpointSiteList.cpp 209 BreakpointSiteList::FindInRange (lldb::addr_t lower_bound, lldb::addr_t upper_bound, BreakpointSiteList &bp_site_list) const
211 if (lower_bound > upper_bound)
216 lower = m_bp_site_list.lower_bound(lower_bound);
228 if (prev_bp->GetLoadAddress() + prev_bp->GetByteSize() > lower_bound)
  /external/stlport/test/unit/
multiset_test.cpp 68 i = s.lower_bound(3);
78 ci = s.lower_bound(3);
91 ci = crs.lower_bound(3);
  /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/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/clang/lib/Lex/
PPConditionalDirectiveRecord.cpp 30 low = std::lower_bound(CondDirectiveLocs.begin(), CondDirectiveLocs.end(),
60 low = std::lower_bound(CondDirectiveLocs.begin(), CondDirectiveLocs.end(),
  /external/libcxx/test/numerics/rand/rand.dis/rand.dist.samp/rand.dist.samp.pconst/
eval_param.pass.cpp 59 I lb = std::lower_bound(u.begin(), u.end(), b[i]);
60 I ub = std::lower_bound(u.begin(), u.end(), b[i+1]);
  /external/lldb/include/lldb/Core/
ThreadSafeSTLMap.h 129 const_iterator pos = m_collection.lower_bound (key);
147 return m_collection.lower_bound (key);
  /external/llvm/lib/MC/
MCRegisterInfo.cpp 66 const DwarfLLVMRegPair *I = std::lower_bound(M, M+Size, Key);
77 const DwarfLLVMRegPair *I = std::lower_bound(M, M+Size, Key);
  /external/llvm/utils/TableGen/
SequenceToOffsetTable.h 71 typename SeqMap::iterator I = Seqs.lower_bound(Seq);
102 typename SeqMap::const_iterator I = Seqs.lower_bound(Seq);

Completed in 1578 milliseconds

12 3 4 5 6 7 8 91011>>