Lines Matching full:equal
1223 * KUNIT_EXPECT_EQ() - Sets an expectation that @left and @right are equal.
1229 * equal. This is semantically equivalent to
1245 * KUNIT_EXPECT_PTR_EQ() - Expects that pointers @left and @right are equal.
1251 * equal. This is semantically equivalent to
1270 * KUNIT_EXPECT_NE() - An expectation that @left and @right are not equal.
1276 * equal. This is semantically equivalent to
1292 * KUNIT_EXPECT_PTR_NE() - Expects that pointers @left and @right are not equal.
1298 * equal. This is semantically equivalent to
1339 * KUNIT_EXPECT_LE() - Expects that @left is less than or equal to @right.
1345 * equal to the value that @right evaluates to. Semantically this is equivalent
1383 * KUNIT_EXPECT_GE() - Expects that @left is greater than or equal to @right.
1405 * KUNIT_EXPECT_STREQ() - Expects that strings @left and @right are equal.
1411 * equal. This is semantically equivalent to
1427 * KUNIT_EXPECT_STRNEQ() - Expects that strings @left and @right are not equal.
1433 * not equal. This is semantically equivalent to
1512 * KUNIT_ASSERT_EQ() - Sets an assertion that @left and @right are equal.
1518 * equal. This is the same as KUNIT_EXPECT_EQ(), except it causes an assertion
1533 * KUNIT_ASSERT_PTR_EQ() - Asserts that pointers @left and @right are equal.
1539 * equal. This is the same as KUNIT_EXPECT_EQ(), except it causes an assertion
1554 * KUNIT_ASSERT_NE() - An assertion that @left and @right are not equal.
1560 * equal. This is the same as KUNIT_EXPECT_NE(), except it causes an assertion
1575 * KUNIT_ASSERT_PTR_NE() - Asserts that pointers @left and @right are not equal.
1576 * KUNIT_ASSERT_PTR_EQ() - Asserts that pointers @left and @right are equal.
1582 * equal. This is the same as KUNIT_EXPECT_NE(), except it causes an assertion
1617 * KUNIT_ASSERT_LE() - An assertion that @left is less than or equal to @right.
1623 * equal to the value that @right evaluates to. This is the same as
1661 * KUNIT_ASSERT_GE() - Assertion that @left is greater than or equal to @right.
1683 * KUNIT_ASSERT_STREQ() - An assertion that strings @left and @right are equal.
1689 * equal. This is the same as KUNIT_EXPECT_STREQ(), except it causes an
1704 * KUNIT_ASSERT_STRNEQ() - Expects that strings @left and @right are not equal.
1710 * not equal. This is semantically equivalent to