Lines Matching full:equal
864 * KUNIT_EXPECT_EQ() - Sets an expectation that @left and @right are equal.
870 * equal. This is semantically equivalent to
885 * KUNIT_EXPECT_PTR_EQ() - Expects that pointers @left and @right are equal.
891 * equal. This is semantically equivalent to
906 * KUNIT_EXPECT_NE() - An expectation that @left and @right are not equal.
912 * equal. This is semantically equivalent to
927 * KUNIT_EXPECT_PTR_NE() - Expects that pointers @left and @right are not equal.
933 * equal. This is semantically equivalent to
969 * KUNIT_EXPECT_LE() - Expects that @left is less than or equal to @right.
975 * equal to the value that @right evaluates to. Semantically this is equivalent
1011 * KUNIT_EXPECT_GE() - Expects that @left is greater than or equal to @right.
1032 * KUNIT_EXPECT_STREQ() - Expects that strings @left and @right are equal.
1038 * equal. This is semantically equivalent to
1053 * KUNIT_EXPECT_STRNEQ() - Expects that strings @left and @right are not equal.
1059 * not equal. This is semantically equivalent to
1074 * KUNIT_EXPECT_MEMEQ() - Expects that the first @size bytes of @left and @right are equal.
1081 * equal. This is semantically equivalent to
1101 * KUNIT_EXPECT_MEMNEQ() - Expects that the first @size bytes of @left and @right are not equal.
1108 * not equal. This is semantically equivalent to
1233 * KUNIT_ASSERT_EQ() - Sets an assertion that @left and @right are equal.
1239 * equal. This is the same as KUNIT_EXPECT_EQ(), except it causes an assertion
1253 * KUNIT_ASSERT_PTR_EQ() - Asserts that pointers @left and @right are equal.
1259 * equal. This is the same as KUNIT_EXPECT_EQ(), except it causes an assertion
1273 * KUNIT_ASSERT_NE() - An assertion that @left and @right are not equal.
1279 * equal. This is the same as KUNIT_EXPECT_NE(), except it causes an assertion
1293 * KUNIT_ASSERT_PTR_NE() - Asserts that pointers @left and @right are not equal.
1294 * KUNIT_ASSERT_PTR_EQ() - Asserts that pointers @left and @right are equal.
1300 * equal. This is the same as KUNIT_EXPECT_NE(), except it causes an assertion
1333 * KUNIT_ASSERT_LE() - An assertion that @left is less than or equal to @right.
1339 * equal to the value that @right evaluates to. This is the same as
1375 * KUNIT_ASSERT_GE() - Assertion that @left is greater than or equal to @right.
1396 * KUNIT_ASSERT_STREQ() - An assertion that strings @left and @right are equal.
1402 * equal. This is the same as KUNIT_EXPECT_STREQ(), except it causes an
1416 * KUNIT_ASSERT_STRNEQ() - Expects that strings @left and @right are not equal.
1422 * not equal. This is semantically equivalent to