Lines Matching refs:fmt
5 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt argument
218 #define check_one_op(t, fmt, op, sym, a, b, r, of) do { \ argument
224 pr_warn("expected "fmt" "sym" "fmt \
230 pr_warn("expected "fmt" "sym" "fmt" == " \
231 fmt", got "fmt" (type %s)\n", \
237 #define DEFINE_TEST_FUNC(t, fmt) \ argument
242 check_one_op(t, fmt, add, "+", p->a, p->b, p->sum, p->s_of); \
243 check_one_op(t, fmt, add, "+", p->b, p->a, p->sum, p->s_of); \
244 check_one_op(t, fmt, sub, "-", p->a, p->b, p->diff, p->d_of); \
245 check_one_op(t, fmt, mul, "*", p->a, p->b, p->prod, p->p_of); \
246 check_one_op(t, fmt, mul, "*", p->b, p->a, p->prod, p->p_of); \