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

  /src/external/mpl/bind/dist/tests/isc/
histo_test.c 72 isc_histo_t *hg = NULL; local
73 isc_histo_create(mctx, bits, &hg);
75 isc_histo_inc(hg, 0);
81 result = isc_histo_get(hg, key, &min, &max, &count);
87 isc_histo_inc(hg, min);
88 result = isc_histo_get(hg, key, &min, &max, &count);
93 isc_histo_add(hg, max, 2);
94 result = isc_histo_get(hg, key, &min, &max, &count);
99 isc_histo_put(hg, min, max, 4);
100 result = isc_histo_get(hg, key, &min, &max, &count)
157 isc_histo_t *hg = NULL; local
251 isc_histo_t *hg = NULL; local
292 isc_histo_t *hg = NULL; local
    [all...]
  /src/external/mpl/bind/dist/lib/isc/
histo.c 57 #define DENORMALS(hg) ((hg)->sigbits - 1)
58 #define MANTISSAS(hg) (1 << (hg)->sigbits)
59 #define EXPONENTS(hg) (CHUNKS - DENORMALS(hg))
60 #define BUCKETS(hg) (EXPONENTS(hg) * MANTISSAS(hg))
62 #define MAXCHUNK(hg) EXPONENTS(hg
82 isc_histo_t *hg[]; member in struct:isc_histomulti
94 isc_histo_t *hg = isc_mem_get(mctx, sizeof(*hg)); local
109 isc_histo_t *hg = *hgp; local
425 isc_histo_t *hg = hm->hg[isc_tid()]; local
    [all...]
  /src/external/mpl/bind/dist/bin/named/
statschannel.c 824 isc_histo_t *hg = NULL; local
826 isc_histomulti_merge(&hg, hm);
828 isc_histo_get(hg, i, NULL, NULL, &values[i]);
830 isc_histo_destroy(&hg);

Completed in 21 milliseconds