HomeSort by: relevance | last modified time | path
    Searched defs:hshift (Results 1 - 4 of 4) sorted by relevancy

  /src/common/lib/libc/gen/
radixtree.c 506 int hshift = RADIX_TREE_BITS_PER_HEIGHT * t->t_height; local
528 if (shift >= hshift) {
548 hshift = RADIX_TREE_BITS_PER_HEIGHT * t->t_height;
  /src/sys/net/
bsd-comp.c 88 u_char hshift; /* used in hash function */ member in struct:bsd_db
179 #define BSD_HASH(prefix,suffix,hshift) ((((uint32_t)(suffix)) << (hshift)) \
306 u_int newlen, hsize, hshift, maxmaxcode; local
320 hshift = 4;
324 hshift = 5;
328 hshift = 6;
332 hshift = 7;
336 /* hshift = 8; */ /* in struct bsd_db */
361 db->hshift = hshift
459 int hshift = db->hshift; local
669 u_int hshift = db->hshift; local
    [all...]
  /src/usr.bin/compress/
zopen.c 166 #define hshift zs->u.w.zs_hshift macro
276 hshift = 0;
278 hshift++;
279 hshift = 8 - hshift; /* Set hash code range bound. */
288 i = ((c << hshift) ^ ent); /* Xor hashing. */
  /src/external/bsd/less/dist/
line.c 61 public int hshift; /* Desired left-shift of output line buffer */ variable
767 if (cshift == hshift)
785 if (cshift < hshift)
806 while (cshift > hshift)
1010 char *start = (cshift < hshift) ? xbuf_char_data(&shifted_ansi): linebuf.buf;
1011 int *end = (cshift < hshift) ? &shifted_ansi.end : &linebuf.end;
1499 int save_hshift = hshift;
1501 hshift = 0;
1512 hshift += 1;
1515 hshift = save_hshift
    [all...]

Completed in 27 milliseconds