Home
last modified time | relevance | path

Searched refs:ushf (Results 1 – 4 of 4) sorted by relevance

/freebsd/sys/contrib/zlib/
H A Ddeflate.c507 s->d_buf = (ushf *)(s->pending_buf + (s->lit_bufsize << 1)); in deflateInit2_()
1324 ds->d_buf = (ushf *)(ds->pending_buf + (ds->lit_bufsize << 1)); in deflateCopy()
1368 register ush scan_start = *(ushf*)scan; in longest_match()
1369 register ush scan_end = *(ushf*)(scan + best_len - 1); in longest_match()
1409 if (*(ushf*)(match + best_len - 1) != scan_end || in longest_match()
1410 *(ushf*)match != scan_start) continue; in longest_match()
1424 } while (*(ushf*)(scan += 2) == *(ushf*)(match += 2) && in longest_match()
1425 *(ushf*)(scan += 2) == *(ushf*)(match += 2) && in longest_match()
1426 *(ushf*)(scan += 2) == *(ushf*)(match += 2) && in longest_match()
1427 *(ushf*)(scan += 2) == *(ushf*)(match += 2) && in longest_match()
[all …]
H A Dzutil.h42 typedef ush FAR ushf; typedef
H A Ddeflate.h226 ushf *d_buf; /* buffer for distances */
H A Dtrees.c202 local void gen_codes(ct_data *tree, int max_code, ushf *bl_count) { in gen_codes()