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

  /src/external/gpl3/binutils/dist/gprof/
gmon.h 97 * value of HASHFRACTION is based on the minimum number of bytes of
100 * HASHFRACTION is calculated as:
102 * HASHFRACTION = MIN_SUBR_SEPARATION / (2 * sizeof(short) - 1);
109 * which is separated by only three bytes, thus HASHFRACTION is
112 * HASHFRACTION = 3 / (2 * 2 - 1) = 1
117 #define HASHFRACTION 1
  /src/external/gpl3/binutils/dist/gprofng/src/
gmon.h 97 * value of HASHFRACTION is based on the minimum number of bytes of
100 * HASHFRACTION is calculated as:
102 * HASHFRACTION = MIN_SUBR_SEPARATION / (2 * sizeof(short) - 1);
109 * which is separated by only three bytes, thus HASHFRACTION is
112 * HASHFRACTION = 3 / (2 * 2 - 1) = 1
117 #define HASHFRACTION 1
  /src/external/gpl3/binutils.old/dist/gprof/
gmon.h 97 * value of HASHFRACTION is based on the minimum number of bytes of
100 * HASHFRACTION is calculated as:
102 * HASHFRACTION = MIN_SUBR_SEPARATION / (2 * sizeof(short) - 1);
109 * which is separated by only three bytes, thus HASHFRACTION is
112 * HASHFRACTION = 3 / (2 * 2 - 1) = 1
117 #define HASHFRACTION 1
  /src/sys/sys/
gmon.h 66 * The value of HASHFRACTION is based on the minimum number of bytes
69 * HASHFRACTION is calculated as:
71 * HASHFRACTION = MIN_SUBR_SEPARATION / (2 * sizeof(short) - 1);
78 * which is separated by only three bytes, thus HASHFRACTION is
81 * HASHFRACTION = 3 / (2 * 2 - 1) = 1
87 * distance. Hence, we will define HASHFRACTION to be 2 across all
92 #define HASHFRACTION 2
133 u_long hashfraction; member in struct:gmonparam
  /src/usr.bin/config/
hash.c 82 * HASHFRACTION controls ht_lim, which in turn controls the average chain
86 #define HASHFRACTION(sz) ((sz) * 3 / 2)
108 ht->ht_lim = HASHFRACTION(sz);
138 ht->ht_lim = HASHFRACTION(n);
  /src/external/gpl3/gcc/dist/libgcc/config/sol2/
gmon.c 58 #define HASHFRACTION 1
116 froms = sbrk (s_textsize / HASHFRACTION);
197 endfrom = s_textsize / (HASHFRACTION * sizeof (*froms));
202 frompc = s_lowpc + (fromindex * HASHFRACTION * sizeof (*froms));
353 frompcindex = &froms[((long) frompcindex) / (HASHFRACTION * sizeof (*froms))];
  /src/external/gpl3/gcc.old/dist/libgcc/config/sol2/
gmon.c 58 #define HASHFRACTION 1
116 froms = sbrk (s_textsize / HASHFRACTION);
197 endfrom = s_textsize / (HASHFRACTION * sizeof (*froms));
202 frompc = s_lowpc + (fromindex * HASHFRACTION * sizeof (*froms));
353 frompcindex = &froms[((long) frompcindex) / (HASHFRACTION * sizeof (*froms))];

Completed in 24 milliseconds