Home
last modified time | relevance | path

Searched refs:histo (Results 1 – 5 of 5) sorted by relevance

/external/llvm/utils/lit/lit/
DUtil.py111 histo = [set() for i in range(N)]
114 histo[bin].add(name)
133 for i,row in enumerate(histo):
/external/valgrind/main/exp-dhat/
Ddh_main.c212 UInt* histo; /* [0 .. xsize-1] */ member
340 tl_assert(!api->histo); in retire_Block()
346 api->histo = VG_(malloc)("dh.main.retire_Block.1", in retire_Block()
348 VG_(memset)(api->histo, 0, api->xsize * sizeof(UInt)); in retire_Block()
360 if (api->histo) { in retire_Block()
361 VG_(free)(api->histo); in retire_Block()
362 api->histo = NULL; in retire_Block()
377 if (api->xsize_tag == Exactly && api->histo && bk->histoW) { in retire_Block()
383 if (api->histo[i] <= 0xFFFE0000) in retire_Block()
384 api->histo[i] += (UInt)bk->histoW[i]; in retire_Block()
[all …]
/external/webp/src/enc/
Ddsp.c27 int VP8GetAlpha(const int histo[MAX_COEFF_THRESH + 1]) { in VP8GetAlpha()
33 if (histo[k + 1]) { in VP8GetAlpha()
34 val += histo[k + 1]; in VP8GetAlpha()
46 int histo[MAX_COEFF_THRESH + 1] = { 0 }; in CollectHistogram() local
60 histo[out[k]]++; in CollectHistogram()
64 return VP8GetAlpha(histo); in CollectHistogram()
Ddsp_sse2.c27 int histo[MAX_COEFF_THRESH + 1] = { 0 }; in CollectHistogramSSE2() local
60 histo[out[k]]++; in CollectHistogramSSE2()
64 return VP8GetAlpha(histo); in CollectHistogramSSE2()
Dvp8enci.h452 int VP8GetAlpha(const int histo[MAX_COEFF_THRESH + 1]);