Lines Matching full:equal

1342  * KUNIT_EXPECT_EQ() - Sets an expectation that @left and @right are equal.
1348 * equal. This is semantically equivalent to
1364 * KUNIT_EXPECT_PTR_EQ() - Expects that pointers @left and @right are equal.
1370 * equal. This is semantically equivalent to
1389 * KUNIT_EXPECT_NE() - An expectation that @left and @right are not equal.
1395 * equal. This is semantically equivalent to
1411 * KUNIT_EXPECT_PTR_NE() - Expects that pointers @left and @right are not equal.
1417 * equal. This is semantically equivalent to
1458 * KUNIT_EXPECT_LE() - Expects that @left is less than or equal to @right.
1464 * equal to the value that @right evaluates to. Semantically this is equivalent
1502 * KUNIT_EXPECT_GE() - Expects that @left is greater than or equal to @right.
1524 * KUNIT_EXPECT_STREQ() - Expects that strings @left and @right are equal.
1530 * equal. This is semantically equivalent to
1546 * KUNIT_EXPECT_STRNEQ() - Expects that strings @left and @right are not equal.
1552 * not equal. This is semantically equivalent to
1631 * KUNIT_ASSERT_EQ() - Sets an assertion that @left and @right are equal.
1637 * equal. This is the same as KUNIT_EXPECT_EQ(), except it causes an assertion
1652 * KUNIT_ASSERT_PTR_EQ() - Asserts that pointers @left and @right are equal.
1658 * equal. This is the same as KUNIT_EXPECT_EQ(), except it causes an assertion
1673 * KUNIT_ASSERT_NE() - An assertion that @left and @right are not equal.
1679 * equal. This is the same as KUNIT_EXPECT_NE(), except it causes an assertion
1694 * KUNIT_ASSERT_PTR_NE() - Asserts that pointers @left and @right are not equal.
1695 * KUNIT_ASSERT_PTR_EQ() - Asserts that pointers @left and @right are equal.
1701 * equal. This is the same as KUNIT_EXPECT_NE(), except it causes an assertion
1736 * KUNIT_ASSERT_LE() - An assertion that @left is less than or equal to @right.
1742 * equal to the value that @right evaluates to. This is the same as
1780 * KUNIT_ASSERT_GE() - Assertion that @left is greater than or equal to @right.
1802 * KUNIT_ASSERT_STREQ() - An assertion that strings @left and @right are equal.
1808 * equal. This is the same as KUNIT_EXPECT_STREQ(), except it causes an
1823 * KUNIT_ASSERT_STRNEQ() - Expects that strings @left and @right are not equal.
1829 * not equal. This is semantically equivalent to