Searched refs:prefmt (Results 1 – 1 of 1) sorted by relevance
| /freebsd-14-stable/sys/sys/ |
| HD | qmath.h | 400 #define Q_DEBUGFMT_(prefmt, postfmt, mod, hexpad) \ argument 401 prefmt \ 431 #define Q_DEBUGFMT(q, prefmt, postfmt) \ argument 432 sizeof(q) == 8 ? Q_DEBUGFMT_(prefmt, postfmt, j, 16) : \ 433 sizeof(q) == 4 ? Q_DEBUGFMT_(prefmt, postfmt, , 8) : \ 434 sizeof(q) == 2 ? Q_DEBUGFMT_(prefmt, postfmt, h, 4) : \ 435 sizeof(q) == 1 ? Q_DEBUGFMT_(prefmt, postfmt, hh, 2) : \ 436 prefmt "\"%s\"@%p: invalid" postfmt \ 442 #define Q_DEBUG(q, prefmt, postfmt, incfmt) \ argument 443 Q_DEBUGFMT(q, prefmt, postfmt) \
|