Searched defs:SWR_ASSERT (Results 1 - 2 of 2) sorted by relevance

/external/mesa3d/src/gallium/drivers/swr/rasterizer/common/
H A Drdtsc_buckets.h117 SWR_ASSERT(tlsThreadId < mThreads.size()); function
144 SWR_ASSERT(tlsThreadId < mThreads.size());
156 SWR_ASSERT(bt.pCurrent->id == id, "Mismatched buckets detected");
172 SWR_ASSERT(tlsThreadId < mThreads.size());
H A Dswr_assert.h41 // - SWR_ASSERT(expression, ...): Inform the user is expression is false.
45 // - SWR_REL_ASSERT(expression, ...): Unconditionally enabled version of SWR_ASSERT
47 // - SWR_ASSUME_ASSERT(expression, ...): Conditionally enabled SWR_ASSERT. Uses
48 // SWR_ASSUME if SWR_ASSERT is disabled.
88 #define SWR_ASSERT(e, ...) assert(e) macro
127 #define SWR_ASSERT(e, ...) _SWR_ASSERT(true, e, ##__VA_ARGS__) macro
128 #define SWR_ASSUME_ASSERT(e, ...) SWR_ASSERT(e, ##__VA_ARGS__)
134 #define assert(exp) SWR_ASSERT(exp)
149 #define SWR_ASSERT(e, ...) (void)(0) macro
160 #define SWR_NOT_IMPL SWR_ASSERT(
[all...]

Completed in 327 milliseconds