| /freebsd/sys/contrib/device-tree/Bindings/ |
| H A D | numa.txt | 36 3 - distance-map 39 The optional device tree node distance-map describes the relative 40 distance (memory latency) between all numa nodes. 42 - compatible : Should at least contain "numa-distance-map-v1". 44 - distance-matrix 47 It is represented as a list of node pairs and their relative distance. 50 1. Each entry represents distance from first node to second node. 52 2. The distance from a node to self (local distance) is represented 53 with value 10 and all internode distance should be represented with 55 3. distance-matrix should have entries in lexicographical ascending [all …]
|
| /freebsd/tools/diag/prtblknos/ |
| H A D | README | 16 lbn 8-11 blkno 3217864-3217895 distance 216 17 First-level indirect, blkno 3217896-3217903 distance 0 18 lbn 12-19 blkno 3217904-3217967 distance 8 19 lbn 20-75 blkno 3251816-3252263 distance 33848 20 lbn 76-83 blkno 3252368-3252431 distance 104 21 lbn 84-91 blkno 3252464-3252527 distance 32 22 lbn 92-852 blkno 3252896-3258983 distance 368 25 The distance metric is the size of the gap from the end of the 36 above are also in physical block size units. Thus a distance of 8 39 3217896-3217903, and lbn 12 starts distance 8 after lbn 11 immediately
|
| /freebsd/sys/dev/cxgbe/cudbg/ |
| H A D | fastlz.c | 222 unsigned int distance; in FASTLZ_COMPRESSOR() local 234 distance = 1; in FASTLZ_COMPRESSOR() 246 /* calculate distance to the match */ in FASTLZ_COMPRESSOR() 247 distance = anchor - ref; in FASTLZ_COMPRESSOR() 255 if (distance == 0 || in FASTLZ_COMPRESSOR() 257 (distance >= MAX_DISTANCE) || in FASTLZ_COMPRESSOR() 259 (distance >= MAX_FARDISTANCE) || in FASTLZ_COMPRESSOR() 267 if (distance >= MAX_DISTANCE) { in FASTLZ_COMPRESSOR() 279 /* distance is biased */ in FASTLZ_COMPRESSOR() 280 distance--; in FASTLZ_COMPRESSOR() [all …]
|
| /freebsd/sys/contrib/xz-embedded/linux/lib/xz/ |
| H A D | xz_lzma2.h | 35 * - Match: Repeat a chunk of data at some distance 36 * - Long repeat: Multi-byte match at a recently seen distance 37 * - Short repeat: One-byte repeat at a recently seen distance 145 * the distance slot. 154 * The highest two bits of a 32-bit match distance are encoded using six bits. 155 * This six-bit value is called a distance slot. This way encoding a 32-bit 162 * the highest two bits (distance slot) are always encoded using six bits, 164 * distance slot itself is the same as the actual distance. DIST_MODEL_START 165 * indicates the first distance slot where at least one additional bit is 172 * - distance slot: the highest two bits [all …]
|
| /freebsd/contrib/ntp/html/ |
| H A D | stats.html | 50 …distance.</em> Peer jitter is determined from various jitter components as described above. It rep… 51 <p>The root distance statistic is computed as one-half the <em> root delay</em> of the primary sour… 53 …<p>Note. In order to avoid timing loops, the root distance is adjusted to the maximum of the above… 55 …distance is less than the <em>select threshold</em>, by default 1.5 s, but can be changed accordin… 56 …distance statistic is used by the select, cluster and mitigation algorithms. In this respect, it i… 58 …<li>Root distance defines the maximum error of the clock offset estimate due to all causes as long… 59 …<li>Root distance defines the upper and lower limits of the correctness interval. This interval re… 60 …<li>Root distance is used by the clock cluster algorithm as a weight factor when pruning outliers … 61 …<li>The (normalized) reciprocal of the root distance is used as a weight factor by the combine alg… 62 …<li>Root distance is used by the mitigation algorithm to select the system peer from among the clu… [all …]
|
| /freebsd/contrib/xz/src/liblzma/lzma/ |
| H A D | lzma_decoder.c | 117 /// If 1, it's a repeated match. The distance is one of rep0 .. rep3. 120 /// If 0, distance of a repeated match is rep0. 124 /// If 0, distance of a repeated match is rep1. 128 /// If 0, distance of a repeated match is rep2. Otherwise it is rep3. 135 /// Probability tree for the highest two bits of the match distance. 140 /// Probability trees for additional bits for match distance when the 141 /// distance is in the range [4, 127]. 144 /// Probability tree for the lowest four bits of a match distance 164 uint32_t rep0; ///< Distance of the latest match 165 uint32_t rep1; ///< Distance of second latest match [all …]
|
| /freebsd/contrib/llvm-project/libcxx/include/__ranges/ |
| H A D | drop_view.h | 22 #include <__iterator/distance.h> 94 const auto __dist = std::min(ranges::distance(__base_), __count_); in begin() 110 const auto __dist = std::min(ranges::distance(__base_), __count_); in begin() 228 …ranges::begin(__rng) + std::min<_Dist>(ranges::distance(__rng), std::forward<_Np>(__n)), ranges::e… 231 … ranges::begin(__rng) + std::min<_Dist>(ranges::distance(__rng), std::forward<_Np>(__n)), 234 …ranges::begin(__rng) + std::min<_Dist>(ranges::distance(__rng), std::forward<_Np>(__n)), ranges::e… 245 … _RawRange(ranges::begin(__rng) + std::min<_Dist>(ranges::distance(__rng), std::forward<_Np>(__n)), 247 std::__to_unsigned_like(ranges::distance(__rng) - 248 … std::min<_Dist>(ranges::distance(__rng), std::forward<_Np>(__n)))))) 251 ranges::begin(__rng) + std::min<_Dist>(ranges::distance(__rng), std::forward<_Np>(__n)), [all …]
|
| /freebsd/sys/contrib/zlib/ |
| H A D | inffast.c | 16 Decode literal, length, and distance codes and write out the resulting 39 - The maximum input bits used by a length/distance pair is 15 bits for the 40 length code, 5 bits for the length extra, 15 bits for the distance code, 41 and 13 bits for the distance extra. This totals 48 bits, or six bytes. 45 - The maximum bytes that a single length/distance pair can output is 258 58 unsigned dmax; /* maximum distance from zlib header */ in inflate_fast() 69 unsigned dmask; /* mask for first level of distance codes */ in inflate_fast() 74 unsigned dist; /* match distance */ in inflate_fast() 144 if (op & 16) { /* distance base */ in inflate_fast() 158 strm->msg = (char *)"invalid distance too far back"; in inflate_fast() [all …]
|
| H A D | inftrees.h | 16 distance, an end-of-block, or an invalid code. For a table 18 that table. For a length or distance, the low four bits of op 22 of a literal, the base length or distance, or the offset from 33 0001eeee - length or distance, eeee is the number of extra bits 39 1444, which is the sum of 852 for literal/length codes and 592 for distance 44 returns 852, and "enough 30 6 15" for distance codes returns 592. The
|
| H A D | inflate.h | 39 CODELENS, /* i: waiting for length/lit and distance code lengths */ 43 DIST, /* i: waiting for distance code */ 44 DISTEXT, /* i: waiting for distance extra bits */ 91 unsigned dmax; /* zlib header max distance (INFLATE_STRICT) */ 106 unsigned offset; /* distance back to copy string from */ 111 code const FAR *distcode; /* starting table for distance codes */ 117 unsigned ndist; /* number of distance code lengths */ 123 int sane; /* if false, allow invalid distance too far */
|
| H A D | deflate.h | 44 /* number of distance codes */ 126 * bytes. With this organization, matches are limited to a distance of 203 struct ct_data_s dyn_dtree[2*D_CODES+1]; /* distance tree */ 207 struct tree_desc_s d_desc; /* desc. for distance tree */ 316 /* Mapping from a distance to a distance code. dist is the distance - 1 and 340 # define _tr_tally_dist(s, distance, length, flush) \ argument 342 ush dist = (ush)(distance); \ 359 # define _tr_tally_dist(s, distance, length, flush) \ argument 361 ush dist = (ush)(distance); \ 373 # define _tr_tally_dist(s, distance, length, flush) \ argument [all …]
|
| /freebsd/contrib/ntp/ |
| H A D | results.y2kfixes | 10 timelord.att.com: stratum 2, offset -0.000879, synch distance 0.07207 11 timemaster.att.com: stratum 1, offset -0.004876, synch distance 0.03485, refid 'GPS' 21 timelord.att.com: stratum 2, offset 0.001383, synch distance 0.05644 22 timemaster.att.com: stratum 1, offset -0.006355, synch distance 0.04178, refid 'GPS' 32 timelord.att.com: stratum 2, offset -0.000094, synch distance 0.06522 33 timemaster.att.com: stratum 1, offset -0.010803, synch distance 0.03078, refid 'GPS' 43 timelord.att.com: stratum 2, offset -0.000719, synch distance 0.06561 44 timemaster.att.com: stratum 1, offset -0.013598, synch distance 0.03116, refid 'GPS'
|
| /freebsd/contrib/xz/src/liblzma/lz/ |
| H A D | lz_decoder.h | 60 /// position. This way dict_repeat() with the maximum valid distance 68 /// Note that memcpy() still cannot be used if distance < len. 169 dict_get(const lzma_dict *const dict, const uint32_t distance) in dict_get() argument 171 return dict->buf[dict->pos - distance - 1 in dict_get() 172 + (distance < dict->pos in dict_get() 193 /// Validate the match distance 195 dict_is_distance_valid(const lzma_dict *const dict, const size_t distance) in dict_is_distance_valid() argument 197 return dict->full > distance; in dict_is_distance_valid() 201 /// Repeat *len bytes at distance. 204 uint32_t distance, uint32_t *restrict len) in dict_repeat() argument [all …]
|
| /freebsd/usr.sbin/moused/moused/ |
| H A D | moused.8 | 45 .Op Fl VH Op Fl U Ar distance Fl L Ar distance 55 .Op Fl T Ar distance Ns Op , Ns Ar time Ns Op , Ns Ar after 140 .It Fl L Ar distance 146 .Ar distance 150 .Ar distance 160 option to set the distance the mouse must move before the scrolling mode is 173 .It Fl T Ar distance Ns Op , Ns Ar time Ns Op , Ns Ar after 177 .Ar distance 190 option to set the distance the mouse must move before the scrolling mode is 194 .It Fl U Ar distance [all …]
|
| H A D | moused.conf.5 | 164 value specifies the distance at which the acceleration 196 option to set the distance the mouse must move before the scrolling mode is 212 option to set the distance the mouse must move before the scrolling mode is 223 .It MousedVirtualScrollSpeed= Ar distance 229 .Ar distance 234 .Ar distance 240 .It MousedVirtualScrollThreshold= Ar distance 246 .Ar distance 250 .Ar distance
|
| /freebsd/contrib/ntp/scripts/ntptrace/ |
| H A D | ntptrace-opts.def | 55 % ntptrace localhost: stratum 4, offset 0.0019529, synch distance 0.144135 56 server2ozo.com: stratum 2, offset 0.0124263, synch distance 0.115784 usndh.edu: 57 stratum 1, offset 0.0019298, synch distance 0.011993, refid 'WWVB' 63 synchronization distance, and (only for stratum-1 servers) the reference clock 65 count to the primary source, while the synchronization distance is the
|
| H A D | ntptrace.1ntptracemdoc | 30 % ntptrace localhost: stratum 4, offset 0.0019529, synch distance 0.144135 31 server2ozo.com: stratum 2, offset 0.0124263, synch distance 0.115784 usndh.edu: 32 stratum 1, offset 0.0019298, synch distance 0.011993, refid 'WWVB' 38 synchronization distance, and (only for stratum\-1 servers) the reference clock 40 count to the primary source, while the synchronization distance is the
|
| H A D | ntptrace.mdoc.in | 30 % ntptrace localhost: stratum 4, offset 0.0019529, synch distance 0.144135 31 server2ozo.com: stratum 2, offset 0.0124263, synch distance 0.115784 usndh.edu: 32 stratum 1, offset 0.0019298, synch distance 0.011993, refid 'WWVB' 38 synchronization distance, and (only for stratum\-1 servers) the reference clock 40 count to the primary source, while the synchronization distance is the
|
| H A D | ntptrace.1ntptraceman | 45 % ntptrace localhost: stratum 4, offset 0.0019529, synch distance 0.144135 46 server2ozo.com: stratum 2, offset 0.0124263, synch distance 0.115784 usndh.edu: 47 stratum 1, offset 0.0019298, synch distance 0.011993, refid 'WWVB' 54 synchronization distance, and (only for stratum\-1 servers) the reference clock 56 count to the primary source, while the synchronization distance is the
|
| H A D | ntptrace.man.in | 45 % ntptrace localhost: stratum 4, offset 0.0019529, synch distance 0.144135 46 server2ozo.com: stratum 2, offset 0.0124263, synch distance 0.115784 usndh.edu: 47 stratum 1, offset 0.0019298, synch distance 0.011993, refid 'WWVB' 54 synchronization distance, and (only for stratum\-1 servers) the reference clock 56 count to the primary source, while the synchronization distance is the
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/ADT/ |
| H A D | edit_distance.h | 1 //===-- llvm/ADT/edit_distance.h - Array edit distance function --- C++ -*-===// 10 /// This file defines a Levenshtein distance function that works for any two 24 /// Determine the edit distance between two sequences. 37 /// \param MaxEditDistance If non-zero, the maximum edit distance that this 38 /// routine is allowed to compute. If the edit distance will exceed that 50 // distance, which is described here: 65 // distance allowed, we can bail out as we will always need at least
|
| /freebsd/sys/contrib/zlib/doc/ |
| H A D | rfc1951.txt | 81 3.2.5. Compressed blocks (length and distance codes) ...... 11 206 pair <length, backward distance>. The representation used in the 522 Huffman codes for the literal/length and distance alphabets are 547 decode distance from input stream 549 move backwards distance bytes in the output 556 in a previous block; i.e., the backward distance may cross one 557 or more block boundaries. However a distance cannot refer past 568 distance can refer to that part of the output stream anyway) 571 X and Y, a string reference with <length = 5, distance = 2> 589 3.2.5. Compressed blocks (length and distance codes) [all …]
|
| /freebsd/usr.sbin/ntp/doc/ |
| H A D | ntptrace.8 | 30 % ntptrace localhost: stratum 4, offset 0.0019529, synch distance 0.144135 31 server2ozo.com: stratum 2, offset 0.0124263, synch distance 0.115784 usndh.edu: 32 stratum 1, offset 0.0019298, synch distance 0.011993, refid 'WWVB' 38 synchronization distance, and (only for stratum\-1 servers) the reference clock 40 count to the primary source, while the synchronization distance is the
|
| /freebsd/contrib/llvm-project/libcxx/include/__algorithm/ |
| H A D | inplace_merge.h | 23 #include <__iterator/distance.h> 161 difference_type __len11; // distance(__first, __m1) in __inplace_merge() 162 difference_type __len21; // distance(__middle, __m2) in __inplace_merge() 169 __len11 = _Ops::distance(__first, __m1); in __inplace_merge() 181 __len21 = _Ops::distance(__middle, __m2); in __inplace_merge() 183 difference_type __len12 = __len1 - __len11; // distance(__m1, __middle) in __inplace_merge() 184 difference_type __len22 = __len2 - __len21; // distance(__m2, __last) in __inplace_merge() 211 difference_type __len1 = _IterOps<_AlgPolicy>::distance(__first, __middle); in __inplace_merge() 212 difference_type __len2 = _IterOps<_AlgPolicy>::distance(__middle, __last); in __inplace_merge()
|
| /freebsd/contrib/llvm-project/clang/include/clang/Sema/ |
| H A D | SemaInternal.h | 120 /// the set of corrections that have the closest edit distance, if any. 125 /// Return the edit distance of the corrections that have the 126 /// closest/best edit distance from the original typop. 144 /// starting with the corrections that have the closest edit distance. An 238 /// the corresponding NestedNameSpecifier and its distance in the process. 241 /// Provides flat iteration over specifiers, sorted by distance. 245 /// Always points to the last element in the distance map. 247 /// Iterator on the distance map. 249 /// Iterator on an element in the distance map. 294 /// The results found that have the smallest edit distance
|