Home
last modified time | relevance | path

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

/linux-5.19.10/lib/zstd/decompress/
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