Home | History | Annotate | Download | only in enc

Lines Matching defs:FN

12 typedef struct FN(Histogram) {
16 } FN(Histogram);
18 static BROTLI_INLINE void FN(HistogramClear)(FN(Histogram)* self) {
24 static BROTLI_INLINE void FN(ClearHistograms)(
25 FN(Histogram)* array, size_t length) {
27 for (i = 0; i < length; ++i) FN(HistogramClear)(array + i);
30 static BROTLI_INLINE void FN(HistogramAdd)(FN(Histogram)* self, size_t val) {
35 static BROTLI_INLINE void FN(HistogramAddVector)(FN(Histogram)* self,
42 static BROTLI_INLINE void FN(HistogramAddHistogram)(FN(Histogram)* self,
43 const FN(Histogram)* v) {
51 static BROTLI_INLINE size_t FN(HistogramDataSize)(void) { return DATA_SIZE; }