Home
last modified time | relevance | path

Searched refs:header (Results 1 – 25 of 1764) sorted by relevance

12345678910>>...71

/openbsd/src/gnu/llvm/libcxx/include/
Dmodule.modulemap.in5 header "__config"
21 header "ctype.h"
25 header "errno.h"
29 header "fenv.h"
34 header "inttypes.h"
42 header "locale.h"
46 header "math.h"
50 header "setjmp.h"
56 header "stdatomic.h"
64 textual header "stdbool.h"
[all …]
/openbsd/src/gnu/llvm/clang/lib/Headers/
Dmodule.modulemap13 header "altivec.h"
20 header "arm_acle.h"
26 header "arm_neon.h"
27 header "arm_fp16.h"
33 header "arm_sve.h"
42 header "immintrin.h"
43 textual header "f16cintrin.h"
44 textual header "avxintrin.h"
45 textual header "avx2intrin.h"
46 textual header "avx512fintrin.h"
[all …]
/openbsd/src/gnu/llvm/llvm/include/llvm/
Dmodule.modulemap7 textual header "Analysis/ScalarFuncs.def"
8 textual header "Analysis/TargetLibraryInfo.def"
9 textual header "Analysis/VecFuncs.def"
29 exclude header "CodeGen/LinkAllAsmWriterComponents.h"
30 exclude header "CodeGen/LinkAllCodegenComponents.h"
33 textual header "CodeGen/DIEValue.def"
34 textual header "CodeGen/MachinePassRegistry.def"
60 textual header "BinaryFormat/Dwarf.def"
61 textual header "BinaryFormat/DXContainerConstants.def"
62 textual header "BinaryFormat/DynamicTags.def"
[all …]
Dmodule.install.modulemap3 textual header "Config/AsmParsers.def"
4 textual header "Config/AsmPrinters.def"
5 textual header "Config/Disassemblers.def"
6 textual header "Config/Targets.def"
11 textual header "IR/Attributes.gen"
12 textual header "IR/Attributes.inc"
16 textual header "IR/Intrinsics.gen"
17 textual header "IR/Intrinsics.inc"
21 textual header "IR/IntrinsicEnums.inc"
25 header "Support/DataTypes.h"
[all …]
/openbsd/src/gnu/llvm/lldb/include/lldb/
Dmodule.modulemap5 textual header "Utility/Instrumentation.h"
16 // OS-specific header for us.
17 module ConnectionFileDescriptor { header "Host/ConnectionFileDescriptor.h" export * }
18 module Debug { header "Host/Debug.h" export * }
19 module Editline { header "Host/Editline.h" export * }
20 module FileCache { header "Host/FileCache.h" export * }
21 module File { header "Host/File.h" export * }
22 module FileAction { header "Host/FileAction.h" export * }
23 module FileSystem { header "Host/FileSystem.h" export * }
24 module HostGetOpt { header "Host/HostGetOpt.h" export * }
[all …]
/openbsd/src/gnu/llvm/clang/include/clang/
Dmodule.modulemap5 textual header "Analysis/Analyses/ThreadSafetyOps.def"
13 exclude header "Analysis/Analyses/ExprMutationAnalyzer.h"
20 textual header "AST/BuiltinTypes.def"
21 textual header "AST/CXXRecordDeclDefinitionBits.def"
22 textual header "AST/OperationKinds.def"
23 textual header "AST/TypeLocNodes.def"
34 textual header "Basic/AArch64SVEACLETypes.def"
35 textual header "Basic/BuiltinsAArch64.def"
36 textual header "Basic/BuiltinsAMDGPU.def"
37 textual header "Basic/BuiltinsAArch64NeonSVEBridge.def"
[all …]
/openbsd/src/gnu/lib/libstdc++/libstdc++/libsupc++/
Deh_throw.cc41 __cxa_exception *header = __get_exception_header_from_ue (exc); in __gxx_exception_cleanup() local
49 __terminate (header->terminateHandler); in __gxx_exception_cleanup()
51 if (header->exceptionDestructor) in __gxx_exception_cleanup()
52 header->exceptionDestructor (header + 1); in __gxx_exception_cleanup()
54 __cxa_free_exception (header + 1); in __gxx_exception_cleanup()
61 __cxa_exception *header = __get_exception_header_from_obj (obj); in __cxa_throw() local
62 header->exceptionType = tinfo; in __cxa_throw()
63 header->exceptionDestructor = dest; in __cxa_throw()
64 header->unexpectedHandler = __unexpected_handler; in __cxa_throw()
65 header->terminateHandler = __terminate_handler; in __cxa_throw()
[all …]
Deh_catch.cc44 __cxa_exception *header = __get_exception_header_from_ue (exceptionObject); in __cxa_begin_catch() local
50 if (header->unwindHeader.exception_class != __gxx_exception_class) in __cxa_begin_catch()
56 globals->caughtExceptions = header; in __cxa_begin_catch()
63 int count = header->handlerCount; in __cxa_begin_catch()
69 header->handlerCount = count; in __cxa_begin_catch()
72 if (header != prev) in __cxa_begin_catch()
74 header->nextException = prev; in __cxa_begin_catch()
75 globals->caughtExceptions = header; in __cxa_begin_catch()
78 return header->adjustedPtr; in __cxa_begin_catch()
86 __cxa_exception *header = globals->caughtExceptions; in __cxa_end_catch() local
[all …]
/openbsd/src/gnu/gcc/libstdc++-v3/libsupc++/
Deh_throw.cc39 __cxa_exception *header = __get_exception_header_from_ue (exc); in __gxx_exception_cleanup() local
47 __terminate (header->terminateHandler); in __gxx_exception_cleanup()
49 if (header->exceptionDestructor) in __gxx_exception_cleanup()
50 header->exceptionDestructor (header + 1); in __gxx_exception_cleanup()
52 __cxa_free_exception (header + 1); in __gxx_exception_cleanup()
60 __cxa_exception *header = __get_exception_header_from_obj (obj); in __cxa_throw() local
61 header->exceptionType = tinfo; in __cxa_throw()
62 header->exceptionDestructor = dest; in __cxa_throw()
63 header->unexpectedHandler = __unexpected_handler; in __cxa_throw()
64 header->terminateHandler = __terminate_handler; in __cxa_throw()
[all …]
Deh_catch.cc51 __cxa_exception *header = __get_exception_header_from_ue (exceptionObject); in __cxa_begin_catch() local
58 if (!__is_gxx_exception_class(header->unwindHeader.exception_class)) in __cxa_begin_catch()
64 globals->caughtExceptions = header; in __cxa_begin_catch()
71 int count = header->handlerCount; in __cxa_begin_catch()
78 header->handlerCount = count; in __cxa_begin_catch()
81 if (header != prev) in __cxa_begin_catch()
83 header->nextException = prev; in __cxa_begin_catch()
84 globals->caughtExceptions = header; in __cxa_begin_catch()
99 __cxa_exception *header = globals->caughtExceptions; in __cxa_end_catch() local
103 if (!header) in __cxa_end_catch()
[all …]
Deh_arm.cc91 __cxa_exception *header = __get_exception_header_from_ue(ue_header); in __cxa_begin_cleanup() local
92 bool native = __is_gxx_exception_class(header->unwindHeader.exception_class); in __cxa_begin_cleanup()
97 header->propagationCount++; in __cxa_begin_cleanup()
100 if (header->propagationCount == 1) in __cxa_begin_cleanup()
102 header->nextPropagatingException = globals->propagatingExceptions; in __cxa_begin_cleanup()
103 globals->propagatingExceptions = header; in __cxa_begin_cleanup()
113 globals->propagatingExceptions = header; in __cxa_begin_cleanup()
124 __cxa_exception *header; in __gnu_end_cleanup() local
127 header = globals->propagatingExceptions; in __gnu_end_cleanup()
130 if (!header) in __gnu_end_cleanup()
[all …]
/openbsd/src/gnu/usr.bin/binutils/gas/config/
Dobj-bout.c124 headers->header.a_talign = section_alignment[SEG_TEXT];
127 if (headers->header.a_talign < 2)
129 headers->header.a_talign = 2;
132 headers->header.a_dalign = section_alignment[SEG_DATA];
133 headers->header.a_balign = section_alignment[SEG_BSS];
135 headers->header.a_tload = 0;
136 headers->header.a_dload =
139 headers->header.a_relaxable = linkrelax;
142 md_number_to_chars (*where, headers->header.a_magic, sizeof (headers->header.a_magic));
143 *where += sizeof (headers->header.a_magic);
[all …]
Dobj-aout.h186 #define H_GET_TEXT_SIZE(h) ((h)->header.a_text)
187 #define H_GET_DATA_SIZE(h) ((h)->header.a_data)
188 #define H_GET_BSS_SIZE(h) ((h)->header.a_bss)
189 #define H_GET_TEXT_RELOCATION_SIZE(h) ((h)->header.a_trsize)
190 #define H_GET_DATA_RELOCATION_SIZE(h) ((h)->header.a_drsize)
191 #define H_GET_SYMBOL_TABLE_SIZE(h) ((h)->header.a_syms)
192 #define H_GET_ENTRY_POINT(h) ((h)->header.a_entry)
196 #define H_GET_DYNAMIC(h) ((h)->header.a_info >> 31)
197 #define H_GET_VERSION(h) (((h)->header.a_info >> 24) & 0x7f)
198 #define H_GET_MACHTYPE(h) (((h)->header.a_info >> 16) & 0xff)
[all …]
/openbsd/src/gnu/usr.bin/binutils-2.17/bfd/
Dpef.c312 bfd_pef_loader_header *header) in bfd_pef_parse_loader_header() argument
316 header->main_section = bfd_getb32 (buf); in bfd_pef_parse_loader_header()
317 header->main_offset = bfd_getb32 (buf + 4); in bfd_pef_parse_loader_header()
318 header->init_section = bfd_getb32 (buf + 8); in bfd_pef_parse_loader_header()
319 header->init_offset = bfd_getb32 (buf + 12); in bfd_pef_parse_loader_header()
320 header->term_section = bfd_getb32 (buf + 16); in bfd_pef_parse_loader_header()
321 header->term_offset = bfd_getb32 (buf + 20); in bfd_pef_parse_loader_header()
322 header->imported_library_count = bfd_getb32 (buf + 24); in bfd_pef_parse_loader_header()
323 header->total_imported_symbol_count = bfd_getb32 (buf + 28); in bfd_pef_parse_loader_header()
324 header->reloc_section_count = bfd_getb32 (buf + 32); in bfd_pef_parse_loader_header()
[all …]
/openbsd/src/gnu/usr.bin/binutils/bfd/
Dpef.c341 int bfd_pef_parse_loader_header (abfd, buf, len, header) in bfd_pef_parse_loader_header() argument
345 bfd_pef_loader_header *header;
349 header->main_section = bfd_getb32 (buf);
350 header->main_offset = bfd_getb32 (buf + 4);
351 header->init_section = bfd_getb32 (buf + 8);
352 header->init_offset = bfd_getb32 (buf + 12);
353 header->term_section = bfd_getb32 (buf + 16);
354 header->term_offset = bfd_getb32 (buf + 20);
355 header->imported_library_count = bfd_getb32 (buf + 24);
356 header->total_imported_symbol_count = bfd_getb32 (buf + 28);
[all …]
/openbsd/src/sys/dev/pci/drm/i915/gt/uc/
Dintel_huc_fw.c18 struct intel_gsc_mtl_header header; member
23 struct intel_gsc_mtl_header header; member
52 intel_gsc_uc_heci_cmd_emit_mtl_header(&msg_in->header, in intel_huc_fw_auth_via_gsccs()
56 msg_in->huc_in.header.api_version = PXP_APIVER(4, 3); in intel_huc_fw_auth_via_gsccs()
57 msg_in->huc_in.header.command_id = PXP43_CMDID_NEW_HUC_AUTH; in intel_huc_fw_auth_via_gsccs()
58 msg_in->huc_in.header.status = 0; in intel_huc_fw_auth_via_gsccs()
59 msg_in->huc_in.header.buffer_len = sizeof(msg_in->huc_in) - in intel_huc_fw_auth_via_gsccs()
60 sizeof(msg_in->huc_in.header); in intel_huc_fw_auth_via_gsccs()
74 if (msg_out->header.flags & GSC_OUTFLAG_MSG_PENDING) { in intel_huc_fw_auth_via_gsccs()
75 msg_in->header.gsc_message_handle = msg_out->header.gsc_message_handle; in intel_huc_fw_auth_via_gsccs()
[all …]
/openbsd/src/sys/dev/pci/drm/i915/display/
Dintel_hdcp_gsc_message.c36 session_init_in.header.api_version = HDCP_API_VERSION; in intel_hdcp_gsc_initiate_session()
37 session_init_in.header.command_id = WIRED_INITIATE_HDCP2_SESSION; in intel_hdcp_gsc_initiate_session()
38 session_init_in.header.status = FW_HDCP_STATUS_SUCCESS; in intel_hdcp_gsc_initiate_session()
39 session_init_in.header.buffer_len = in intel_hdcp_gsc_initiate_session()
56 if (session_init_out.header.status != FW_HDCP_STATUS_SUCCESS) { in intel_hdcp_gsc_initiate_session()
59 session_init_out.header.status); in intel_hdcp_gsc_initiate_session()
99 verify_rxcert_in.header.api_version = HDCP_API_VERSION; in intel_hdcp_gsc_verify_receiver_cert_prepare_km()
100 verify_rxcert_in.header.command_id = WIRED_VERIFY_RECEIVER_CERT; in intel_hdcp_gsc_verify_receiver_cert_prepare_km()
101 verify_rxcert_in.header.status = FW_HDCP_STATUS_SUCCESS; in intel_hdcp_gsc_verify_receiver_cert_prepare_km()
102 verify_rxcert_in.header.buffer_len = in intel_hdcp_gsc_verify_receiver_cert_prepare_km()
[all …]
/openbsd/src/gnu/usr.bin/perl/dist/Storable/t/
Dmalice.t70 my ($header, $isfile, $isnetorder) = @_;
71 is (!!$header->{file}, !!$isfile, "is file");
72 is ($header->{major}, $major, "major number");
73 is ($header->{minor}, $minor_write, "minor number");
74 is (!!$header->{netorder}, !!$isnetorder, "is network order");
78 is ($header->{byteorder}, $byteorder, "byte order");
79 is ($header->{intsize}, $Config{intsize}, "int size");
80 is ($header->{longsize}, $Config{longsize}, "long size");
84 is ($header->{ptrsize}, $Config{ptrsize}, "long size");
86 is ($header->{nvsize}, $Config{nvsize} || $Config{doublesize} || 8,
[all …]
/openbsd/src/gnu/gcc/gcc/
Dtree-ssa-loop-ch.c51 should_duplicate_loop_header_p (basic_block header, struct loop *loop, in should_duplicate_loop_header_p() argument
59 if (header->aux) in should_duplicate_loop_header_p()
62 gcc_assert (EDGE_COUNT (header->succs) > 0); in should_duplicate_loop_header_p()
63 if (single_succ_p (header)) in should_duplicate_loop_header_p()
65 if (flow_bb_inside_loop_p (loop, EDGE_SUCC (header, 0)->dest) in should_duplicate_loop_header_p()
66 && flow_bb_inside_loop_p (loop, EDGE_SUCC (header, 1)->dest)) in should_duplicate_loop_header_p()
71 if (header != loop->header && !single_pred_p (header)) in should_duplicate_loop_header_p()
74 last = last_stmt (header); in should_duplicate_loop_header_p()
80 for (bsi = bsi_start (header); !bsi_end_p (bsi); bsi_next (&bsi)) in should_duplicate_loop_header_p()
111 stmt = last_and_only_stmt (loop->header); in do_while_loop_p()
[all …]
/openbsd/src/gnu/llvm/llvm/utils/
Dsort_includes.py43 header = l[len('#include'):].lstrip()
44 if look_for_api_header and header.startswith('"'):
45 api_headers.append(header)
48 if (header.startswith('<') or header.startswith('"gtest/') or
49 header.startswith('"isl/') or header.startswith('"json/')):
50 system_headers.append(header)
52 if (header.startswith('"clang/') or header.startswith('"clang-c/') or
53 header.startswith('"polly/')):
54 subproject_headers.append(header)
56 if (header.startswith('"llvm/') or header.startswith('"llvm-c/')):
[all …]
/openbsd/src/gnu/usr.bin/perl/lib/
Ddiagnostics.pm325 my $header;
370 if (defined $header) {
371 if ( $header eq 'DESCRIPTION' &&
380 $msg{$header} .= $_;
394 push @headers, $header if defined $header;
400 $msg{$header = 'DESCRIPTION'} = '';
412 undef $header;
421 if( $for_item ) { $header = $for_item; undef $for_item }
423 $header = $1;
425 $header =~ s/\n/ /gs; # Allow multi-line headers
[all …]
/openbsd/src/gnu/usr.bin/texinfo/po/
DRules-quot3 DISTFILES.common.extra1 = quot.sed boldquot.sed en@quot.header en@boldquot.header insert-header.sin…
5 .SUFFIXES: .insert-header .po-update-en
15 .insert-header.po-update-en:
23 …--no-translator -l $$ll -o - 2>/dev/null | sed -f $$tmpdir/$$lang.insert-header | $(MSGCONV) -t UT…
39 en@quot.insert-header: insert-header.sin
40 sed -e '/^#/d' -e 's/HEADER/en@quot.header/g' $(srcdir)/insert-header.sin > en@quot.insert-header
42 en@boldquot.insert-header: insert-header.sin
43 …sed -e '/^#/d' -e 's/HEADER/en@boldquot.header/g' $(srcdir)/insert-header.sin > en@boldquot.insert…
47 rm -f *.insert-header
/openbsd/src/usr.sbin/mopd/mopa.out/
Dmopa.out.c83 u_char header[512]; /* The MOP header we generate is 1 block. */ variable
166 mopFilePutLX(header, IHD_W_SIZE, 0xd4, 2); in main()
168 mopFilePutLX(header, IHD_W_ACTIVOFF, 0x30, 2); in main()
170 mopFilePutLX(header, IHD_W_ALIAS, IHD_C_NATIVE, 2); in main()
172 mopFilePutLX(header, IHD_B_HDRBLKCNT, 1, 1); in main()
175 mopFilePutLX(header, 0x30 + IHA_L_TFRADR1, dl.xferaddr, 4); in main()
178 mopFilePutLX(header, 0xd4 + ISD_V_VPN, dl.loadaddr / 512, 2); in main()
181 mopFilePutLX(header, 0xd4 + ISD_W_PAGCNT, i, 2); in main()
185 mopFilePutLX(header, EIHD_L_ISDOFF, 0xd4, 4); in main()
187 mopFilePutLX(header, IHD_W_ALIAS, IHD_C_ALPHA, 2); in main()
[all …]
/openbsd/src/gnu/usr.bin/perl/cpan/Encode/lib/Encode/MIME/Header/
DISO_2022_JP.pm43 my ( $header, @words, @wordstmp, $i ) = ('');
64 $header =~ /(?:.*\n)*(.*)/;
66 $header .= "\n $word";
69 $header .= $word;
73 $header = _add_encoded_word( $word, $header, $bpl );
76 $header =~ /(?:.*\n)*(.*)/;
79 $header .= "\n ";
82 $header .= ' ';
86 $header =~ s/\n? $//mg;
88 $crlf ? "$header\n" : $header;
/openbsd/src/gnu/lib/libreadline/
Dconfig.h.in72 /* Define if you have the <dirent.h> header file. */
75 /* Define if you have the <langinfo.h> header file. */
78 /* Define if you have the <limits.h> header file. */
81 /* Define if you have the <locale.h> header file. */
84 /* Define if you have the <memory.h> header file. */
87 /* Define if you have the <ndir.h> header file. */
90 /* Define if you have the <stdarg.h> header file. */
93 /* Define if you have the <stdlib.h> header file. */
96 /* Define if you have the <string.h> header file. */
99 /* Define if you have the <strings.h> header file. */
[all …]

12345678910>>...71