Home
last modified time | relevance | path

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

/dragonfly/contrib/zstd/lib/decompress/
H A Dhuf_decompress.c49 #define HUF_ALIGN(x, a) HUF_ALIGN_MASK((x), (a) - 1)
50 #define HUF_ALIGN_MASK(x, mask) (((x) + (mask)) & ~(mask)) macro