Home
last modified time | relevance | path

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

/linux-6.6.21/lib/zstd/decompress/
Dhuf_decompress.c76 #define HUF_ALIGN(x, a) HUF_ALIGN_MASK((x), (a) - 1)
77 #define HUF_ALIGN_MASK(x, mask) (((x) + (mask)) & ~(mask)) macro