Searched refs:expected_hex (Results 1 – 5 of 5) sorted by relevance
/third_party/mbedtls/scripts/mbedtls_dev/ |
D | psa_storage.py | 182 …expected_hex = '505341004b45590000000000010000000024800000030000000250050010c004100000004041424344… 183 self.assertEqual(key.bytes(), bytes.fromhex(expected_hex)) 184 self.assertEqual(key.hex(), expected_hex) 193 …expected_hex = '505341004b45590000000000010000000110f8ff000000000000000000000000ff1f0000' + '00' *… 194 self.assertEqual(key.bytes(), bytes.fromhex(expected_hex)) 195 self.assertEqual(key.hex(), expected_hex) 201 expected_hex = '505341004b455900000000000100000001100800000000000000000000000000010000002a' 202 self.assertEqual(key.bytes(), bytes.fromhex(expected_hex)) 203 self.assertEqual(key.hex(), expected_hex)
|
/third_party/mbedtls/tests/scripts/ |
D | tcp_client.pl | 70 my ($connection, $expected_hex) = @_; 71 my $expected_data = parse_hex($expected_hex);
|
/third_party/mbedtls/tests/suites/ |
D | test_suite_asn1parse.function | 368 const char *expected_hex, int expected_result ) 389 expected_value = strtol( expected_hex, NULL, 16 ); 420 ret = mbedtls_test_read_mpi( &expected_mpi, 16, expected_hex ); 476 const char *expected_hex, int expected_result ) 485 expected_value = strtol( expected_hex, NULL, 16 );
|
/third_party/glib/glib/tests/ |
D | fileutils.c | 1788 gchar *buf_hex, *expected_hex; in test_win32_zero_terminate_symlink() local 1809 expected_hex = to_hex (testcases[i].returned_string, testcases[i].reported_len); in test_win32_zero_terminate_symlink() 1811 g_error ("Test %" G_GSIZE_FORMAT " failed:\n%s !=\n%s", i, buf_hex, expected_hex); in test_win32_zero_terminate_symlink() 1812 …==, testcases[i].returned_string, testcases[i].reported_len, buf_hex, expected_hex, testcases[i].l… in test_win32_zero_terminate_symlink() 1814 g_free (expected_hex); in test_win32_zero_terminate_symlink()
|
/third_party/python/Lib/test/ |
D | test_math.py | 1429 x_hex, y_hex, expected_hex = case.split() 1432 expected = float.fromhex(expected_hex)
|