Lines Matching full:equal
1022 * KUNIT_EXPECT_EQ() - Sets an expectation that @left and @right are equal.
1028 * equal. This is semantically equivalent to
1043 * KUNIT_EXPECT_PTR_EQ() - Expects that pointers @left and @right are equal.
1049 * equal. This is semantically equivalent to
1064 * KUNIT_EXPECT_NE() - An expectation that @left and @right are not equal.
1070 * equal. This is semantically equivalent to
1085 * KUNIT_EXPECT_PTR_NE() - Expects that pointers @left and @right are not equal.
1091 * equal. This is semantically equivalent to
1127 * KUNIT_EXPECT_LE() - Expects that @left is less than or equal to @right.
1133 * equal to the value that @right evaluates to. Semantically this is equivalent
1169 * KUNIT_EXPECT_GE() - Expects that @left is greater than or equal to @right.
1190 * KUNIT_EXPECT_STREQ() - Expects that strings @left and @right are equal.
1196 * equal. This is semantically equivalent to
1211 * KUNIT_EXPECT_STRNEQ() - Expects that strings @left and @right are not equal.
1217 * not equal. This is semantically equivalent to
1232 * KUNIT_EXPECT_MEMEQ() - Expects that the first @size bytes of @left and @right are equal.
1239 * equal. This is semantically equivalent to
1259 * KUNIT_EXPECT_MEMNEQ() - Expects that the first @size bytes of @left and @right are not equal.
1266 * not equal. This is semantically equivalent to
1402 * KUNIT_ASSERT_EQ() - Sets an assertion that @left and @right are equal.
1408 * equal. This is the same as KUNIT_EXPECT_EQ(), except it causes an assertion
1422 * KUNIT_ASSERT_PTR_EQ() - Asserts that pointers @left and @right are equal.
1428 * equal. This is the same as KUNIT_EXPECT_EQ(), except it causes an assertion
1442 * KUNIT_ASSERT_NE() - An assertion that @left and @right are not equal.
1448 * equal. This is the same as KUNIT_EXPECT_NE(), except it causes an assertion
1462 * KUNIT_ASSERT_PTR_NE() - Asserts that pointers @left and @right are not equal.
1463 * KUNIT_ASSERT_PTR_EQ() - Asserts that pointers @left and @right are equal.
1469 * equal. This is the same as KUNIT_EXPECT_NE(), except it causes an assertion
1502 * KUNIT_ASSERT_LE() - An assertion that @left is less than or equal to @right.
1508 * equal to the value that @right evaluates to. This is the same as
1544 * KUNIT_ASSERT_GE() - Assertion that @left is greater than or equal to @right.
1565 * KUNIT_ASSERT_STREQ() - An assertion that strings @left and @right are equal.
1571 * equal. This is the same as KUNIT_EXPECT_STREQ(), except it causes an
1585 * KUNIT_ASSERT_STRNEQ() - An assertion that strings @left and @right are not equal.
1591 * not equal. This is semantically equivalent to
1606 * KUNIT_ASSERT_MEMEQ() - Asserts that the first @size bytes of @left and @right are equal.
1613 * equal. This is semantically equivalent to
1633 * KUNIT_ASSERT_MEMNEQ() - Asserts that the first @size bytes of @left and @right are not equal.
1640 * not equal. This is semantically equivalent to