Lines Matching full:equal

957  * KUNIT_EXPECT_EQ() - Sets an expectation that @left and @right are equal.
963 * equal. This is semantically equivalent to
978 * KUNIT_EXPECT_PTR_EQ() - Expects that pointers @left and @right are equal.
984 * equal. This is semantically equivalent to
999 * KUNIT_EXPECT_NE() - An expectation that @left and @right are not equal.
1005 * equal. This is semantically equivalent to
1020 * KUNIT_EXPECT_PTR_NE() - Expects that pointers @left and @right are not equal.
1026 * equal. This is semantically equivalent to
1062 * KUNIT_EXPECT_LE() - Expects that @left is less than or equal to @right.
1068 * equal to the value that @right evaluates to. Semantically this is equivalent
1104 * KUNIT_EXPECT_GE() - Expects that @left is greater than or equal to @right.
1125 * KUNIT_EXPECT_STREQ() - Expects that strings @left and @right are equal.
1131 * equal. This is semantically equivalent to
1146 * KUNIT_EXPECT_STRNEQ() - Expects that strings @left and @right are not equal.
1152 * not equal. This is semantically equivalent to
1167 * KUNIT_EXPECT_MEMEQ() - Expects that the first @size bytes of @left and @right are equal.
1174 * equal. This is semantically equivalent to
1194 * KUNIT_EXPECT_MEMNEQ() - Expects that the first @size bytes of @left and @right are not equal.
1201 * not equal. This is semantically equivalent to
1337 * KUNIT_ASSERT_EQ() - Sets an assertion that @left and @right are equal.
1343 * equal. This is the same as KUNIT_EXPECT_EQ(), except it causes an assertion
1357 * KUNIT_ASSERT_PTR_EQ() - Asserts that pointers @left and @right are equal.
1363 * equal. This is the same as KUNIT_EXPECT_EQ(), except it causes an assertion
1377 * KUNIT_ASSERT_NE() - An assertion that @left and @right are not equal.
1383 * equal. This is the same as KUNIT_EXPECT_NE(), except it causes an assertion
1397 * KUNIT_ASSERT_PTR_NE() - Asserts that pointers @left and @right are not equal.
1398 * KUNIT_ASSERT_PTR_EQ() - Asserts that pointers @left and @right are equal.
1404 * equal. This is the same as KUNIT_EXPECT_NE(), except it causes an assertion
1437 * KUNIT_ASSERT_LE() - An assertion that @left is less than or equal to @right.
1443 * equal to the value that @right evaluates to. This is the same as
1479 * KUNIT_ASSERT_GE() - Assertion that @left is greater than or equal to @right.
1500 * KUNIT_ASSERT_STREQ() - An assertion that strings @left and @right are equal.
1506 * equal. This is the same as KUNIT_EXPECT_STREQ(), except it causes an
1520 * KUNIT_ASSERT_STRNEQ() - An assertion that strings @left and @right are not equal.
1526 * not equal. This is semantically equivalent to
1541 * KUNIT_ASSERT_MEMEQ() - Asserts that the first @size bytes of @left and @right are equal.
1548 * equal. This is semantically equivalent to
1568 * KUNIT_ASSERT_MEMNEQ() - Asserts that the first @size bytes of @left and @right are not equal.
1575 * not equal. This is semantically equivalent to