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

/illumos-gate/usr/src/cmd/w/
H A Dw.c91 #define HSIZE 256 /* size of process hash table */ macro
120 * and the size of the hash table(HSIZE)
123 static struct uproc pr_htbl[HSIZE];
613 tp = up = &pr_htbl[pid % HSIZE];
/illumos-gate/usr/src/cmd/whodo/
H A Dwhodo.c90 #define HSIZE 256 /* size of process hash table */ macro
124 * and the size of the hash table(HSIZE)
127 static struct uproc pr_htbl[HSIZE];
702 tp = up = &pr_htbl[(int)pid % HSIZE];
/illumos-gate/usr/src/cmd/compress/
H A Dcompress.c71 #define HSIZE 69001 /* 95% occupancy */ macro
74 #define HSIZE 35023 /* 94% occupancy */ macro
77 #define HSIZE 18013 /* 91% occupancy */ macro
80 #define HSIZE 9001 /* 91% occupancy */ macro
83 #define HSIZE 5003 /* 80% occupancy */ macro
145 static code_int hsize = HSIZE; /* for dynamic table sizing */
674 hsize = HSIZE;
719 hsize = HSIZE;
721 hsize = min(5003, HSIZE);
723 hsize = min(9001, HSIZE);
[all...]

Completed in 64 milliseconds