Lines Matching full:equal

955  * KUNIT_EXPECT_EQ() - Sets an expectation that @left and @right are equal.
961 * equal. This is semantically equivalent to
976 * KUNIT_EXPECT_PTR_EQ() - Expects that pointers @left and @right are equal.
982 * equal. This is semantically equivalent to
997 * KUNIT_EXPECT_NE() - An expectation that @left and @right are not equal.
1003 * equal. This is semantically equivalent to
1018 * KUNIT_EXPECT_PTR_NE() - Expects that pointers @left and @right are not equal.
1024 * equal. This is semantically equivalent to
1060 * KUNIT_EXPECT_LE() - Expects that @left is less than or equal to @right.
1066 * equal to the value that @right evaluates to. Semantically this is equivalent
1102 * KUNIT_EXPECT_GE() - Expects that @left is greater than or equal to @right.
1123 * KUNIT_EXPECT_STREQ() - Expects that strings @left and @right are equal.
1129 * equal. This is semantically equivalent to
1144 * KUNIT_EXPECT_STRNEQ() - Expects that strings @left and @right are not equal.
1150 * not equal. This is semantically equivalent to
1165 * KUNIT_EXPECT_MEMEQ() - Expects that the first @size bytes of @left and @right are equal.
1172 * equal. This is semantically equivalent to
1192 * KUNIT_EXPECT_MEMNEQ() - Expects that the first @size bytes of @left and @right are not equal.
1199 * not equal. This is semantically equivalent to
1335 * KUNIT_ASSERT_EQ() - Sets an assertion that @left and @right are equal.
1341 * equal. This is the same as KUNIT_EXPECT_EQ(), except it causes an assertion
1355 * KUNIT_ASSERT_PTR_EQ() - Asserts that pointers @left and @right are equal.
1361 * equal. This is the same as KUNIT_EXPECT_EQ(), except it causes an assertion
1375 * KUNIT_ASSERT_NE() - An assertion that @left and @right are not equal.
1381 * equal. This is the same as KUNIT_EXPECT_NE(), except it causes an assertion
1395 * KUNIT_ASSERT_PTR_NE() - Asserts that pointers @left and @right are not equal.
1396 * KUNIT_ASSERT_PTR_EQ() - Asserts that pointers @left and @right are equal.
1402 * equal. This is the same as KUNIT_EXPECT_NE(), except it causes an assertion
1435 * KUNIT_ASSERT_LE() - An assertion that @left is less than or equal to @right.
1441 * equal to the value that @right evaluates to. This is the same as
1477 * KUNIT_ASSERT_GE() - Assertion that @left is greater than or equal to @right.
1498 * KUNIT_ASSERT_STREQ() - An assertion that strings @left and @right are equal.
1504 * equal. This is the same as KUNIT_EXPECT_STREQ(), except it causes an
1518 * KUNIT_ASSERT_STRNEQ() - An assertion that strings @left and @right are not equal.
1524 * not equal. This is semantically equivalent to
1539 * KUNIT_ASSERT_MEMEQ() - Asserts that the first @size bytes of @left and @right are equal.
1546 * equal. This is semantically equivalent to
1566 * KUNIT_ASSERT_MEMNEQ() - Asserts that the first @size bytes of @left and @right are not equal.
1573 * not equal. This is semantically equivalent to