Home
last modified time | relevance | path

Searched refs:HSIZE (Results 1 – 9 of 9) sorted by relevance

/dragonfly/usr.bin/flame_graph/
H A Dprocess.c46 #define HSIZE (1024*1024) macro
47 #define HMASK (HSIZE - 1)
84 static elm_t *elm_hash_array[HSIZE];
104 scanp = &elm_hash_array[hv % HSIZE]; in elm_lookup()
128 for (i = 0; i < HSIZE; ++i) { in flame_process_dump()
/dragonfly/contrib/libarchive/libarchive/
H A Darchive_write_add_filter_compress.c77 #define HSIZE 69001 /* 95% occupancy */ macro
96 int hashtab [HSIZE];
97 unsigned short codetab [HSIZE];
368 disp = HSIZE - i; in archive_compressor_compress_write()
371 i += HSIZE; in archive_compressor_compress_write()
H A Darchive_write_set_format_cpio_binary.c83 #define HSIZE 26 macro
176 if (sizeof(struct cpio_binary_header) != HSIZE) { in archive_write_set_format_cpio_binary()
522 ret = __archive_write_output(a, &h, HSIZE); in write_header()
/dragonfly/usr.sbin/sshlockout/
H A Dsshlockout.c88 #define HSIZE 1024 macro
89 #define HMASK (HSIZE - 1)
96 static iphist_t *hist_hash[HSIZE];
483 for (int i = 0; i < HSIZE; i++) { in init_iphist()
/dragonfly/usr.bin/gzip/
H A Dzuncompress.c47 #define HSIZE 69001 /* 95% occupancy */ /* XXX may not need HSIZE */ macro
94 count_int zs_htab [HSIZE];
95 u_short zs_codetab [HSIZE];
182 zs->zs_hsize = HSIZE; /* For dynamic table sizing. */ in zdopen()
/dragonfly/usr.bin/compress/
H A Dzopen.c73 #define HSIZE 69001 /* 95% occupancy */ macro
104 count_int zs_htab [HSIZE];
105 u_short zs_codetab [HSIZE];
694 hsize = HSIZE; /* For dynamic table sizing. */ in zopen()
/dragonfly/usr.bin/window/
H A Dcompress.c144 #define HSIZE (1 << H) macro
145 #define hash(h, c) (((((h) >> (H - 8)) | (h) << 8) ^ (c)) & (HSIZE - 1))
249 if ((cc_htab = (struct cc **) malloc(HSIZE * sizeof *cc_htab)) == NULL) in ccinit()
316 memset((char *) cc_htab, 0, HSIZE * sizeof *cc_htab); in ccreset()
/dragonfly/usr.bin/compress/doc/
H A Drevision.log40 * Set HSIZE depending on BITS. Set BITS depending on USERMEM. Unrolled
/dragonfly/bin/cpdup/
H A Dcpdup.c60 #define HSIZE 8192 macro
61 #define HMASK (HSIZE-1)
84 Node *li_Hash[HSIZE];