Lines Matching full:equal
871 * KUNIT_EXPECT_EQ() - Sets an expectation that @left and @right are equal.
877 * equal. This is semantically equivalent to
892 * KUNIT_EXPECT_PTR_EQ() - Expects that pointers @left and @right are equal.
898 * equal. This is semantically equivalent to
913 * KUNIT_EXPECT_NE() - An expectation that @left and @right are not equal.
919 * equal. This is semantically equivalent to
934 * KUNIT_EXPECT_PTR_NE() - Expects that pointers @left and @right are not equal.
940 * equal. This is semantically equivalent to
976 * KUNIT_EXPECT_LE() - Expects that @left is less than or equal to @right.
982 * equal to the value that @right evaluates to. Semantically this is equivalent
1018 * KUNIT_EXPECT_GE() - Expects that @left is greater than or equal to @right.
1039 * KUNIT_EXPECT_STREQ() - Expects that strings @left and @right are equal.
1045 * equal. This is semantically equivalent to
1060 * KUNIT_EXPECT_STRNEQ() - Expects that strings @left and @right are not equal.
1066 * not equal. This is semantically equivalent to
1081 * KUNIT_EXPECT_MEMEQ() - Expects that the first @size bytes of @left and @right are equal.
1088 * equal. This is semantically equivalent to
1108 * KUNIT_EXPECT_MEMNEQ() - Expects that the first @size bytes of @left and @right are not equal.
1115 * not equal. This is semantically equivalent to
1240 * KUNIT_ASSERT_EQ() - Sets an assertion that @left and @right are equal.
1246 * equal. This is the same as KUNIT_EXPECT_EQ(), except it causes an assertion
1260 * KUNIT_ASSERT_PTR_EQ() - Asserts that pointers @left and @right are equal.
1266 * equal. This is the same as KUNIT_EXPECT_EQ(), except it causes an assertion
1280 * KUNIT_ASSERT_NE() - An assertion that @left and @right are not equal.
1286 * equal. This is the same as KUNIT_EXPECT_NE(), except it causes an assertion
1300 * KUNIT_ASSERT_PTR_NE() - Asserts that pointers @left and @right are not equal.
1301 * KUNIT_ASSERT_PTR_EQ() - Asserts that pointers @left and @right are equal.
1307 * equal. This is the same as KUNIT_EXPECT_NE(), except it causes an assertion
1340 * KUNIT_ASSERT_LE() - An assertion that @left is less than or equal to @right.
1346 * equal to the value that @right evaluates to. This is the same as
1382 * KUNIT_ASSERT_GE() - Assertion that @left is greater than or equal to @right.
1403 * KUNIT_ASSERT_STREQ() - An assertion that strings @left and @right are equal.
1409 * equal. This is the same as KUNIT_EXPECT_STREQ(), except it causes an
1423 * KUNIT_ASSERT_STRNEQ() - Expects that strings @left and @right are not equal.
1429 * not equal. This is semantically equivalent to