Home
last modified time | relevance | path

Searched defs:clamp_t (Results 1 – 2 of 2) sorted by relevance

/openbmc/linux/include/linux/
H A Dminmax.h224 #define clamp_t(type, val, lo, hi) __careful_clamp((type)(val), (type)(lo), (type)(hi)) macro
/openbmc/u-boot/include/linux/
H A Dkernel.h236 #define clamp_t(type, val, lo, hi) min_t(type, max_t(type, val, lo), hi) macro