Lines Matching defs:x
37 #define ALWAYS_REQUIRE(x) calysto_assert(x) argument
38 #define ALWAYS_INSIST(x) calysto_assume(x) /* DLH calysto_assert()? */ argument
39 #define ALWAYS_INVARIANT(x) calysto_assume(x) argument
40 #define ALWAYS_ENSURE(x) calysto_assert(x) argument
68 #define ALWAYS_REQUIRE(x) assert(x) argument
69 #define ALWAYS_INSIST(x) assert(x) argument
70 #define ALWAYS_INVARIANT(x) assert(x) argument
71 #define ALWAYS_ENSURE(x) assert(x) argument
77 #define ALWAYS_REQUIRE(x) ISC_REQUIRE(x) argument
78 #define ALWAYS_INSIST(x) ISC_INSIST(x) argument
79 #define ALWAYS_INVARIANT(x) ISC_INVARIANT(x) argument
80 #define ALWAYS_ENSURE(x) ISC_ENSURE(x) argument
84 #define REQUIRE(x) ALWAYS_REQUIRE(x) argument
85 #define INSIST(x) ALWAYS_INSIST(x) argument
86 #define INVARIANT(x) ALWAYS_INVARIANT(x) argument
87 #define ENSURE(x) ALWAYS_ENSURE(x) argument
95 #define DEBUG_REQUIRE(x) REQUIRE(x) argument
96 #define DEBUG_INSIST(x) INSIST(x) argument
97 #define DEBUG_INVARIANT(x) INVARIANT(x) argument
98 #define DEBUG_ENSURE(x) ENSURE(x) argument
100 #define DEBUG_REQUIRE(x) do {} while (FALSE) argument
101 #define DEBUG_INSIST(x) do {} while (FALSE) argument
102 #define DEBUG_INVARIANT(x) do {} while (FALSE) argument
103 #define DEBUG_ENSURE(x) do {} while (FALSE) argument