Searched defs:hshift (Results 1 - 3 of 3) sorted by relevance

/illumos-gate/usr/src/cmd/cmd-inet/usr.bin/pppdump/
H A Dbsd-comp.c84 u_char hshift; /* used in hash function */ member in struct:bsd_db
164 #define BSD_HASH(prefix,suffix,hshift) ((((u_int32_t)(suffix)) << (hshift)) \
292 u_int newlen, hsize, hshift, maxmaxcode; local
306 hshift = 4;
310 hshift = 5;
314 hshift = 6;
318 hshift = 7;
322 /* hshift = 8; */ /* in struct bsd_db */
347 db->hshift
435 u_int hshift = db->hshift; local
[all...]
/illumos-gate/usr/src/uts/common/io/ppp/spppcomp/
H A Dbsd-comp.c101 uchar_t hshift; /* used in hash function */ member in struct:bsd_db
198 #define BSD_HASH(prefix, suffix, hshift) \
199 ((((uint32_t)(suffix)) << (hshift)) ^ (uint32_t)(prefix))
352 uint_t hshift; local
375 hshift = 4;
382 hshift = 5;
389 hshift = 6;
396 hshift = 7;
403 /* hshift = 8; */ /* in struct bsd_db */
430 db->hshift
558 int hshift = db->hshift; local
903 uint_t hshift = db->hshift; local
[all...]
/illumos-gate/usr/src/cmd/compress/
H A Dcompress.c926 cinterr(int hshift) argument
931 (void) fprintf(stderr, "hshift = %d, %d\n", hshift, (1 << hshift) -1);
976 int hshift; local
1011 hshift = 0;
1014 hshift++;
1016 hshift = 8 - hshift; /* set hash code range bound */
1027 i = ((c << hshift)
[all...]

Completed in 1411 milliseconds