Symbol: ushf
common/dist/zlib/deflate.c
1364
ds->d_buf = (ushf *)(ds->pending_buf + (ds->lit_bufsize << 1));
common/dist/zlib/deflate.c
1411
ush scan_start = *(ushf*)scan;
common/dist/zlib/deflate.c
1412
ush scan_end = *(ushf*)(scan + best_len - 1);
common/dist/zlib/deflate.c
1452
if (*(ushf*)(match + best_len - 1) != scan_end ||
common/dist/zlib/deflate.c
1453
*(ushf*)match != scan_start) continue;
common/dist/zlib/deflate.c
1467
} while (*(ushf*)(scan += 2) == *(ushf*)(match += 2) &&
common/dist/zlib/deflate.c
1468
*(ushf*)(scan += 2) == *(ushf*)(match += 2) &&
common/dist/zlib/deflate.c
1469
*(ushf*)(scan += 2) == *(ushf*)(match += 2) &&
common/dist/zlib/deflate.c
1470
*(ushf*)(scan += 2) == *(ushf*)(match += 2) &&
common/dist/zlib/deflate.c
1521
scan_end = *(ushf*)(scan + best_len - 1);
common/dist/zlib/deflate.c
518
s->d_buf = (ushf *)(s->pending_buf + (s->lit_bufsize << 1));
common/dist/zlib/deflate.h
228
ushf *d_buf; /* buffer for distances */
common/dist/zlib/trees.c
205
local void gen_codes(ct_data *tree, int max_code, ushf *bl_count) {
sys/net/zlib.c
1220
ushf *overlay;
sys/net/zlib.c
1240
overlay = (ushf *) ZALLOC(dest, ds->lit_bufsize, sizeof(ush)+2);
sys/net/zlib.c
1372
ush scan_start = *(ushf*)scan;
sys/net/zlib.c
1373
ush scan_end = *(ushf*)(scan+best_len-1);
sys/net/zlib.c
1407
if (*(ushf*)(match+best_len-1) != scan_end ||
sys/net/zlib.c
1408
*(ushf*)match != scan_start) continue;
sys/net/zlib.c
1422
} while (*(ushf*)(scan+=2) == *(ushf*)(match+=2) &&
sys/net/zlib.c
1423
*(ushf*)(scan+=2) == *(ushf*)(match+=2) &&
sys/net/zlib.c
1424
*(ushf*)(scan+=2) == *(ushf*)(match+=2) &&
sys/net/zlib.c
1425
*(ushf*)(scan+=2) == *(ushf*)(match+=2) &&
sys/net/zlib.c
1474
scan_end = *(ushf*)(scan+best_len-1);
sys/net/zlib.c
2246
local void gen_codes(ct_data *tree, int max_code, ushf *bl_count);
sys/net/zlib.c
2673
ushf *bl_count) /* number of codes at each bit length */
sys/net/zlib.c
511
ushf *d_buf;
sys/net/zlib.c
820
ushf *overlay;
sys/net/zlib.c
875
overlay = (ushf *) ZALLOC(strm, s->lit_bufsize, sizeof(ush)+2);