Lines Matching refs:V1
353 const Value *V1 = 0, const Value *V2 = 0,
356 WriteValue(V1);
363 void CheckFailed(const Twine &Message, const Value *V1,
366 WriteValue(V1);
392 #define Assert1(C, M, V1) \
393 do { if (!(C)) { CheckFailed(M, V1); return; } } while (0)
394 #define Assert2(C, M, V1, V2) \
395 do { if (!(C)) { CheckFailed(M, V1, V2); return; } } while (0)
396 #define Assert3(C, M, V1, V2, V3) \
397 do { if (!(C)) { CheckFailed(M, V1, V2, V3); return; } } while (0)
398 #define Assert4(C, M, V1, V2, V3, V4) \
399 do { if (!(C)) { CheckFailed(M, V1, V2, V3, V4); return; } } while (0)