HomeSort by relevance Sort by last modified time
    Searched refs:upper_bound (Results 1 - 25 of 476) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/map/map.ops/
upper_bound.pass.cpp 14 // iterator upper_bound(const key_type& k);
15 // const_iterator upper_bound(const key_type& k) const;
41 R r = m.upper_bound(5);
43 r = m.upper_bound(7);
45 r = m.upper_bound(9);
47 r = m.upper_bound(11);
49 r = m.upper_bound(13);
51 r = m.upper_bound(15);
53 r = m.upper_bound(17);
55 r = m.upper_bound(19)
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/set/
upper_bound.pass.cpp 14 // iterator upper_bound(const key_type& k);
15 // const_iterator upper_bound(const key_type& k) const;
41 R r = m.upper_bound(5);
43 r = m.upper_bound(7);
45 r = m.upper_bound(9);
47 r = m.upper_bound(11);
49 r = m.upper_bound(13);
51 r = m.upper_bound(15);
53 r = m.upper_bound(17);
55 r = m.upper_bound(19)
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/multimap/multimap.ops/
upper_bound.pass.cpp 14 // iterator upper_bound(const key_type& k);
15 // const_iterator upper_bound(const key_type& k) const;
42 R r = m.upper_bound(4);
44 r = m.upper_bound(5);
46 r = m.upper_bound(6);
48 r = m.upper_bound(7);
50 r = m.upper_bound(8);
52 r = m.upper_bound(9);
54 r = m.upper_bound(10);
72 R r = m.upper_bound(4)
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/multiset/
upper_bound.pass.cpp 14 // iterator upper_bound(const key_type& k);
15 // const_iterator upper_bound(const key_type& k) const;
42 R r = m.upper_bound(4);
44 r = m.upper_bound(5);
46 r = m.upper_bound(6);
48 r = m.upper_bound(7);
50 r = m.upper_bound(8);
52 r = m.upper_bound(9);
54 r = m.upper_bound(11);
72 R r = m.upper_bound(4)
    [all...]
  /external/openssh/openbsd-compat/
bsd-arc4random.c 107 * Calculate a uniformly distributed random number less than upper_bound
111 * returned is outside the range [0, 2**32 % upper_bound). This
113 * [2**32 % upper_bound, 2**32) which maps back to [0, upper_bound)
114 * after reduction modulo upper_bound.
117 arc4random_uniform(u_int32_t upper_bound)
121 if (upper_bound < 2)
125 min = 0x100000000UL % upper_bound;
127 /* Calculate (2**32 % upper_bound) avoiding 64-bit math */
128 if (upper_bound > 0x80000000
    [all...]
  /bionic/libc/bionic/
arc4random.c 245 * Calculate a uniformly distributed random number less than upper_bound
249 * returned is outside the range [0, 2**32 % upper_bound). This
251 * [2**32 % upper_bound, 2**32) which maps back to [0, upper_bound)
252 * after reduction modulo upper_bound.
255 arc4random_uniform(u_int32_t upper_bound)
259 if (upper_bound < 2)
263 min = 0x100000000UL % upper_bound;
265 /* Calculate (2**32 % upper_bound) avoiding 64-bit math */
266 if (upper_bound > 0x80000000
    [all...]
  /external/stlport/test/unit/
bound_test.cpp 46 int location = upper_bound((int*)arr, (int*)arr + 20, 3) - arr;
56 int location = (upper_bound((char const**)str, (char const**)str + strCt, (const char *)"d", char_str_less) - str);
multiset_test.cpp 70 i = s.upper_bound(3);
80 ci = s.upper_bound(3);
93 ci = crs.upper_bound(3);
  /ndk/tests/device/test-gnustl-full/unit/
bound_test.cpp 46 int location = upper_bound((int*)arr, (int*)arr + 20, 3) - arr;
56 int location = (upper_bound((char const**)str, (char const**)str + strCt, (const char *)"d", char_str_less) - str);
multiset_test.cpp 70 i = s.upper_bound(3);
80 ci = s.upper_bound(3);
93 ci = crs.upper_bound(3);
  /ndk/tests/device/test-stlport/unit/
bound_test.cpp 46 int location = upper_bound((int*)arr, (int*)arr + 20, 3) - arr;
56 int location = (upper_bound((char const**)str, (char const**)str + strCt, (const char *)"d", char_str_less) - str);
multiset_test.cpp 70 i = s.upper_bound(3);
80 ci = s.upper_bound(3);
93 ci = crs.upper_bound(3);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/ext/pb_ds/detail/ov_tree_map_/
debug_fn_imps.hpp 71 const_iterator upper_bound_it = upper_bound(PB_DS_V2F(*it));
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/ext/pb_ds/detail/ov_tree_map_/
debug_fn_imps.hpp 71 const_iterator upper_bound_it = upper_bound(PB_DS_V2F(*it));
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/ext/pb_ds/detail/ov_tree_map_/
debug_fn_imps.hpp 71 const_iterator upper_bound_it = upper_bound(PB_DS_V2F(*it));
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/ext/pb_ds/detail/ov_tree_map_/
debug_fn_imps.hpp 68 const_iterator upper_bound_it = upper_bound(PB_DS_V2F(*it));
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.6/include/ext/pb_ds/detail/ov_tree_map_/
debug_fn_imps.hpp 71 const_iterator upper_bound_it = upper_bound(PB_DS_V2F(*it));
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/ext/pb_ds/detail/ov_tree_map_/
debug_fn_imps.hpp 68 const_iterator upper_bound_it = upper_bound(PB_DS_V2F(*it));
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/ext/pb_ds/detail/ov_tree_map_/
debug_fn_imps.hpp 68 const_iterator upper_bound_it = upper_bound(PB_DS_V2F(*it));
  /external/chromium_org/sandbox/win/src/
policy_engine_opcodes.cc 162 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))?
  /external/chromium_org/chrome/browser/sync_file_system/local/
local_file_sync_status.cc 74 URLCountMap::const_iterator upper = writing_.upper_bound(url);
87 FileSystemURLSet::const_iterator upper = syncing_.upper_bound(url);
  /external/oprofile/libpp/
sample_container.cpp 62 return samples.upper_bound(key);
94 iterator it2 = samples_by_loc.upper_bound(&upper);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/pb_ds/detail/bin_search_tree_/
find_fn_imps.hpp 90 upper_bound(const_key_reference r_key) const function in class:PB_DS_CLASS_C_DEC
112 upper_bound(const_key_reference r_key) function in class:PB_DS_CLASS_C_DEC
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/ext/pb_ds/detail/bin_search_tree_/
find_fn_imps.hpp 90 upper_bound(const_key_reference r_key) const function in class:PB_DS_CLASS_C_DEC
112 upper_bound(const_key_reference r_key) function in class:PB_DS_CLASS_C_DEC
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/ext/pb_ds/detail/bin_search_tree_/
find_fn_imps.hpp 90 upper_bound(const_key_reference r_key) const function in class:PB_DS_CLASS_C_DEC
112 upper_bound(const_key_reference r_key) function in class:PB_DS_CLASS_C_DEC

Completed in 584 milliseconds

1 2 3 4 5 6 7 8 91011>>