| /openbsd/src/gnu/lib/libiberty/src/testsuite/ |
| D | test-expandargv.c | 69 const char *test_data[] = { variable 153 writeout_test (int test, const char * test_data) in writeout_test() argument 167 len = strlen (test_data); in writeout_test() 172 memcpy (parse, test_data, sizeof (char) * (len + 1)); in writeout_test() 200 run_tests (const char **test_data) in run_tests() argument 208 while (test_data[j]) in run_tests() 211 writeout_test (i, test_data[j++]); in run_tests() 213 argv_before = dupargv ((char **) &test_data[j]); in run_tests() 218 while (test_data[j + argc_before]) in run_tests() 221 while (test_data[j + argc_after]) in run_tests() [all …]
|
| /openbsd/src/gnu/llvm/llvm/utils/lit/lit/ |
| D | reports.py | 35 test_data = { 43 test_data['metrics'] = metrics_data = {} 66 tests_data.append(test_data) 161 test_data = { 180 test_data['status'] = 'PASS' 182 test_data['status'] = 'FAIL' 188 test_data['status'] = 'SKIP' 190 test_data['status'] = 'ABORT' 191 return test_data
|
| /openbsd/src/gnu/gcc/libgomp/testsuite/libgomp.c/ |
| D | sections-1.c | 20 static void test_data (void) in test_data() function 53 test_data (); in test_1() 72 test_data (); in test_2()
|
| D | loop-1.c | 21 static void test_data (void) in test_data() function 67 test_data (); \ 93 test_data (); \
|
| D | loop-2.c | 22 static void test_data (void) in test_data() function 92 test_data (); in test()
|
| D | ordered-1.c | 23 static void test_data (void) in test_data() function 69 test_data (); \
|
| /openbsd/src/lib/libexpat/tests/ |
| D | basic_tests.c | 982 ExtTest test_data in START_TEST() local 994 run_ext_character_check(text, &test_data, expected); in START_TEST() 1016 ExtTest test_data = {"\xEF\xBB\xBF" /* BOM */ in START_TEST() local 1027 run_ext_character_check(text, &test_data, expected); in START_TEST() 1109 ExtTest test_data = {"<!ELEMENT doc (#PCDATA)*>", NULL, NULL}; in START_TEST() local 1112 XML_SetUserData(g_parser, &test_data); in START_TEST() 1127 ExtTest test_data = {"<!ENTITY entity 'bar'>", NULL, NULL}; in START_TEST() local 1131 XML_SetUserData(g_parser, &test_data); in START_TEST() 1145 ExtTest test_data = {"<!ELEMENT doc (#PCDATA)*>", NULL, NULL}; in START_TEST() local 1149 run_ext_character_check(text, &test_data, XCS("")); in START_TEST() [all …]
|
| D | common.h | 132 extern void _run_ext_character_check(const char *text, ExtTest *test_data, 136 # define run_ext_character_check(text, test_data, expected) \ argument 137 _run_ext_character_check(text, test_data, expected, __FILE__, __LINE__)
|
| D | handlers.c | 442 ExtTest *test_data = (ExtTest *)XML_GetUserData(parser); in external_entity_loader() local 451 if (test_data->encoding != NULL) { in external_entity_loader() 452 if (! XML_SetEncoding(extparser, test_data->encoding)) in external_entity_loader() 455 if (_XML_Parse_SINGLE_BYTES(extparser, test_data->parse_text, in external_entity_loader() 456 (int)strlen(test_data->parse_text), XML_TRUE) in external_entity_loader() 1132 ExtHdlrData *test_data = (ExtHdlrData *)XML_GetUserData(parser); in external_entity_oneshot_loader() local 1142 XML_SetExternalEntityRefHandler(ext_parser, test_data->handler); in external_entity_oneshot_loader() 1143 if (_XML_Parse_SINGLE_BYTES(ext_parser, test_data->parse_text, in external_entity_oneshot_loader() 1144 (int)strlen(test_data->parse_text), XML_TRUE) in external_entity_oneshot_loader() 1157 ExtTest2 *test_data = (ExtTest2 *)XML_GetUserData(parser); in external_entity_loader2() local [all …]
|
| D | common.c | 254 _run_ext_character_check(const char *text, ExtTest *test_data, in _run_ext_character_check() argument 259 test_data->storage = storage; in _run_ext_character_check() 260 XML_SetUserData(g_parser, test_data); in _run_ext_character_check()
|
| D | alloc_tests.c | 1628 ExtFaults test_data in START_TEST() local 1654 XML_SetUserData(g_parser, &test_data); in START_TEST()
|
| /openbsd/src/regress/lib/libssl/bytestring/ |
| D | bytestringtest.c | 569 uint8_t *buf = NULL, *test_data = NULL; in test_cbb_asn1() local 589 CHECK_GOTO(((test_data = malloc(100000)) != NULL)); in test_cbb_asn1() 590 memset(test_data, 0x42, 100000); in test_cbb_asn1() 595 CHECK_GOTO(CBB_add_bytes(&contents, test_data, 130)); in test_cbb_asn1() 601 CHECK_GOTO(memcmp(buf + 3, test_data, 130) == 0); in test_cbb_asn1() 609 CHECK_GOTO(CBB_add_bytes(&contents, test_data, 1000)); in test_cbb_asn1() 615 CHECK_GOTO(!memcmp(buf + 4, test_data, 1000)); in test_cbb_asn1() 624 CHECK_GOTO(CBB_add_bytes(&inner_contents, test_data, 100000)); in test_cbb_asn1() 631 CHECK_GOTO(!memcmp(buf + 10, test_data, 100000)); in test_cbb_asn1() 641 free(test_data); in test_cbb_asn1()
|
| /openbsd/src/gnu/llvm/lldb/source/Plugins/Instruction/ARM/ |
| D | EmulationStateARM.cpp | 279 OptionValueDictionary *test_data) { in LoadStateFromDictionary() argument 283 if (!test_data) in LoadStateFromDictionary() 286 OptionValueSP value_sp = test_data->GetValueForKey(memory_key); in LoadStateFromDictionary() 320 value_sp = test_data->GetValueForKey(registers_key); in LoadStateFromDictionary()
|
| D | EmulationStateARM.h | 35 bool LoadStateFromDictionary(lldb_private::OptionValueDictionary *test_data);
|
| D | EmulateInstructionARM.h | 137 OptionValueDictionary *test_data) override;
|
| /openbsd/src/gnu/usr.bin/perl/t/op/ |
| D | require_errors.t | 48 for my $test_data ( 83 my ($require_arg, $err_path, $has_hint) = @$test_data;
|
| /openbsd/src/gnu/llvm/lldb/source/Plugins/Instruction/PPC64/ |
| D | EmulateInstructionPPC64.h | 61 OptionValueDictionary *test_data) override { in TestEmulation() argument
|
| /openbsd/src/sys/dev/pci/drm/i915/display/ |
| D | intel_display_debugfs.c | 908 intel_dp->compliance.test_data.edid); in i915_displayport_test_data_show() 912 intel_dp->compliance.test_data.hdisplay); in i915_displayport_test_data_show() 914 intel_dp->compliance.test_data.vdisplay); in i915_displayport_test_data_show() 916 intel_dp->compliance.test_data.bpc); in i915_displayport_test_data_show() 920 intel_dp->compliance.test_data.phytest.phy_pattern); in i915_displayport_test_data_show() 922 intel_dp->compliance.test_data.phytest.num_lanes); in i915_displayport_test_data_show() 924 intel_dp->compliance.test_data.phytest.link_rate); in i915_displayport_test_data_show()
|
| D | intel_dp.c | 1644 if (intel_dp->compliance.test_data.bpc != 0) { in intel_dp_adjust_compliance_config() 1645 int bpp = 3 * intel_dp->compliance.test_data.bpc; in intel_dp_adjust_compliance_config() 4856 intel_dp->compliance.test_data.bpc = 6; in intel_dp_autotest_video_pattern() 4859 intel_dp->compliance.test_data.bpc = 8; in intel_dp_autotest_video_pattern() 4865 intel_dp->compliance.test_data.video_pattern = test_pattern; in intel_dp_autotest_video_pattern() 4866 intel_dp->compliance.test_data.hdisplay = be16_to_cpu(h_width); in intel_dp_autotest_video_pattern() 4867 intel_dp->compliance.test_data.vdisplay = be16_to_cpu(v_height); in intel_dp_autotest_video_pattern() 4897 intel_dp->compliance.test_data.edid = INTEL_DP_RESOLUTION_FAILSAFE; in intel_dp_autotest_edid() 4911 intel_dp->compliance.test_data.edid = INTEL_DP_RESOLUTION_PREFERRED; in intel_dp_autotest_edid() 4926 &intel_dp->compliance.test_data.phytest; in intel_dp_phy_pattern_update() [all …]
|
| /openbsd/src/gnu/usr.bin/perl/cpan/JSON-PP/t/ |
| D | 005_dwiw_decode.t | 83 # print STDERR Dumper($test_data) . "\n\n";
|
| /openbsd/src/gnu/llvm/lldb/source/Plugins/Instruction/ARM64/ |
| D | EmulateInstructionARM64.h | 65 lldb_private::OptionValueDictionary *test_data) override { in TestEmulation() argument
|
| /openbsd/src/gnu/llvm/lldb/source/Plugins/Instruction/MIPS64/ |
| D | EmulateInstructionMIPS64.h | 72 lldb_private::OptionValueDictionary *test_data) override { in TestEmulation() argument
|
| /openbsd/src/gnu/llvm/lldb/source/Plugins/Instruction/MIPS/ |
| D | EmulateInstructionMIPS.h | 80 lldb_private::OptionValueDictionary *test_data) override { in TestEmulation() argument
|
| /openbsd/src/regress/lib/libcrypto/ec/ |
| D | ec_asn1_test.c | 135 const uint8_t *test_data, size_t test_data_len) in ec_group_pkparameters_test() argument 156 if (compare_data(label, out, len, test_data, test_data_len) == -1) in ec_group_pkparameters_test() 193 if (compare_data(label, out, len, test_data, test_data_len) == -1) in ec_group_pkparameters_test()
|
| /openbsd/src/gnu/llvm/lldb/include/lldb/Core/ |
| D | EmulateInstruction.h | 379 OptionValueDictionary *test_data) = 0;
|