Lines Matching defs:AssertMsg
698 /** @def AssertMsg
704 # define AssertMsg(expr, a) \
714 # define AssertMsg(expr, a) do { } while (0)
2046 do { AssertMsg(RT_SUCCESS_NP(rc), msg); NOREF(rc); } while (0)
2135 #define AssertRCSuccess(rc) do { AssertMsg((rc) == VINF_SUCCESS, ("%Rra\n", (rc))); NOREF(rc); } while (0)
2540 #define AssertPtr(pv) AssertMsg(VALID_PTR(pv), ("%p\n", (pv)))
2577 #define AssertPtrNull(pv) AssertMsg(VALID_PTR(pv) || (pv) == NULL, ("%p\n", (pv)))
2614 #define AssertGCPhys32(GCPhys) AssertMsg(VALID_PHYS32(GCPhys), ("%RGp\n", (RTGCPHYS)(GCPhys)))
2624 # define AssertGCPtr32(GCPtr) AssertMsg(!((GCPtr) & UINT64_C(0xffffffff00000000)), ("%RGv\n", GCPtr))
2644 AssertMsg(expr, ("%s = %#RX64 (%RI64)", #var, (uint64_t)var, (int64_t)var)); \