Lines Matching full:equal
722 * KUNIT_EXPECT_EQ() - Sets an expectation that @left and @right are equal.
728 * equal. This is semantically equivalent to
743 * KUNIT_EXPECT_PTR_EQ() - Expects that pointers @left and @right are equal.
749 * equal. This is semantically equivalent to
764 * KUNIT_EXPECT_NE() - An expectation that @left and @right are not equal.
770 * equal. This is semantically equivalent to
785 * KUNIT_EXPECT_PTR_NE() - Expects that pointers @left and @right are not equal.
791 * equal. This is semantically equivalent to
827 * KUNIT_EXPECT_LE() - Expects that @left is less than or equal to @right.
833 * equal to the value that @right evaluates to. Semantically this is equivalent
869 * KUNIT_EXPECT_GE() - Expects that @left is greater than or equal to @right.
890 * KUNIT_EXPECT_STREQ() - Expects that strings @left and @right are equal.
896 * equal. This is semantically equivalent to
911 * KUNIT_EXPECT_STRNEQ() - Expects that strings @left and @right are not equal.
917 * not equal. This is semantically equivalent to
1037 * KUNIT_ASSERT_EQ() - Sets an assertion that @left and @right are equal.
1043 * equal. This is the same as KUNIT_EXPECT_EQ(), except it causes an assertion
1057 * KUNIT_ASSERT_PTR_EQ() - Asserts that pointers @left and @right are equal.
1063 * equal. This is the same as KUNIT_EXPECT_EQ(), except it causes an assertion
1077 * KUNIT_ASSERT_NE() - An assertion that @left and @right are not equal.
1083 * equal. This is the same as KUNIT_EXPECT_NE(), except it causes an assertion
1097 * KUNIT_ASSERT_PTR_NE() - Asserts that pointers @left and @right are not equal.
1098 * KUNIT_ASSERT_PTR_EQ() - Asserts that pointers @left and @right are equal.
1104 * equal. This is the same as KUNIT_EXPECT_NE(), except it causes an assertion
1137 * KUNIT_ASSERT_LE() - An assertion that @left is less than or equal to @right.
1143 * equal to the value that @right evaluates to. This is the same as
1179 * KUNIT_ASSERT_GE() - Assertion that @left is greater than or equal to @right.
1200 * KUNIT_ASSERT_STREQ() - An assertion that strings @left and @right are equal.
1206 * equal. This is the same as KUNIT_EXPECT_STREQ(), except it causes an
1220 * KUNIT_ASSERT_STRNEQ() - Expects that strings @left and @right are not equal.
1226 * not equal. This is semantically equivalent to