| /src/crypto/external/apache2/openssl/dist/test/ |
| bn_rand_range.h | 14 unsigned int range; member in struct:__anon661
|
| /src/crypto/external/bsd/openssl/dist/test/ |
| bn_rand_range.h | 14 unsigned int range; member in struct:__anon1695
|
| /src/external/bsd/elftosb/dist/common/ |
| DataTarget.cpp | 24 AddressRange range; local 25 range.m_begin = m_begin; 29 // we have an end address. trim the result range to the segment size 31 range.m_end = std::min<uint32_t>(m_end, m_begin + segment.getLength()); 36 range.m_end = m_begin + segment.getLength(); 39 return range; 42 //! If the \a segment has a natural location, the returned address range extends 54 AddressRange range; local 55 range.m_begin = segment.getBaseAddress(); 56 range.m_end = segment.getBaseAddress() + segment.getLength() [all...] |
| /src/crypto/external/apache2/openssl/dist/ssl/quic/ |
| uint_set.c | 20 * Insert Range: Adds an inclusive range of integers [start, end] 22 * in the range. 24 * Remove Range: Removes an inclusive range of integers [start, end] 25 * from the set. Not all of the range need already be in 26 * the set, but any part of the range in the set is removed. 35 * implemented as a doubly linked sorted list of range structures, which are 44 * end of the range. 54 * Invariant: No range [a, b] ever has a > b [all...] |
| quic_sf_list.c | 16 UINT_RANGE range; member in struct:stream_frame_st 25 (size_t)(sf->range.end - sf->range.start)); 30 static STREAM_FRAME *stream_frame_new(UINT_RANGE *range, OSSL_QRX_PKT *pkt, 41 sf->range = *range; 63 static int append_frame(SFRAME_LIST *fl, UINT_RANGE *range, 69 if ((new_frame = stream_frame_new(range, pkt, data)) == NULL) 79 int ossl_sframe_list_insert(SFRAME_LIST *fl, UINT_RANGE *range, 85 uint64_t curr_end = fl->tail != NULL ? fl->tail->range.en [all...] |
| /src/external/mpl/bind/dist/bin/tests/system/rollover_multisigner/ns3/ |
| kasp.conf.j2 | 19 ksk key-directory lifetime unlimited algorithm @DEFAULT_ALGORITHM@ tag-range 32768 65535; 20 zsk key-directory lifetime unlimited algorithm @DEFAULT_ALGORITHM@ tag-range 32768 65535;
|
| /src/external/bsd/jemalloc/dist/include/jemalloc/internal/ |
| prng.h | 60 * The prng_lg_range functions give a uniform int in the half-open range [0, 99 * in [0, range) instead of [0, 2**lg_range). 103 prng_range_u32(uint32_t *state, uint32_t range) { 104 assert(range != 0); 106 * If range were 1, lg_range would be 0, so the shift in 110 if (range == 1) { 114 /* Compute the ceiling of lg(range). */ 115 unsigned lg_range = ffs_u32(pow2_ceil_u32(range)); 117 /* Generate a result in [0..range) via repeated trial. */ 121 } while (ret >= range); [all...] |
| /src/external/bsd/jemalloc/include/jemalloc/internal/ |
| prng.h | 60 * The prng_lg_range functions give a uniform int in the half-open range [0, 99 * in [0, range) instead of [0, 2**lg_range). 103 prng_range_u32(uint32_t *state, uint32_t range) { 104 assert(range != 0); 106 * If range were 1, lg_range would be 0, so the shift in 110 if (range == 1) { 114 /* Compute the ceiling of lg(range). */ 115 unsigned lg_range = ffs_u32(pow2_ceil_u32(range)); 117 /* Generate a result in [0..range) via repeated trial. */ 121 } while (ret >= range); [all...] |
| /src/external/bsd/jemalloc/dist/test/unit/ |
| prng.c | 117 uint32_t range; local 123 for (range = 2; range < max_range; range += range_step) { 127 s = range; 129 uint32_t r = prng_range_u32(&s, range); 131 expect_u32_lt(r, range, "Out of range"); 138 uint64_t range; local 144 for (range = 2; range < max_range; range += range_step) 159 size_t range; local [all...] |
| /src/sys/dev/pci/ |
| genfb_pcivar.h | 34 struct range { struct 49 struct range sc_ranges[8];
|
| /src/external/apache2/llvm/dist/clang/include/clang/Edit/ |
| EditsReceiver.h | 24 virtual void replace(CharSourceRange range, StringRef text) = 0; 27 virtual void remove(CharSourceRange range);
|
| /src/external/mpl/dhcp/dist/keama/tests/samples/ |
| simple.conf | 30 range 192.168.1.100 192.168.1.150;
|
| /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.ada/ |
| unchecked_union.exp | 34 small: range 0 .. 255; 35 second: range 0 .. 255; 37 bval: range 0 .. 255; 39 large: range 255 .. 510; 40 more: range 255 .. 510; 47 field_one: range 0 .. 255; 49 field_two: range 255 .. 510;
|
| /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.ada/ |
| unchecked_union.exp | 34 small: range 0 .. 255; 35 second: range 0 .. 255; 37 bval: range 0 .. 255; 39 large: range 255 .. 510; 40 more: range 255 .. 510; 47 field_one: range 0 .. 255; 49 field_two: range 255 .. 510;
|
| /src/external/apache2/llvm/dist/libcxx/include/__ranges/ |
| concepts.h | 32 // [range.range] 34 concept range = requires(_Tp& __t) { member in namespace:ranges 40 concept borrowed_range = range<_Range> && 45 template <range _Rp> 48 template <range _Rp> 51 template <range _Rp> 54 template <range _Rp> 57 template <range _Rp> 60 // [range.sized [all...] |
| /src/external/apache2/llvm/dist/libcxx/utils/google-benchmark/test/ |
| multiple_ranges_test.cc | 32 std::vector<int64_t> ranges = {state.range(0), state.range(1), 33 state.range(2)}; 70 int64_t product = state.range(0) * state.range(1) * state.range(2); 83 // Test that the 'range()' without an argument is the same as 'range(0)'. 84 assert(state.range() == state.range(0)) [all...] |
| /src/external/apache2/llvm/dist/llvm/utils/benchmark/test/ |
| multiple_ranges_test.cc | 32 std::vector<int64_t> ranges = {state.range(0), state.range(1), 33 state.range(2)}; 70 int64_t product = state.range(0) * state.range(1) * state.range(2); 83 // Test that the 'range()' without an argument is the same as 'range(0)'. 84 assert(state.range() == state.range(0)) [all...] |
| /src/external/bsd/zstd/dist/contrib/pzstd/utils/test/ |
| RangeTest.cpp | 9 #include "utils/Range.h" 16 // Range is directly copied from folly. 19 TEST(Range, Constructors) { 26 Range<std::string::const_iterator> piece(str.begin(), str.end()); 54 TEST(Range, Modifiers) { 55 StringPiece range("hello world"); 56 ASSERT_EQ(11, range.size()); 59 auto hello = range.subpiece(0, 5); 65 auto hello = range; 72 auto world = range; [all...] |
| /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/ |
| sanitizer_libignore.cc | 60 for (const auto &range : mod.ranges()) { 61 if (!range.executable) 85 ignored_code_ranges_[idx].begin = range.beg; 86 ignored_code_ranges_[idx].end = range.end; 104 for (const auto &range : mod.ranges()) { 105 if (!range.executable) 107 if (IsPcInstrumented(range.beg) && IsPcInstrumented(range.end - 1)) 109 VReport(1, "Adding instrumented range %p-%p from library '%s'\n", 110 range.beg, range.end, mod.full_name()) [all...] |
| /src/crypto/external/apache2/openssl/dist/include/internal/ |
| uint_set.h | 20 * structure tracks each contiguous range of integers using one allocation and 34 UINT_RANGE range; member in struct:uint_set_item_st 45 * Insert a range into a integer set. Returns 0 on allocation failure, in which 47 * Ranges can overlap existing ranges without limitation. If a range is a subset 48 * of an existing range in the set, this is a no-op and returns 1. 50 int ossl_uint_set_insert(UINT_SET *s, const UINT_RANGE *range); 53 * Remove a range from the set. Returns 0 on allocation failure, in which case 55 * already in the set can be removed without issue. If a passed range is not in 58 int ossl_uint_set_remove(UINT_SET *s, const UINT_RANGE *range);
|
| /src/external/bsd/jemalloc.old/dist/include/jemalloc/internal/ |
| prng.h | 61 * The prng_lg_range functions give a uniform int in the half-open range [0, 128 * in [0, range) instead of [0, 2**lg_range). 132 prng_range_u32(atomic_u32_t *state, uint32_t range, bool atomic) { 136 assert(range > 1); 138 /* Compute the ceiling of lg(range). */ 139 lg_range = ffs_u32(pow2_ceil_u32(range)) - 1; 141 /* Generate a result in [0..range) via repeated trial. */ 144 } while (ret >= range); 150 prng_range_u64(uint64_t *state, uint64_t range) { 154 assert(range > 1) [all...] |
| /src/external/bsd/jemalloc.old/include/jemalloc/internal/ |
| prng.h | 61 * The prng_lg_range functions give a uniform int in the half-open range [0, 128 * in [0, range) instead of [0, 2**lg_range). 132 prng_range_u32(atomic_u32_t *state, uint32_t range, bool atomic) { 136 assert(range > 1); 138 /* Compute the ceiling of lg(range). */ 139 lg_range = ffs_u32(pow2_ceil_u32(range)) - 1; 141 /* Generate a result in [0..range) via repeated trial. */ 144 } while (ret >= range); 150 prng_range_u64(uint64_t *state, uint64_t range) { 154 assert(range > 1) [all...] |
| /src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/ |
| sanitizer_libignore.cpp | 59 for (const auto &range : mod.ranges()) { 60 if (!range.executable) 84 ignored_code_ranges_[idx].begin = range.beg; 85 ignored_code_ranges_[idx].end = range.end; 103 for (const auto &range : mod.ranges()) { 104 if (!range.executable) 106 if (IsPcInstrumented(range.beg) && IsPcInstrumented(range.end - 1)) 108 VReport(1, "Adding instrumented range 0x%zx-0x%zx from library '%s'\n", 109 range.beg, range.end, mod.full_name()) [all...] |
| /src/external/gpl3/gcc.old/dist/libsanitizer/sanitizer_common/ |
| sanitizer_libignore.cpp | 59 for (const auto &range : mod.ranges()) { 60 if (!range.executable) 84 ignored_code_ranges_[idx].begin = range.beg; 85 ignored_code_ranges_[idx].end = range.end; 103 for (const auto &range : mod.ranges()) { 104 if (!range.executable) 106 if (IsPcInstrumented(range.beg) && IsPcInstrumented(range.end - 1)) 108 VReport(1, "Adding instrumented range 0x%zx-0x%zx from library '%s'\n", 109 range.beg, range.end, mod.full_name()) [all...] |
| /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.perf/ |
| template-breakpoints.py | 24 for _ in range(0, 2): 28 for _ in range(1, bpcount): 32 for bpcount in range(1, 10):
|