Home
last modified time | relevance | path

Searched refs:dist (Results 1 – 25 of 258) sorted by relevance

1234567891011

/freebsd-12-stable/contrib/xz/src/liblzma/lzma/
Dfastpos.h79 # define get_dist_slot(dist) \ argument
80 ((dist) <= 4 ? (dist) : get_dist_slot_2(dist))
83 get_dist_slot_2(uint32_t dist) in get_dist_slot_2() argument
85 const uint32_t i = bsr32(dist); in get_dist_slot_2()
86 return (i + i) + ((dist >> (i - 1)) & 1); in get_dist_slot_2()
103 #define fastpos_result(dist, extra, n) \ argument
104 (uint32_t)(lzma_fastpos[(dist) >> fastpos_shift(extra, n)]) \
109 get_dist_slot(uint32_t dist) in get_dist_slot() argument
113 if (dist < fastpos_limit(0, 0)) in get_dist_slot()
114 return lzma_fastpos[dist]; in get_dist_slot()
[all …]
Dlzma_encoder_optimum_fast.c83 *back_res = coder->matches[matches_count - 1].dist + REPS; in lzma_lzma_optimum_fast()
91 back_main = coder->matches[matches_count - 1].dist; in lzma_lzma_optimum_fast()
96 matches_count - 2].dist, in lzma_lzma_optimum_fast()
102 back_main = coder->matches[matches_count - 1].dist; in lzma_lzma_optimum_fast()
135 coder->matches_count - 1].dist; in lzma_lzma_optimum_fast()
/freebsd-12-stable/etc/mtree/
DMakefile7 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
18 _BSD.lib32.dist= BSD.lib32.dist
[all …]
/freebsd-12-stable/usr.sbin/bsdinstall/distextract/
Ddistextract.c73 struct dpv_file_node *dist = dists; in main() local
105 if (dist == NULL) { in main()
106 if ((dist = calloc(1, file_node_size)) == NULL) in main()
108 dists = dist; in main()
110 dist->next = calloc(1, file_node_size); in main()
111 if (dist->next == NULL) in main()
113 dist = dist->next; in main()
117 if ((dist->path = malloc(span + 1)) == NULL) in main()
119 snprintf(dist->path, span + 1, "%s", distributions); in main()
120 dist->path[span] = '\0'; in main()
[all …]
/freebsd-12-stable/contrib/blacklist/diff/
Dnamed.diff2 +++ dist/bin/named/pfilter.c 2015-01-22 01:35:16.000000000 -0500
47 +++ dist/bin/named/pfilter.h 2015-01-22 01:16:56.000000000 -0500
69 Index: dist/bin/named/client.c
71 RCS file: /cvsroot/src/external/bsd/bind/dist/bin/named/client.c,v
74 --- dist/bin/named/client.c 10 Dec 2014 04:37:51 -0000 1.11
75 +++ dist/bin/named/client.c 23 Jan 2015 21:37:09 -0000
93 Index: dist/bin/named/main.c
95 RCS file: /cvsroot/src/external/bsd/bind/dist/bin/named/main.c,v
98 --- dist/bin/named/main.c 10 Dec 2014 04:37:51 -0000 1.15
99 +++ dist/bin/named/main.c 23 Jan 2015 21:37:09 -0000
[all …]
Dssh.diff2 +++ dist/pfilter.c 2015-01-22 23:46:03.000000000 -0500
37 +++ dist/pfilter.h 2015-01-20 20:16:20.000000000 -0500
65 diff -ru openssh-7.7p1/auth-pam.c dist/auth-pam.c
67 +++ dist/auth-pam.c 2018-05-23 11:56:22.206661484 -0400
92 diff -ru openssh-7.7p1/auth2.c dist/auth2.c
94 +++ dist/auth2.c 2018-05-23 11:57:31.022197317 -0400
111 Only in dist: pfilter.c
112 Only in dist: pfilter.h
113 diff -ru openssh-7.7p1/sshd.c dist/sshd.c
115 +++ dist/sshd.c 2018-05-23 11:59:39.573197347 -0400
/freebsd-12-stable/usr.sbin/bsdinstall/scripts/
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 '{
68 …--msgbox "The checksum for $dist does not match. It may have become corrupted, or it may be from a…
72 …--msgbox "The checksum for $dist does not match. It may have become corrupted, and should be redow…
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-12-stable/sys/contrib/zlib/
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; /* rest from output */
[all …]
Ddeflate.h295 int ZLIB_INTERNAL _tr_tally OF((deflate_state *s, unsigned dist, unsigned lc));
303 #define d_code(dist) \ argument
304 ((dist) < 256 ? _dist_code[dist] : _dist_code[256+((dist)>>7)])
331 ush dist = (ush)(distance); \
332 s->sym_buf[s->sym_next++] = (uch)dist; \
333 s->sym_buf[s->sym_next++] = (uch)(dist >> 8); \
335 dist--; \
337 s->dyn_dtree[d_code(dist)].Freq++; \
Dtrees.c240 int dist; /* distance index */ in tr_static_init() local
271 dist = 0; in tr_static_init()
273 base_dist[code] = dist; in tr_static_init()
275 _dist_code[dist++] = (uch)code; in tr_static_init()
278 Assert (dist == 256, "tr_static_init: dist != 256"); in tr_static_init()
279 dist >>= 7; /* from now on, all distances are divided by 128 */ in tr_static_init()
281 base_dist[code] = dist << 7; in tr_static_init()
283 _dist_code[256 + dist++] = (uch)code; in tr_static_init()
286 Assert (dist == 256, "tr_static_init: 256 + dist != 512"); in tr_static_init()
1014 int ZLIB_INTERNAL _tr_tally(s, dist, lc) in _tr_tally() argument
[all …]
/freebsd-12-stable/etc/
DMakefile124 MTREES= mtree/BSD.root.dist / \
125 mtree/BSD.var.dist /var \
126 mtree/BSD.usr.dist /usr \
127 mtree/BSD.include.dist /usr/include \
128 mtree/BSD.debug.dist /usr/lib
130 MTREES+= mtree/BSD.lib32.dist /usr
131 MTREES+= mtree/BSD.lib32.dist /usr/lib/debug/usr
134 MTREES+= mtree/BSD.libsoft.dist /usr
135 MTREES+= mtree/BSD.libsoft.dist /usr/lib/debug/usr
138 MTREES+= mtree/BSD.tests.dist ${TESTSBASE}
[all …]
/freebsd-12-stable/contrib/ofed/infiniband-diags/src/
Dibtracert.c106 int dist; member
461 static int new_node(Node * node, Port * port, ib_portid_t * path, int dist) in new_node() argument
464 node->dist = -1; /* tag as target */ in new_node()
474 VERBOSE("insert dist %d node %p port %d lid %d", dist, node, in new_node()
479 node->dist = dist; in new_node()
481 node->dnext = nodesdist[dist]; in new_node()
482 nodesdist[dist] = node; in new_node()
543 int dist = 0, leafport = 0; in find_mcpath() local
571 for (dist = 0; dist < MAXHOPS; dist++) { in find_mcpath()
573 for (node = nodesdist[dist]; node; node = node->dnext) { in find_mcpath()
[all …]
/freebsd-12-stable/tests/sys/cddl/zfs/tests/compression/
Dcompress_004_pos.ksh72 typeset -i dist=0
76 (( dist = fsz - start ))
77 for len in `expr $RANDOM % $dist` $dist \
78 `expr $start + $dist`; do
/freebsd-12-stable/contrib/tnftp/
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 dist-all: distdir
532 distcheck: dist
[all …]
/freebsd-12-stable/contrib/file/
DMakefile.in170 cscope distdir distdir-am dist dist-all distcheck
231 DIST_TARGETS = dist-gzip
629 dist-gzip: distdir
633 dist-bzip2: distdir
637 dist-lzip: distdir
641 dist-xz: distdir
645 dist-zstd: distdir
649 dist-tarZ: distdir
656 dist-shar: distdir
663 dist-zip: distdir
[all …]
/freebsd-12-stable/contrib/openpam/
DMakefile.in142 cscope distdir distdir-am dist dist-all distcheck
202 DIST_TARGETS = dist-gzip
596 dist-gzip: distdir
600 dist-bzip2: distdir
604 dist-lzip: distdir
608 dist-xz: distdir
612 dist-zstd: distdir
616 dist-tarZ: distdir
623 dist-shar: distdir
630 dist-zip: distdir
[all …]
/freebsd-12-stable/contrib/expat/
DMakefile.in216 cscope distdir distdir-am dist dist-all distcheck
287 DIST_TARGETS = dist-lzip dist-xz dist-bzip2 dist-gzip
443 dist-bzip2 \
444 dist-lzip \
445 dist-xz \
810 dist-gzip: distdir
813 dist-bzip2: distdir
816 dist-lzip: distdir
819 dist-xz: distdir
823 dist-zstd: distdir
[all …]
/freebsd-12-stable/contrib/openbsm/
DMakefile.in143 cscope distdir dist dist-all distcheck
211 DIST_TARGETS = dist-gzip
578 dist-gzip: distdir
582 dist-bzip2: distdir
586 dist-lzip: distdir
590 dist-xz: distdir
594 dist-tarZ: distdir
601 dist-shar: distdir
608 dist-zip: distdir
613 dist dist-all:
[all …]
/freebsd-12-stable/release/
DMakefile52 DISTDIR= dist
112 CLEANDIRS= dist ftp disc1 bootonly dvd
140 --exclude .git --exclude @ --exclude usr/src/release/dist usr/src | \
163 mkdir -p ${.TARGET}/usr/freebsd-dist
164 for dist in MANIFEST $$(ls *.txz | grep -vE -- '(base|lib32)-dbg'); \
165 do cp $${dist} ${.TARGET}/usr/freebsd-dist; \
208 do cp $${dist} ${.TARGET}/usr/freebsd-dist; \
/freebsd-12-stable/crypto/heimdal/
DMakefile.in115 distdir dist dist-all distcheck
686 dist-hook
694 dist-gzip: distdir
698 dist-bzip2: distdir
702 dist-lzma: distdir
706 dist-xz: distdir
710 dist-tarZ: distdir
714 dist-shar: distdir
718 dist-zip: distdir
723 dist dist-all: distdir
[all …]
/freebsd-12-stable/contrib/openresolv/
DMakefile83 dist-git:
86 dist-inst:
93 dist: dist-git target
95 distinfo: dist
103 import: dist
/freebsd-12-stable/sys/arm64/arm64/
Dgic_v3_acpi.c90 ACPI_MADT_GENERIC_DISTRIBUTOR *dist; member
103 if (madt_data->dist != NULL) { in madt_handler()
109 madt_data->dist = (ACPI_MADT_GENERIC_DISTRIBUTOR *)entry; in madt_handler()
162 madt_data.dist = NULL; in gic_v3_acpi_identify()
167 if (madt_data.dist == NULL) { in gic_v3_acpi_identify()
173 if (madt_data.dist->Version != ACPI_MADT_GIC_VERSION_V3) in gic_v3_acpi_identify()
185 madt_data.dist->BaseAddress, 128 * 1024); in gic_v3_acpi_identify()
191 acpi_set_private(dev, (void *)(uintptr_t)madt_data.dist->Version); in gic_v3_acpi_identify()
/freebsd-12-stable/sys/arm/arm/
Dgic_acpi.c90 ACPI_MADT_GENERIC_DISTRIBUTOR *dist; member
104 if (madt_data->dist != NULL) { in madt_handler()
109 madt_data->dist = in madt_handler()
142 madt_data.dist = NULL; in gic_acpi_identify()
148 switch (madt_data.dist->Version) { in gic_acpi_identify()
182 madt_data.dist->BaseAddress, 4 * 1024); in gic_acpi_identify()
186 acpi_set_private(dev, (void *)(uintptr_t)madt_data.dist->Version); in gic_acpi_identify()
/freebsd-12-stable/contrib/ntp/
DMakefile.in176 cscope distdir distdir-am dist dist-all distcheck
249 DIST_TARGETS = dist-gzip
824 dist-hook
832 dist-gzip: distdir
836 dist-bzip2: distdir
840 dist-lzip: distdir
844 dist-xz: distdir
848 dist-zstd: distdir
852 dist-tarZ: distdir
859 dist-shar: distdir
[all …]

1234567891011