Searched refs:dist (Results 1 - 25 of 146) sorted by relevance

123456

/freebsd-current/contrib/xz/src/liblzma/lzma/
H A Dfastpos.h25 // dist return
51 // get_dist_slot(dist) is the basic version. get_dist_slot_2(dist)
52 // assumes that dist >= FULL_DISTANCES, thus the result is at least
53 // FULL_DISTANCES_BITS * 2. Using get_dist_slot(dist) instead of
54 // get_dist_slot_2(dist) would give the same result, but get_dist_slot_2(dist)
79 # define get_dist_slot(dist) \
80 ((dist) <= 4 ? (dist)
83 get_dist_slot_2(uint32_t dist) argument
110 get_dist_slot(uint32_t dist) argument
126 get_dist_slot_2(uint32_t dist) argument
[all...]
H A Dlzma_encoder_optimum_fast.c83 *back_res = coder->matches[matches_count - 1].dist + REPS;
91 back_main = coder->matches[matches_count - 1].dist;
96 matches_count - 2].dist,
102 back_main = coder->matches[matches_count - 1].dist;
135 coder->matches_count - 1].dist;
/freebsd-current/etc/mtree/
H A DMakefile7 # NOTE: BSD.debug.dist is unconditionally installed for developer ease-of-use.
9 BSD.debug.dist \
10 BSD.include.dist \
11 BSD.root.dist \
12 ${_BSD.libcompats.dist} \
13 ${_BSD.sendmail.dist} \
14 ${_BSD.tests.dist} \
15 BSD.usr.dist \
16 BSD.var.dist
20 _BSD.libcompats.dist
[all...]
/freebsd-current/usr.sbin/bsdinstall/scripts/
H A Dumount29 if [ -d $BSDINSTALL_CHROOT/dist/packages ]; then
30 umount $BSDINSTALL_CHROOT/dist/packages
31 rmdir $BSDINSTALL_CHROOT/dist/packages
32 rmdir $BSDINSTALL_CHROOT/dist
H A Dchecksum40 for dist in $DISTRIBUTIONS; do
41 statusvar=$(dist_to_statusvar $dist)
52 CK=`sha256 -q $BSDINSTALL_DISTDIR/$dist`
53 awk -v checksum=$CK -v dist=$dist -v found=0 '{
54 if (dist == $1) {
76 --msgbox "The checksum for $dist does not match. It may have become corrupted, or it may be from a newer version of $OSNAME. Please check for a newer snapshot." 0 0
80 --msgbox "The checksum for $dist does not match. It may have become corrupted, and should be redownloaded." 0 0
H A Dfetchmissingdists41 for dist in $DISTRIBUTIONS; do
42 if [ ! -f $BSDINSTALL_DISTDIR/$dist ]; then
43 FETCH_DISTRIBUTIONS="$FETCH_DISTRIBUTIONS $dist"
45 LOCAL_DISTRIBUTIONS="$LOCAL_DISTRIBUTIONS $dist"
59 BSDINSTALL_FETCHDEST="$BSDINSTALL_CHROOT/usr/freebsd-dist"
H A Dmount61 mkdir -p $BSDINSTALL_CHROOT/dist/packages
62 mount -t nullfs /packages $BSDINSTALL_CHROOT/dist/packages
H A Djail101 for dist in $EXTRA_DISTS; do
102 export DISTRIBUTIONS="$DISTRIBUTIONS $dist.txz"
108 for dist in $DISTRIBUTIONS; do
109 if [ ! -f $BSDINSTALL_DISTDIR/$dist ]; then
110 FETCH_DISTRIBUTIONS="$FETCH_DISTRIBUTIONS $dist"
/freebsd-current/contrib/llvm-project/libcxx/modules/std/
H A Drandom.inc56 // [rand.dist.uni.int], class template uniform_int_distribution
59 // [rand.dist.uni.real], class template uniform_real_distribution
62 // [rand.dist.bern.bernoulli], class bernoulli_distribution
65 // [rand.dist.bern.bin], class template binomial_distribution
68 // [rand.dist.bern.geo], class template geometric_distribution
71 // [rand.dist.bern.negbin], class template negative_binomial_distribution
74 // [rand.dist.pois.poisson], class template poisson_distribution
77 // [rand.dist.pois.exp], class template exponential_distribution
80 // [rand.dist.pois.gamma], class template gamma_distribution
83 // [rand.dist
[all...]
/freebsd-current/contrib/expat/doc/
H A DMakefile.am33 .PHONY: dist-hook # not inside conditional to avoid automake warning
43 dist-hook:
44 @echo 'ERROR: Configure with --with-docbook for "make dist".' 1>&2
/freebsd-current/sys/contrib/openzfs/scripts/
H A Dmake_gitrev.sh30 dist=no
36 D) dist=yes; distdir=${OPTARG};;
65 elif [ "${dist}" = yes ]
67 # Append -dist when creating distributed sources from a git repository
68 ZFS_GITREV="${ZFS_GITREV}-dist"
/freebsd-current/crypto/heimdal/appl/telnet/
H A DMakefile.am7 dist-hook:
/freebsd-current/contrib/xz/src/liblzma/api/lzma/
H A Ddelta.h58 uint32_t dist; member in struct:__anon16
61 * \brief Minimum value for lzma_options_delta.dist.
66 * \brief Maximum value for lzma_options_delta.dist.
/freebsd-current/sys/contrib/openzfs/tests/zfs-tests/tests/functional/compression/
H A Dcompress_004_pos.ksh58 typeset -i dist=0
62 (( dist = fsz - start ))
63 for len in `expr $RANDOM % $dist` $dist \
64 `expr $start + $dist`; do
/freebsd-current/tests/sys/cddl/zfs/tests/compression/
H A Dcompress_004_pos.ksh67 typeset -i dist=0
71 (( dist = fsz - start ))
72 for len in `expr $RANDOM % $dist` $dist \
73 `expr $start + $dist`; do
/freebsd-current/sys/contrib/zlib/
H A Ddeflate.h306 int ZLIB_INTERNAL _tr_tally(deflate_state *s, unsigned dist, unsigned lc);
314 #define d_code(dist) \
315 ((dist) < 256 ? _dist_code[dist] : _dist_code[256+((dist)>>7)])
316 /* Mapping from a distance to a distance code. dist is the distance - 1 and
342 ush dist = (ush)(distance); \
343 s->d_buf[s->sym_next] = dist; \
345 dist--; \
347 s->dyn_dtree[d_code(dist)]
[all...]
H A Dinffast.c74 unsigned dist; /* match distance */ local
145 dist = (unsigned)(here->val);
155 dist += (unsigned)hold & ((1U << op) - 1);
157 if (dist > dmax) {
165 Tracevv((stderr, "inflate: distance %u\n", dist));
167 if (dist > op) { /* see if copy from window */
168 op = dist - op; /* distance back in window */
188 from = out - dist;
204 from = out - dist; /* rest from output */
222 from = out - dist; /* res
[all...]
/freebsd-current/sys/contrib/libsodium/
H A DMakefile.am15 dist-build \
/freebsd-current/tools/boot/
H A Dlua-img.sh20 mtree -deUW -f etc/mtree/BSD.root.dist -p ${dir}
21 mtree -deUW -f etc/mtree/BSD.usr.dist -p ${dir}/usr
/freebsd-current/contrib/xz/src/liblzma/delta/
H A Ddelta_common.c51 coder->distance = opt->dist;
68 || opt->dist < LZMA_DELTA_DIST_MIN
69 || opt->dist > LZMA_DELTA_DIST_MAX)
/freebsd-current/etc/
H A DMakefile107 MTREES= mtree/BSD.root.dist / \
108 mtree/BSD.var.dist /var \
109 mtree/BSD.usr.dist /usr \
110 mtree/BSD.include.dist /usr/include \
111 mtree/BSD.debug.dist /usr/lib
114 MTREES+= mtree/BSD.lib${libcompat}.dist /usr
115 MTREES+= mtree/BSD.lib${libcompat}.dist /usr/lib/debug/usr
119 MTREES+= mtree/BSD.tests.dist ${TESTSBASE}
120 MTREES+= mtree/BSD.tests.dist /usr/lib/debug/${TESTSBASE}
123 MTREES+= mtree/BSD.sendmail.dist /
[all...]
/freebsd-current/contrib/ntp/scripts/stats/
H A Dpeer.awk11 # ident cnt mean rms max delay dist disp
46 dist = $7 + $6 / 2
47 if (dist > peer_dist[i])
48 peer_dist[i] = dist
55 printf " ident cnt mean rms max delay dist disp\n"
/freebsd-current/contrib/openresolv/
H A DMakefile83 dist-git:
86 dist-inst:
93 dist: dist-git
95 distinfo: dist
103 import: dist
/freebsd-current/release/scripts/
H A Dmake-manifest.sh40 dist="${i}"
70 printf "${dist}\t${hash}\t${nfiles}\t${distname}\t\"${desc}\"\t${default}\n"
/freebsd-current/release/
H A DMakefile52 DISTDIR= dist
112 CLEANDIRS= dist ftp disc1 disc1-disc1 disc1-memstick bootonly bootonly-bootonly bootonly-memstick dvd
146 --exclude .git --exclude @ --exclude usr/src/release/dist usr/src | \
170 mkdir -p ${.TARGET}/usr/freebsd-dist
171 for dist in MANIFEST $$(ls *.txz | grep -vE -- '(${base ${_ALL_libcompats}:L:ts|})-dbg'); \
172 do cp $${dist} ${.TARGET}/usr/freebsd-dist; \
175 echo "./usr/freebsd-dist type=dir uname=root gname=wheel mode=0755" >> ${.TARGET}/METALOG
176 for dist in MANIFEST $$(ls *.txz | grep -vE -- '(${base ${_ALL_libcompats}:L:ts|})-dbg'); \
177 do echo "./usr/freebsd-dist/
[all...]

Completed in 449 milliseconds

123456