| /NextBSD/contrib/xz/src/liblzma/lzma/ |
| HD | fastpos.h | 79 # 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 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 …]
|
| HD | lzma_encoder_optimum_fast.c | 82 *back_res = coder->matches[matches_count - 1].dist + REPS; in lzma_lzma_optimum_fast() 90 back_main = coder->matches[matches_count - 1].dist; in lzma_lzma_optimum_fast() 95 matches_count - 2].dist, in lzma_lzma_optimum_fast() 101 back_main = coder->matches[matches_count - 1].dist; in lzma_lzma_optimum_fast() 134 coder->matches_count - 1].dist; in lzma_lzma_optimum_fast()
|
| /NextBSD/etc/mtree/ |
| HD | Makefile | 5 FILES= ${_BSD.debug.dist} \ 6 BSD.include.dist \ 7 BSD.root.dist \ 8 ${_BSD.lib32.dist} \ 9 ${_BSD.libsoft.dist} \ 10 ${_BSD.sendmail.dist} \ 11 ${_BSD.tests.dist} \ 12 BSD.usr.dist \ 13 BSD.var.dist 16 _BSD.debug.dist= BSD.debug.dist [all …]
|
| /NextBSD/usr.sbin/bsdinstall/distextract/ |
| HD | distextract.c | 71 struct dpv_file_node *dist = dists; in main() local 103 if (dist == NULL) { in main() 104 if ((dist = calloc(1, file_node_size)) == NULL) in main() 106 dists = dist; in main() 108 dist->next = calloc(1, file_node_size); in main() 109 if (dist->next == NULL) in main() 111 dist = dist->next; in main() 115 if ((dist->path = malloc(span + 1)) == NULL) in main() 117 snprintf(dist->path, span + 1, "%s", distributions); in main() 118 dist->path[span] = '\0'; in main() [all …]
|
| /NextBSD/usr.sbin/bsdinstall/scripts/ |
| HD | checksum | 32 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 '{ 66 …--msgbox "The checksum for $dist does not match. It may have become corrupted, and should be redow…
|
| HD | jail | 83 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"
|
| /NextBSD/contrib/ofed/management/infiniband-diags/src/ |
| HD | ibnetdiscover.c | 258 create_node(Node *temp, ib_portid_t *path, int dist) in create_node() argument 268 node->dist = dist; in create_node() 275 dist = MAXHOPS; /* special Ca list */ in create_node() 277 node->dnext = nodesdist[dist]; in create_node() 278 nodesdist[dist] = node; in create_node() 327 handle_port(Node *node, Port *port, ib_portid_t *path, int portnum, int dist) in handle_port() argument 337 DEBUG("handle node %p port %p:%d dist %d", node, port, portnum, dist); in handle_port() 354 else if (!(remotenode = create_node(&node_buf, path, dist + 1))) in handle_port() 385 int dist = 0; in discover() local 412 for (dist = 0; dist < MAXHOPS; dist++) { in discover() [all …]
|
| HD | grouping.c | 708 int dist; in group_nodes() local 720 for (dist = 0; dist <= maxhops_discovered; dist++) { in group_nodes() 721 for (node = nodesdist[dist]; node; node = node->dnext) { in group_nodes() 729 for (dist = 0; dist <= maxhops_discovered; dist++) { in group_nodes() 730 for (node = nodesdist[dist]; node; node = node->dnext) { in group_nodes() 743 for (dist = 0; dist <= maxhops_discovered; dist++) { in group_nodes() 744 for (node = nodesdist[dist]; node; node = node->dnext) { in group_nodes() 763 for (dist = 0; dist <= MAXHOPS; ) { in group_nodes() 764 for (node = nodesdist[dist]; node; node = node->dnext) { in group_nodes() 780 if (dist == maxhops_discovered) in group_nodes() [all …]
|
| HD | ibtracert.c | 107 int dist; member 412 new_node(Node *node, Port *port, ib_portid_t *path, int dist) in new_node() argument 415 node->dist = -1; /* tag as target */ in new_node() 425 VERBOSE("insert dist %d node %p port %d lid %d", dist, node, port->portnum, port->lid); in new_node() 429 node->dist = dist; in new_node() 431 node->dnext = nodesdist[dist]; in new_node() 432 nodesdist[dist] = node; in new_node() 490 int dist = 0, leafport = 0; in find_mcpath() local 519 for (dist = 0; dist < MAXHOPS; dist++) { in find_mcpath() 521 for (node = nodesdist[dist]; node; node = node->dnext) { in find_mcpath() [all …]
|
| /NextBSD/lib/libz/ |
| HD | inffast.c | 94 unsigned dist; /* match distance */ local 165 dist = (unsigned)(here.val); 175 dist += (unsigned)hold & ((1U << op) - 1); 177 if (dist > dmax) { 185 Tracevv((stderr, "inflate: distance %u\n", dist)); 187 if (dist > op) { /* see if copy from window */ 188 op = dist - op; /* distance back in window */ 208 from = out - dist; 224 from = out - dist; /* rest from output */ 242 from = out - dist; /* rest from output */ [all …]
|
| HD | deflate.h | 297 int ZLIB_INTERNAL _tr_tally OF((deflate_state *s, unsigned dist, unsigned lc)); 305 #define d_code(dist) \ argument 306 ((dist) < 256 ? _dist_code[dist] : _dist_code[256+((dist)>>7)]) 332 ush dist = (distance); \ 333 s->d_buf[s->last_lit] = dist; \ 335 dist--; \ 337 s->dyn_dtree[d_code(dist)].Freq++; \
|
| HD | trees.c | 242 int dist; /* distance index */ in tr_static_init() local 273 dist = 0; in tr_static_init() 275 base_dist[code] = dist; in tr_static_init() 277 _dist_code[dist++] = (uch)code; in tr_static_init() 280 Assert (dist == 256, "tr_static_init: dist != 256"); in tr_static_init() 281 dist >>= 7; /* from now on, all distances are divided by 128 */ in tr_static_init() 283 base_dist[code] = dist << 7; in tr_static_init() 285 _dist_code[256 + dist++] = (uch)code; in tr_static_init() 288 Assert (dist == 256, "tr_static_init: 256+dist != 512"); in tr_static_init() 1010 int ZLIB_INTERNAL _tr_tally (s, dist, lc) in _tr_tally() argument [all …]
|
| /NextBSD/etc/ |
| HD | Makefile | 148 MTREE= BSD.debug.dist BSD.include.dist BSD.root.dist BSD.usr.dist BSD.var.dist 150 MTREE+= BSD.lib32.dist 153 MTREE+= BSD.libsoft.dist 156 MTREE+= BSD.tests.dist 338 MTREES= mtree/BSD.root.dist / \ 339 mtree/BSD.var.dist /var \ 340 mtree/BSD.usr.dist /usr \ 341 mtree/BSD.include.dist /usr/include \ 342 mtree/BSD.debug.dist /usr/lib 344 MTREES+= mtree/BSD.groff.dist /usr [all …]
|
| /NextBSD/sys/cddl/contrib/opensolaris/uts/common/zmod/ |
| HD | inffast.c | 96 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; /* rest from output */ [all …]
|
| HD | deflate.h | 283 int _tr_tally OF((deflate_state *s, unsigned dist, unsigned lc)); 290 #define d_code(dist) \ argument 291 ((dist) < 256 ? _dist_code[dist] : _dist_code[256+((dist)>>7)]) 317 ush dist = (distance); \ 318 s->d_buf[s->last_lit] = dist; \ 320 dist--; \ 322 s->dyn_dtree[d_code(dist)].Freq++; \
|
| HD | trees.c | 246 int dist; /* distance index */ in tr_static_init() local 275 dist = 0; in tr_static_init() 277 base_dist[code] = dist; in tr_static_init() 279 _dist_code[dist++] = (uch)code; in tr_static_init() 282 Assert (dist == 256, "tr_static_init: dist != 256"); in tr_static_init() 283 dist >>= 7; /* from now on, all distances are divided by 128 */ in tr_static_init() 285 base_dist[code] = dist << 7; in tr_static_init() 287 _dist_code[256 + dist++] = (uch)code; in tr_static_init() 290 Assert (dist == 256, "tr_static_init: 256+dist != 512"); in tr_static_init() 1022 int _tr_tally (s, dist, lc) in _tr_tally() argument [all …]
|
| /NextBSD/sys/arm64/arm64/ |
| HD | gic_acpi.c | 53 ACPI_MADT_GENERIC_DISTRIBUTOR *dist; member 77 if (madt_data->dist != NULL) { in madt_handler() 84 madt_data->dist = (ACPI_MADT_GENERIC_DISTRIBUTOR *)entry; in madt_handler() 111 madt_data.dist = NULL; in arm_gic_acpi_identify() 116 if (madt_data.intr == NULL || madt_data.dist == NULL) { in arm_gic_acpi_identify() 131 madt_data.dist->BaseAddress, PAGE_SIZE); in arm_gic_acpi_identify()
|
| /NextBSD/ |
| HD | Makefile.inc1 | 590 mtree -deU -f ${.CURDIR}/etc/mtree/BSD.usr.dist \ 593 mtree -deU -f ${.CURDIR}/etc/mtree/BSD.groff.dist \ 596 mtree -deU -f ${.CURDIR}/etc/mtree/BSD.usr.dist \ 599 mtree -deU -f ${.CURDIR}/etc/mtree/BSD.include.dist \ 605 mtree -deU -f ${.CURDIR}/etc/mtree/BSD.debug.dist \ 607 mtree -deU -f ${.CURDIR}/etc/mtree/BSD.debug.dist \ 611 mtree -deU -f ${.CURDIR}/etc/mtree/BSD.lib32.dist \ 614 mtree -deU -f ${.CURDIR}/etc/mtree/BSD.lib32.dist \ 616 mtree -deU -f ${.CURDIR}/etc/mtree/BSD.lib32.dist \ 622 mtree -deU -f ${.CURDIR}/etc/mtree/BSD.tests.dist \ [all …]
|
| /NextBSD/contrib/tnftp/ |
| HD | Makefile.in | 72 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 …]
|
| /NextBSD/contrib/openpam/ |
| HD | Makefile.in | 133 cscope distdir dist dist-all distcheck 193 DIST_TARGETS = dist-gzip 566 dist-gzip: distdir 570 dist-bzip2: distdir 574 dist-lzip: distdir 578 dist-xz: distdir 582 dist-tarZ: distdir 589 dist-shar: distdir 596 dist-zip: distdir 601 dist dist-all: [all …]
|
| /NextBSD/contrib/file/ |
| HD | Makefile.in | 139 cscope distdir dist dist-all distcheck 202 DIST_TARGETS = dist-gzip 562 dist-gzip: distdir 566 dist-bzip2: distdir 570 dist-lzip: distdir 574 dist-xz: distdir 578 dist-tarZ: distdir 585 dist-shar: distdir 592 dist-zip: distdir 597 dist dist-all: [all …]
|
| /NextBSD/contrib/openbsm/ |
| HD | Makefile.in | 93 cscope distdir dist dist-all distcheck 135 DIST_TARGETS = dist-gzip 531 dist-gzip: distdir 535 dist-bzip2: distdir 539 dist-lzip: distdir 543 dist-xz: distdir 547 dist-tarZ: distdir 551 dist-shar: distdir 555 dist-zip: distdir 560 dist dist-all: [all …]
|
| /NextBSD/crypto/heimdal/ |
| HD | Makefile.in | 115 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 …]
|
| /NextBSD/release/ |
| HD | Makefile | 55 DISTDIR= dist 125 CLEANDIRS= dist ftp disc1 bootonly dvd 152 --exclude .git --exclude @ --exclude usr/src/release/dist usr/src | \ 182 mkdir -p ${.TARGET}/usr/freebsd-dist 183 for dist in MANIFEST $$(ls *.txz | grep -vE -- '(base|lib32)-dbg'); \ 184 do cp $${dist} ${.TARGET}/usr/freebsd-dist; \ 233 do cp $${dist} ${.TARGET}/usr/freebsd-dist; \
|
| /NextBSD/contrib/ofed/libibcm/ |
| HD | Makefile.in | 454 dist-hook 460 dist-gzip: distdir 464 dist-bzip2: distdir 468 dist-tarZ: distdir 472 dist-shar: distdir 476 dist-zip: distdir 481 dist dist-all: distdir 488 distcheck: dist 527 && $(MAKE) $(AM_MAKEFLAGS) dist \ 640 clean-generic clean-libLTLIBRARIES clean-libtool ctags dist \ [all …]
|