Lines Matching defs:high
664 void mbedtls_test_err_add_check(int high, int low,
675 * h = high level error code (includes high level module ID (bits 12..14)
679 if (high > -0x1000 && high != 0) {
680 /* high < 0001000000000000
681 * No high level module ID bits are set.
683 mbedtls_test_fail("'high' is not a high-level error code",
685 } else if (high < -0x7F80) {
686 /* high > 0111111110000000
687 * Error code is greater than the largest allowed high level module ID.
689 mbedtls_test_fail("'high' error code is greater than 15 bits",
691 } else if ((high & 0x7F) != 0) {
692 /* high & 0000000001111111
695 mbedtls_test_fail("'high' contains a low-level error code",
699 * Error code contains high or module level error code bits.