Lines Matching refs:_v
94 #define prt_u64(_out, _v) prt_printf(_out, "%llu", (u64) (_v)) argument
158 unsigned long _v; \
159 int _r = kstrtoul(cp, 10, &_v); \
161 var = _v; \
167 unsigned long _v; \
168 int _r = kstrtoul(cp, 10, &_v); \
170 var = clamp_t(typeof(var), _v, min, max); \
176 unsigned long _v; \
177 int _r = kstrtoul(cp, 10, &_v); \
178 if (!_r && _v >= min && _v <= max) \
179 var = _v; \