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

1234567

/freebsd-11-stable/etc/mtree/
H A DMakefile5 # NOTE: BSD.debug.dist is unconditionally installed for developer ease-of-use.
7 BSD.debug.dist \
8 BSD.include.dist \
9 BSD.root.dist \
10 ${_BSD.lib32.dist} \
11 ${_BSD.libsoft.dist} \
12 ${_BSD.sendmail.dist} \
13 ${_BSD.tests.dist} \
14 BSD.usr.dist \
15 BSD.var.dist
[all...]
/freebsd-11-stable/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
109 get_dist_slot(uint32_t dist) argument
125 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-11-stable/usr.sbin/bsdinstall/scripts/
H A Dchecksum32 for dist in $DISTRIBUTIONS; do
33 distname=$(basename $dist .txz)
44 CK=`sha256 -q $BSDINSTALL_DISTDIR/$dist`
45 awk -v checksum=$CK -v dist=$dist -v found=0 '{
46 if (dist == $1) {
68 --msgbox "The checksum for $dist does not match. It may have become corrupted, or it may be from a newer version of FreeBSD. Please check for a newer snapshot." 0 0
72 --msgbox "The checksum for $dist does not match. It may have become corrupted, and should be redownloaded." 0 0
H A Djail83 for dist in $EXTRA_DISTS; do
84 export DISTRIBUTIONS="$DISTRIBUTIONS $dist.txz"
89 for dist in $DISTRIBUTIONS; do
90 if [ ! -f $BSDINSTALL_DISTDIR/$dist ]; then
91 FETCH_DISTRIBUTIONS="$FETCH_DISTRIBUTIONS $dist"
/freebsd-11-stable/usr.sbin/bsdinstall/distextract/
H A Ddistextract.c73 struct dpv_file_node *dist = dists; local
105 if (dist == NULL) {
106 if ((dist = calloc(1, file_node_size)) == NULL)
108 dists = dist;
110 dist->next = calloc(1, file_node_size);
111 if (dist->next == NULL)
113 dist = dist->next;
117 if ((dist->path = malloc(span + 1)) == NULL)
119 snprintf(dist
[all...]
/freebsd-11-stable/crypto/heimdal/appl/telnet/
H A DMakefile.am7 dist-hook:
/freebsd-11-stable/contrib/xz/src/liblzma/api/lzma/
H A Ddelta.h59 uint32_t dist; member in struct:__anon5836
/freebsd-11-stable/contrib/expat/doc/
H A DMakefile.am31 .PHONY: dist-hook # not inside conditional to avoid automake warning
41 dist-hook:
42 @echo 'ERROR: Configure with --with-docbook for "make dist".' 1>&2
/freebsd-11-stable/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-11-stable/sys/contrib/zlib/
H A Dinffast.c77 unsigned dist; /* match distance */ local
148 dist = (unsigned)(here.val);
158 dist += (unsigned)hold & ((1U << op) - 1);
160 if (dist > dmax) {
168 Tracevv((stderr, "inflate: distance %u\n", dist));
170 if (dist > op) { /* see if copy from window */
171 op = dist - op; /* distance back in window */
191 from = out - dist;
207 from = out - dist; /* rest from output */
225 from = out - dist; /* res
[all...]
H A Ddeflate.h300 int ZLIB_INTERNAL _tr_tally OF((deflate_state *s, unsigned dist, unsigned lc));
308 #define d_code(dist) \
309 ((dist) < 256 ? _dist_code[dist] : _dist_code[256+((dist)>>7)])
310 /* Mapping from a distance to a distance code. dist is the distance - 1 and
335 ush dist = (ush)(distance); \
336 s->d_buf[s->last_lit] = dist; \
338 dist--; \
340 s->dyn_dtree[d_code(dist)]
[all...]
H A Dtrees.c240 int dist; /* distance index */ local
270 /* Initialize the mapping dist (0..32K) -> dist code (0..29) */
271 dist = 0;
273 base_dist[code] = dist;
275 _dist_code[dist++] = (uch)code;
278 Assert (dist == 256, "tr_static_init: dist != 256");
279 dist >>= 7; /* from now on, all distances are divided by 128 */
281 base_dist[code] = dist <<
1069 unsigned dist; /* distance of matched string */ local
[all...]
/freebsd-11-stable/sys/cddl/contrib/opensolaris/uts/common/zmod/
H A Dinffast.c96 unsigned dist; /* match distance */ local
167 dist = (unsigned)(this.val);
177 dist += (unsigned)hold & ((1U << op) - 1);
179 if (dist > dmax) {
187 Tracevv((stderr, "inflate: distance %u\n", dist));
189 if (dist > op) { /* see if copy from window */
190 op = dist - op; /* distance back in window */
204 from = out - dist; /* rest from output */
222 from = out - dist; /* rest from output */
233 from = out - dist; /* res
[all...]
H A Ddeflate.h283 int _tr_tally OF((deflate_state *s, unsigned dist, unsigned lc));
290 #define d_code(dist) \
291 ((dist) < 256 ? _dist_code[dist] : _dist_code[256+((dist)>>7)])
292 /* Mapping from a distance to a distance code. dist is the distance - 1 and
317 ush dist = (distance); \
318 s->d_buf[s->last_lit] = dist; \
320 dist--; \
322 s->dyn_dtree[d_code(dist)]
[all...]
H A Dtrees.c246 int dist; /* distance index */ local
274 /* Initialize the mapping dist (0..32K) -> dist code (0..29) */
275 dist = 0;
277 base_dist[code] = dist;
279 _dist_code[dist++] = (uch)code;
282 Assert (dist == 256, "tr_static_init: dist != 256");
283 dist >>= 7; /* from now on, all distances are divided by 128 */
285 base_dist[code] = dist <<
1077 unsigned dist; /* distance of matched string */ local
[all...]
/freebsd-11-stable/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-11-stable/release/scripts/
H A Dmake-manifest.sh43 dist="${i}"
70 printf "${dist}\t${hash}\t${nfiles}\t${distname}\t\"${desc}\"\t${default}\n"
/freebsd-11-stable/contrib/tnftp/
H A DMakefile.in72 distdir dist dist-all distcheck
496 dist-gzip: distdir
500 dist-bzip2: distdir
504 dist-lzma: distdir
508 dist-xz: distdir
512 dist-tarZ: distdir
516 dist-shar: distdir
520 dist-zip: distdir
525 dist dis
[all...]
/freebsd-11-stable/contrib/libucl/lua/
H A DMakefile.am24 $(ROCKSPEC): $(PACKAGE).rockspec dist
/freebsd-11-stable/etc/rc.d/
H A Dvar45 /usr/sbin/mtree -deiU -f /etc/mtree/BSD.var.dist -p /var > /dev/null
50 /usr/sbin/mtree -deiU -f /etc/mtree/BSD.sendmail.dist -p / > /dev/null
/freebsd-11-stable/release/
H A DMakefile55 DISTDIR= dist
121 CLEANDIRS= dist ftp disc1 bootonly dvd
151 --exclude .git --exclude @ --exclude usr/src/release/dist usr/src | \
183 mkdir -p ${.TARGET}/usr/freebsd-dist
184 for dist in MANIFEST $$(ls *.txz | grep -vE -- '(base|lib32|kernel)-dbg'); \
185 do cp $${dist} ${.TARGET}/usr/freebsd-dist; \
210 mkdir -p ${.TARGET}/usr/freebsd-dist
211 cp MANIFEST ${.TARGET}/usr/freebsd-dist
230 mkdir -p ${.TARGET}/usr/freebsd-dist
[all...]
/freebsd-11-stable/usr.bin/split/
H A Dsplit.c206 ssize_t dist, len; local
226 dist = bytecnt - bcnt;
227 if (write(ofd, bfr, dist) != dist)
229 len -= dist;
230 for (C = bfr + dist; len >= bytecnt;
/freebsd-11-stable/contrib/expat/
H A DMakefile.in211 cscope distdir distdir-am dist dist-all distcheck
283 DIST_TARGETS = dist-lzip dist-xz dist-bzip2 dist-gzip
415 dist-bzip2 \
416 dist-lzip \
417 dist-xz \
718 dist
[all...]
/freebsd-11-stable/
H A DMakefile.inc1711 mtree -deU -f ${.CURDIR}/etc/mtree/BSD.usr.dist \
714 mtree -deU -f ${.CURDIR}/etc/mtree/BSD.groff.dist \
717 mtree -deU -f ${.CURDIR}/etc/mtree/BSD.include.dist \
719 mtree -deU -f ${.CURDIR}/etc/mtree/BSD.usr.dist \
721 mtree -deU -f ${.CURDIR}/etc/mtree/BSD.include.dist \
726 mtree -deU -f ${.CURDIR}/etc/mtree/BSD.debug.dist \
728 mtree -deU -f ${.CURDIR}/etc/mtree/BSD.debug.dist \
732 mtree -deU -f ${.CURDIR}/etc/mtree/BSD.lib${libcompat}.dist \
735 mtree -deU -f ${.CURDIR}/etc/mtree/BSD.lib${libcompat}.dist \
737 mtree -deU -f ${.CURDIR}/etc/mtree/BSD.lib${libcompat}.dist \
[all...]

Completed in 162 milliseconds

1234567