Lines Matching full:equal
1023 * KUNIT_EXPECT_EQ() - Sets an expectation that @left and @right are equal.
1029 * equal. This is semantically equivalent to
1044 * KUNIT_EXPECT_PTR_EQ() - Expects that pointers @left and @right are equal.
1050 * equal. This is semantically equivalent to
1065 * KUNIT_EXPECT_NE() - An expectation that @left and @right are not equal.
1071 * equal. This is semantically equivalent to
1086 * KUNIT_EXPECT_PTR_NE() - Expects that pointers @left and @right are not equal.
1092 * equal. This is semantically equivalent to
1128 * KUNIT_EXPECT_LE() - Expects that @left is less than or equal to @right.
1134 * equal to the value that @right evaluates to. Semantically this is equivalent
1170 * KUNIT_EXPECT_GE() - Expects that @left is greater than or equal to @right.
1191 * KUNIT_EXPECT_STREQ() - Expects that strings @left and @right are equal.
1197 * equal. This is semantically equivalent to
1212 * KUNIT_EXPECT_STRNEQ() - Expects that strings @left and @right are not equal.
1218 * not equal. This is semantically equivalent to
1233 * KUNIT_EXPECT_MEMEQ() - Expects that the first @size bytes of @left and @right are equal.
1240 * equal. This is semantically equivalent to
1260 * KUNIT_EXPECT_MEMNEQ() - Expects that the first @size bytes of @left and @right are not equal.
1267 * not equal. This is semantically equivalent to
1403 * KUNIT_ASSERT_EQ() - Sets an assertion that @left and @right are equal.
1409 * equal. This is the same as KUNIT_EXPECT_EQ(), except it causes an assertion
1423 * KUNIT_ASSERT_PTR_EQ() - Asserts that pointers @left and @right are equal.
1429 * equal. This is the same as KUNIT_EXPECT_EQ(), except it causes an assertion
1443 * KUNIT_ASSERT_NE() - An assertion that @left and @right are not equal.
1449 * equal. This is the same as KUNIT_EXPECT_NE(), except it causes an assertion
1463 * KUNIT_ASSERT_PTR_NE() - Asserts that pointers @left and @right are not equal.
1464 * KUNIT_ASSERT_PTR_EQ() - Asserts that pointers @left and @right are equal.
1470 * equal. This is the same as KUNIT_EXPECT_NE(), except it causes an assertion
1503 * KUNIT_ASSERT_LE() - An assertion that @left is less than or equal to @right.
1509 * equal to the value that @right evaluates to. This is the same as
1545 * KUNIT_ASSERT_GE() - Assertion that @left is greater than or equal to @right.
1566 * KUNIT_ASSERT_STREQ() - An assertion that strings @left and @right are equal.
1572 * equal. This is the same as KUNIT_EXPECT_STREQ(), except it causes an
1586 * KUNIT_ASSERT_STRNEQ() - An assertion that strings @left and @right are not equal.
1592 * not equal. This is semantically equivalent to
1607 * KUNIT_ASSERT_MEMEQ() - Asserts that the first @size bytes of @left and @right are equal.
1614 * equal. This is semantically equivalent to
1634 * KUNIT_ASSERT_MEMNEQ() - Asserts that the first @size bytes of @left and @right are not equal.
1641 * not equal. This is semantically equivalent to