Home | History | Annotate | Download | only in isc

Lines Matching defs:hg

72 		isc_histo_t *hg = NULL;
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);
106 isc_histo_inc(hg, max + 1);
107 result = isc_histo_get(hg, key, &min, &max,
124 result = isc_histo_get(hg, key, &min, &max, &count);
138 isc_histo_moments(hg, &pop, NULL, NULL);
142 isc_histo_destroy(&hg);
157 isc_histo_t *hg = NULL;
158 isc_histo_create(mctx, bits, &hg);
161 isc_histo_moments(hg, &pop, &mean, &sd);
166 for (key = 0; isc_histo_get(hg, key, &min, &max, &count) ==
172 isc_histo_inc(hg, min);
173 isc_histo_inc(hg, max);
179 isc_histo_moments(hg, &pop, NULL, NULL);
200 hg, quantum * 2 + 1, frac, value);
204 result = isc_histo_get(hg, key, &min, &max, &count);
228 isc_histo_destroy(&hg);
251 isc_histo_t *hg = NULL;
252 isc_histo_create(mctx, bits, &hg);
271 for (uint key = 1; isc_histo_get(hg, key, &imin, &imax, NULL) ==
281 isc_histo_destroy(&hg);
292 isc_histo_t *hg = NULL;
293 isc_histo_create(mctx, bits, &hg);
301 result = isc_histo_quantiles(hg, ARRAY_SIZE(frac), frac, value);
305 if (isc_histo_get(hg, key, &min, NULL, NULL) !=
310 if (isc_histo_get(hg, top, NULL, &max, NULL) !=
320 isc_histo_put(hg, min, max, SUBRANGE);
322 result = isc_histo_quantiles(hg, ARRAY_SIZE(frac), frac,
327 result = isc_histo_get(hg, key + bucket, &min,
337 isc_histo_destroy(&hg);
338 isc_histo_create(mctx, bits, &hg);
345 isc_histo_destroy(&hg);