Searched refs:prefmt (Results 1 – 1 of 1) sorted by relevance
/freebsd/sys/sys/ |
H A D | qmath.h | 403 #define Q_DEBUGFMT_(prefmt, postfmt, mod, hexpad) \ argument 404 prefmt \ 434 #define Q_DEBUGFMT(q, prefmt, postfmt) \ argument 435 sizeof(q) == 8 ? Q_DEBUGFMT_(prefmt, postfmt, j, 16) : \ 436 sizeof(q) == 4 ? Q_DEBUGFMT_(prefmt, postfmt, , 8) : \ 437 sizeof(q) == 2 ? Q_DEBUGFMT_(prefmt, postfmt, h, 4) : \ 438 sizeof(q) == 1 ? Q_DEBUGFMT_(prefmt, postfmt, hh, 2) : \ 439 prefmt "\"%s\"@%p: invalid" postfmt \ 445 #define Q_DEBUG(q, prefmt, postfmt, incfmt) \ argument 446 Q_DEBUGFMT(q, prefmt, postfmt) \
|