Lines Matching full:condition
29 #define SUBENTRY(messageId, condition) \ argument
35 Assert(messageId, __LINE__, glueArg, condition, &nextLabel); \
37 #define SUBENTRY_WITH_GLUE(messageId, condition, glueArg) \ argument
42 Assert(messageId, __LINE__, glueArg, condition, &nextLabel); \
46 #define ASM_ASSERT(messageId, condition) \ argument
47 SUBENTRY(messageId, condition)
48 #define ASM_ASSERT_WITH_GLUE(messageId, condition, glue) \ argument
49 SUBENTRY_WITH_GLUE(messageId, condition, glue)
51 #define ASM_ASSERT(messageId, condition) \ argument
52 SUBENTRY(messageId, condition)
53 #define ASM_ASSERT_WITH_GLUE(messageId, condition, glue) \ argument
54 SUBENTRY_WITH_GLUE(messageId, condition, glue)
126 void Branch(GateRef condition, Label *trueLabel, Label *falseLabel);
568 void Assert(int messageId, int line, GateRef glue, GateRef condition, Label *nextLabel);