History log of /freebsd-11-stable/lib/libpmc/
Revision Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
360658 05-May-2020 dim

Merge llvm, clang, compiler-rt, libc++, libunwind, lld, lldb and openmp
9.0.0 final release r372316.

(NOTE: This does not yet consolidate all the llvm project sources under
contrib/llvm-project (e.g., MFC r355940), due to Subversion limitations.
It will be done in a follow-up MFC.)

MFC r348610 (by emaste):

build llvm-ar and llvm-nm with Clang (promote out of CLANG_EXTRAS)

To facilitate experimentation with LTO we require an ar that supports
LLVM IR, and to a lesser degree also an nm. As a first step always
install llvm-ar and llvm-nm.

Sponsored by: The FreeBSD Foundation

MFC r350453 (by asomers):

Add a CXXWARNFLAGS variable

Some warning flags are valid for C++ but not C. GCC 8 complains if you pass
such flags when building a C file. Using a separate variable for these
flags allows building both C and C++ files in the same directory (such as
the fusefs tests) under GCC.

Reviewed by: cem, emaste
Sponsored by: The FreeBSD Foundation
Differential Revision: https://reviews.freebsd.org/D21116

MFC r350467 (by luporl):

[PPC64] Backport fix for missing IRELATIVE relocations

This is a backport of LLVM commit 8331f61a51a7a0a1efbf5ed398e181593023d151,
llvm-svn: 353981:

ELF: Allow GOT relocs pointing to non-preemptable ifunc to resolve to an
IRELATIVE where possible.

This is needed in order to make ifuncs work correctly on PPC64.

It fixes an issue with lld, in which it would skip emitting necessary IRELATIVE
relocations. Without this change, indirect calls to ifuncs would result in a
segmentation fault, in static binaries or when defined in the main binary
(outside shared libraries).

This change also reverts the local
"Preserve relocations against ifuncs when -zifunc-noplt" commit and
replaces it by its upstream version, as part of the merge.

Reviewed by: markj
Differential Revision: https://reviews.freebsd.org/D21102

MFC r351662 (by emaste):

lldb: shorten thread names to make logs easier to follow

lldb prepends the thread name to log entries, and the existing thread
name for the FreeBSD ProcessMonitor thread was longer than the kernel's
supported thread name length, and so was truncated. This made logs hard
to read, as the truncated thread name ran into the log message. Shorten
"lldb.process.freebsd.operation" to just "freebsd.op" so that logs are
more readable.

(Upstreaming to lldb still to be done).

MFC r352095 (by emaste):

compiler-rt: use more __sanitizer_time_t on FreeBSD

A few structs were using long for time_t members.

Obtained from: LLVM r370755

MFC r352096 (by emaste):

compiler-rt: use 64-bit time_t for all FreeBSD archs except i386

Obtained from: LLVM r370756

MFC r352167 (by imp):

Remove dir empty since r276851

MFC r352168 (by imp):

Remove dirs empty since r280031

MFC r352169 (by imp):

Remove dir empty since r314564

MFC r352170 (by imp):

Remove dir empty since r327952

MFC r352171 (by imp):

Remove dirs (and their now-empty parents) empty since r344779

MFC r352792 (by emaste):

compiler-rt: correct RISC-V struct_kernel_stat64_sz

The value of struct_kernel_stat64_sz introduced by review D5021 for
RISC-V was incorrect.

Also add a __riscv_xlen == 64 conditional as the 32-bit ABI is not yet
finalized.

Submitted by: Luís Marques
Differential Revision: https://reviews.freebsd.org/D21684

MFC r353018 (by kevans):

clang: use -mxgot for 32-bit mips

Various bits in usr.bin/clang/* will fail to compile without -mxgot due to
truncated relocations. -mxgot entails a speed penalty, but I suspect we
don't care as much about compiler performance in 32-bit mips land.

Reviewed by: arichardson
Differential Revision: https://reviews.freebsd.org/D21698

MFC r353358:

Merge llvm, clang, compiler-rt, libc++, libunwind, lld, lldb and openmp
9.0.0 final release r372316.

Release notes for llvm, clang, lld and libc++ 9.0.0 are available here:

https://releases.llvm.org/9.0.0/docs/ReleaseNotes.html
https://releases.llvm.org/9.0.0/tools/clang/docs/ReleaseNotes.html
https://releases.llvm.org/9.0.0/tools/lld/docs/ReleaseNotes.html
https://releases.llvm.org/9.0.0/projects/libcxx/docs/ReleaseNotes.html

PR: 240629

MFC r353363:

Put in a band-aid fix for lldb 9 exiting with "Expected<T> must be
checked before access or destruction" when launching executables, while
we sort this out with upstream.

Reported by: jbeich
PR: 241137

MFC r353415:

Revert r353363 in preparation for applying upstream fix:

Put in a band-aid fix for lldb 9 exiting with "Expected<T> must be
checked before access or destruction" when launching executables, while
we sort this out with upstream.

PR: 241137

MFC r353416:

Pull in r374444 from upstream lldb trunk (by me):

Fix process launch failure on FreeBSD after r365761

Summary:
After rLLDB365761, and with `LLVM_ENABLE_ABI_BREAKING_CHECKS`
enabled, launching any process on FreeBSD crashes lldb with:

```
Expected<T> must be checked before access or destruction.
Expected<T> value was in success state. (Note: Expected<T> values in
success mode must still be checked prior to being destroyed).
```

This is because `m_operation_thread` and `m_monitor_thread` were
wrapped in `llvm::Expected<>`, but this requires the objects to be
correctly initialized before accessing them.

To fix the crashes, use `llvm::Optional<>` for the members (as
indicated by labath), and use local variables to store the return
values of `LaunchThread` and `StartMonitoringChildProcess`. Then,
only assign to the member variables after checking if the return
values indicated success.

Reviewers: devnexen, emaste, MaskRay, mgorny

Reviewed By: devnexen

Subscribers: jfb, labath, krytarowski, lldb-commits

Differential Revision: https://reviews.llvm.org/D68723

PR: 241137

MFC r353579 (by jhb):

Use __FreeBSD_version to determine if gets() has been removed.

GCC compilers set __FreeBSD__ statically to a build-time determined
targeted version (which in ports always matches the build host's
version). This means that when building any version (12 or 13, etc.)
of riscv or some other architecture via GCC on a 12.x host,
__FreeBSD__ will always be set to 12. As a result, __FreeBSD__ cannot
be used to reliably detect the target FreeBSD version being built.
Instead, __FreeBSD_version from either <sys/param.h> (in the kernel)
or <osreldate.h> (in userland) should be used.

This changes the gets() test in libc++ to use __FreeBSD_version from
<osreldate.h>.

Reported by: jenkins (riscv64 and amd64-gcc)
Reviewed by: dim, imp
Differential Revision: https://reviews.freebsd.org/D22034

MFC r353711 (by mhorne):

Fix build of LLVM RISC-V backend

Reviewed by: dim
MFC with: r353358
Differential Revision: https://reviews.freebsd.org/D21963

MFC r353738:

Pull in r372651 from upstream lld trunk (by Simon Atanasyan):

[mips] Support elf32btsmipn32_fbsd / elf32ltsmipn32_fbsd emulations

Patch by Kyle Evans.

Requested by: kevans

MFC r353739:

Pull in r374154 from upstream clang trunk (by Simon Atanasyan):

[mips] Set default float ABI to "soft" on FreeBSD

Initial patch by Kyle Evans.

Fix PR43596

Requested by: kevans

MFC r353936:

Bump clang's default target CPU for the i386 architecture (aka "x86") to
i686, as per the discussion on the freebsd-arch mailing list. Earlier
in r352030, I had already bumped it to i586, to work around missing
atomic 64 bit functions for the i386 architecture.

Relnotes: yes

MFC r354097:

Pull in r372186 from upstream llvm trunk (by Eli Friedman):

[ARM] VFPv2 only supports 16 D registers.

r361845 changed the way we handle "D16" vs. "D32" targets; there used
to be a negative "d16" which removed instructions from the
instruction set, and now there's a "d32" feature which adds
instructions to the instruction set. This is good, but there was an
oversight in the implementation: the behavior of VFPv2 was changed.
In particular, the "vfp2" feature was changed to imply "d32". This is
wrong: VFPv2 only supports 16 D registers.

In practice, this means if you specify -mfpu=vfpv2, the compiler will
generate illegal instructions.

This patch gets rid of "vfp2d16" and "vfp2d16sp", and fixes "vfp2"
and "vfp2sp" so they don't imply "d32".

Differential Revision: https://reviews.llvm.org/D67375

Pull in r372187 from upstream clang trunk (by Eli Friedman):

[ARM] Update clang for removal of vfp2d16 and vfp2d16sp

Matching fix for https://reviews.llvm.org/D67375 (r372186).

Differential Revision: https://reviews.llvm.org/D67467

This should fix clang generating invalid opcodes for floating point
operations on armv6.

Requested by: mmel

MFC r354146:

Pull in r373338 from upstream llvm trunk (by Simon Pilgrim):

Revert rL349624 : Let TableGen write output only if it changed,
instead of doing so in cmake, attempt 2

Differential Revision: https://reviews.llvm.org/D55842
-----------------
As discussed on PR43385 this is causing Visual Studio msbuilds to
perpetually rebuild all tablegen generated files

Pull in r373664 from upstream llvm trunk (by Nico Weber):

Reland r349624: Let TableGen write output only if it changed, instead
of doing so in cmake

Move the write-if-changed logic behind a flag and don't pass it with
the MSVC generator. msbuild doesn't have a restat optimization, so
not doing write-if-change there doesn't have a cost, and it should
fix whatever causes PR43385.

This should fix the scenario where an incremental build from before
r353358 (the clang 9.0.0 upgrade) to r353358 or later fails to update
the timestamp of the generated lib/clang/headers/arm_fp16.h header.

After such a build, installing world from read-only source and object
directories would attempt to generate the header again, leading to
"clang-tblgen: error opening arm_fp16.h.d:Read-only file system".

Reported by: avg, np
PR: 241402

MFC r354339:

Merge commit 97e362607 from llvm git (by Nemanja Ivanovic):

[PowerPC] Do not emit HW loop if the body contains calls to
lrint/lround

These two intrinsics are lowered to calls so should prevent the
formation of CTR loops. In a subsequent patch, we will handle all
currently known intrinsics and prevent the formation of HW loops if
any unknown intrinsics are encountered.

Differential revision: https://reviews.llvm.org/D68841

This should fix an "invalid CRT loop" assertion when building the
www/node port for powerpc64.

Requested by: Alfredo Dal'Ava Júnior <alfredo.junior@eldorado.org.br>

MFC r354347 (by cem):

Fix llvm-libunwind userspace build on ARM

GCC's libgcc exports a few ARM-specific symbols for ARM EABI, AEABI, or
EHABI or whatever it's called. Export the same ones from LLVM-libunwind's
libgcc_s, on ARM. As part of this, convert libgcc_s from a direct
Version.map to one constructed from component Symbol.map files. This allows
the ARM-specific Symbol.map to be included only on ARM.

Fix ARM-only oddities in struct name/aliases in LLVM-libunwind to match
non-ARM definitions and ARM-specific expectations in libcxxrt /
libcompiler_rt.

No functional change intended for non-ARM architectures.

This commit does not actually flip the switch for ARM defaults from libgcc
to llvm-libunwind, but makes it possible (to compile, anyway).

MFC r354418 (by cem):

clang: Enable unwind tables on !amd64

There doesn't seem to be much sense in defaulting "on" unwind tables on
amd64 and not on other arches. It causes surprising differences between
platforms, such as the PR below.

Prior to this change, FreeBSD inherited the default implementation of the
method from the Gnu.h Generic_Elf => Generic_GCC parent class, which
returned true only for amd64 targets. Override that and opt on always,
similar to, e.g., NetBSD.

PR: 241562
Reported by: lwhsu
Reviewed by: dim
Discussed with: emaste
Relnotes: yes
Differential Revision: https://reviews.freebsd.org/D22252

MFC r354429:

Merge commit 8e34dd941 from llvm git (by Sanjay Patel):

[x86] avoid crashing when splitting AVX stores with non-simple type
(PR43916)

The store splitting transform was assuming a simple type (MVT), but
that's not necessarily the case as shown in the test.

This should fix 'Assertion failed: (isSimple() && "Expected a
SimpleValueType!")' when building the security/openssl111 port targeting
a CPU that supports AVX, but not AVX2, such as sandybridge.

PR: 241747

MFC r354469:

Merge commit f596f4507 from llvm git (by Sam Elliott):

[RISCV] Add Custom Parser for Atomic Memory Operands

Summary:
GCC Accepts both (reg) and 0(reg) for atomic instruction memory
operands. These instructions do not allow for an offset in their
encoding, so in the latter case, the 0 is silently dropped.

Due to how we have structured the RISCVAsmParser, the easiest way to
add support for parsing this offset is to add a custom AsmOperand and
parser. This parser drops all the parens, and just keeps the
register.

This commit also adds a custom printer for these operands, which
matches the GCC canonical printer, printing both `(a0)` and `0(a0)`
as `(a0)`.

Reviewers: asb, lewis-revill

Reviewed By: asb

Subscribers: s.egerton, hiraditya, rbar, johnrusso, simoncook,
apazos, sabuasal, niosHD, kito-cheng, shiva0217, jrtc27, MaskRay,
zzheng, edward-jones, rogfer01, MartinMosbeck, brucehoult, the_o,
rkruppe, jfb, PkmX, jocewei, psnobl, benna, Jim, llvm-commits

Tags: #llvm

Differential Revision: https://reviews.llvm.org/D65205

llvm-svn: 367553

Merge commit f596f4507 from llvm git (by Sam Elliott):

[RISCV] Add FreeBSD targets

Reviewers: asb

Reviewed By: asb

Subscribers: simoncook, s.egerton, lenary, psnobl, benna, mhorne,
emaste, kito-cheng, shiva0217, rogfer01, rkruppe, cfe-commits

Tags: #clang

Differential Revision: https://reviews.llvm.org/D57795

Patch by James Clarke (jrtc27)

llvm-svn: 367557

Merge commit f596f4507 from llvm git (by Hsiangkai Wang):

[DebugInfo] Generate fixups as emitting DWARF .debug_frame/.eh_frame.

It is necessary to generate fixups in .debug_frame or .eh_frame as
relaxation is enabled due to the address delta may be changed after
relaxation.

There is an opcode with 6-bits data in debug frame encoding. So, we
also need 6-bits fixup types.

Differential Revision: https://reviews.llvm.org/D58335

llvm-svn: 366524

Merge commit f596f4507 from llvm git (by Hsiangkai Wang):

[DebugInfo] Some fields do not need relocations even relax is enabled.

In debug frame information, some fields, e.g., Length in CIE/FDE and
Offset in FDE are attributes to describe the structure of CIE/FDE.
They are not related to the relaxed code. However, these attributes
are symbol differences. So, in current design, these attributes will
be filled as zero and LLVM generates relocations for them.

We only need to generate relocations for symbols in executable
sections. So, if the symbols are not located in executable sections,
we still evaluate their values under relaxation.

Differential Revision: https://reviews.llvm.org/D61584

llvm-svn: 366531

Merge commit f596f4507 from llvm git (by Alex Bradbury):

[RISCV] Don't force absolute FK_Data_X fixups to relocs

The current behavior of shouldForceRelocation forces relocations for
the majority of fixups when relaxation is enabled. This makes sense
for fixups which incorporate symbols but is unnecessary for simple
data fixups where the fixup target is already resolved to an absolute
value.

Differential Revision: https://reviews.llvm.org/D63404
Patch by Edward Jones.

llvm-svn: 369257

Merge commit f596f4507 from llvm git (by Alex Bradbury):

[RISCV] Implement getExprForFDESymbol to ensure RISCV_32_PCREL is
used for the FDE location

Follow binutils in using RISCV_32_PCREL for the FDE initial location.
As explained in the relevant binutils commit
<https://github.com/riscv/riscv-binutils-gdb/commit/a6cbf936e3dce68114d28cdf60d510a3f78a6d40>,
the ADD/SUB pair of relocations is problematic in the presence of
linker relaxation.

This patch has the same end goal as D64715 but includes test changes
and avoids adding a new global VariantKind to MCExpr.h (preferring
RISCVMCExpr VKs like the rest of the RISC-V backend).

Differential Revision: https://reviews.llvm.org/D66419

llvm-svn: 369375

This series of merges will permit riscv64 kernels and riscv64sf worlds
to build with clang instead of gcc (but still using the bfd linker).

Requested by: jhb
Obtained from: https://github.com/freebsd/freebsd/compare/master...bsdjhb:riscv_clang

MFC r354662 (by jhb):

Sync target triple generation with the version in Makefile.inc1.

Reviewed by: dim
Sponsored by: DARPA
Differential Revision: https://reviews.freebsd.org/D22333

MFC r354692 (by emaste):

llvm: use AT_EXECPATH from ELF auxiliary vectors for getExecutablePath

/proc/curproc/file and the KERN_PROC_PATHNAME sysctl may not return the
desired path if there are multiple hardlinks to the file.

PR: 241932
Tested by: ler
Sponsored by: The FreeBSD Foundation

MFC r354707 (by emaste):

llvm: use elf_aux_info to get executable's path, if available

Obtained from: LLVM a0a38b81ea
MFC with: r354692
Sponsored by: The FreeBSD Foundation

MFC r354979:

Merge commit 7bed381ea from llvm git (by Simon Atanasyan):

[mips] Implement Octeon+ `saa` and `saad` instructions

`saa` and `saad` are 32-bit and 64-bit store atomic add instructions.

memory[base] = memory[base] + rt

These instructions are available for "Octeon+" CPU. The patch adds
support for both instructions to MIPS assembler and diassembler and
introduces new CPU type - "octeon+".

Next patches will implement `.set arch=octeon+` directive and
`AFL_EXT_OCTEONP` ISA extension flag support.

Differential Revision: https://reviews.llvm.org/D69849

This is one of the upstream changes needed for adding support for the
OCTEON+ CPU type, so that we can test Clang builds using the most
commonly available FreeBSD/mips64 reference platform, the Edge Router
Lite.

Requested by: kevans

MFC r354980:

Merge commit 3718102d4 from llvm git (by Simon Atanasyan):

[mips] Support `octeon+` CPU in the `.set arch=` directive

Differential Revision: https://reviews.llvm.org/D69850

This is one of the upstream changes needed for adding support for the
OCTEON+ CPU type, so that we can test Clang builds using the most
commonly available FreeBSD/mips64 reference platform, the Edge Router
Lite.

Requested by: kevans

MFC r354981:

Merge commit bf996f761 from llvm git (by Simon Atanasyan):

[mips] Write `AFL_EXT_OCTEONP` flag to the `.MIPS.abiflags` section

Differential Revision: https://reviews.llvm.org/D69851

This is one of the upstream changes needed for adding support for the
OCTEON+ CPU type, so that we can test Clang builds using the most
commonly available FreeBSD/mips64 reference platform, the Edge Router
Lite.

Requested by: kevans

MFC r354982:

Merge commit 3552d3e0f from llvm git (by Simon Atanasyan):

[mips] Add `octeon+` to the list of CPUs accepted by the driver

This is one of the upstream changes needed for adding support for the
OCTEON+ CPU type, so that we can test Clang builds using the most
commonly available FreeBSD/mips64 reference platform, the Edge Router
Lite.

Requested by: kevans

MFC r354983:

Merge commit e578d0fd2 from llvm git (by Simon Atanasyan):

[mips] Fix `__mips_isa_rev` macros value for Octeon CPU

This is one of the upstream changes needed for adding support for the
OCTEON+ CPU type, so that we can test Clang builds using the most
commonly available FreeBSD/mips64 reference platform, the Edge Router
Lite.

Requested by: kevans

MFC r354984:

Merge commit 0d14656b9 from llvm git (by Simon Atanasyan):

[mips] Set __OCTEON__ macros

This is one of the upstream changes needed for adding support for the
OCTEON+ CPU type, so that we can test Clang builds using the most
commonly available FreeBSD/mips64 reference platform, the Edge Router
Lite.

Requested by: kevans

MFC r354985:

Merge commit a751f557d from llvm git (by Simon Atanasyan):

[mips] Set macros for Octeon+ CPU

This is one of the upstream changes needed for adding support for the
OCTEON+ CPU type, so that we can test Clang builds using the most
commonly available FreeBSD/mips64 reference platform, the Edge Router
Lite.

Requested by: kevans

MFC r355397:

Merge commit 241cbf201 from llvm git (by Nemanja Ivanovic):

[PowerPC] Fix crash in peephole optimization

When converting reg+reg shifts to reg+imm rotates, we neglect to
consider the CodeGenOnly versions of the 32-bit shift mnemonics. This
means we produce a rotate with missing operands which causes a crash.

Committing this fix without review since it is non-controversial that
the list of mnemonics to consider should include the 64-bit aliases
for the exact mnemonics.

Fixes PR44183.

This should fix "Assertion failed: (idx < size()), function operator[],
file /usr/src/contrib/llvm/include/llvm/ADT/SmallVector.h, line 153"
when building the graphics/mesa-dri port for the PowerPC64 ELFv2 ABI.

Reported by: Alfredo Dal'Ava Júnior <alfredo.junior@eldorado.org.br>

MFC r355602:

Add a few missed source files to libllvm, for the MK_LLVM_TARGET_BPF=yes
case. Otherwise, linking of clang and other llvm based executables
would complain about missing symbols.

Reported by: rstone

MFC r355645 (by cem):

arm: libgcc_s: Fix ABI breakage introduced in r354347

Provide the symbol version for llvm-libunwind's _Unwind_Backtrace that libgcc
has historically provided on arm, in addition to the (default) standard version
used on all other arch.

Reported by: mmel

MFC r355803 (by mmel):

Fix LLVM libunwnwind _Unwind_Backtrace symbol version for ARM.
In original GNU libgcc, _Unwind_Backtrace is published with GCC_3.3 version
for all architectures but ARM. For ARM should be publishes with GCC_4.3.0
version. This was originally omitted in r255095, fixed in r318024 and omitted
aging in LLVM libunwind implementation in r354347.

For ARM _Unwind_Backtrace should be published as default with GCC_4.3.0
version , (because this is right original version) and again as
normal(not-default) with GCC_3.3 version (to maintain ABI compatibility
compiled/linked with wrong pre r318024 libgcc)

PR: 233664


/freebsd-11-stable/Makefile.inc1
/freebsd-11-stable/ObsoleteFiles.inc
/freebsd-11-stable/UPDATING
/freebsd-11-stable/contrib/compiler-rt/FREEBSD-Xlist
/freebsd-11-stable/contrib/compiler-rt/LICENSE.TXT
/freebsd-11-stable/contrib/compiler-rt/include/sanitizer/allocator_interface.h
/freebsd-11-stable/contrib/compiler-rt/include/sanitizer/asan_interface.h
/freebsd-11-stable/contrib/compiler-rt/include/sanitizer/common_interface_defs.h
/freebsd-11-stable/contrib/compiler-rt/include/sanitizer/coverage_interface.h
/freebsd-11-stable/contrib/compiler-rt/include/sanitizer/dfsan_interface.h
/freebsd-11-stable/contrib/compiler-rt/include/sanitizer/esan_interface.h
/freebsd-11-stable/contrib/compiler-rt/include/sanitizer/hwasan_interface.h
/freebsd-11-stable/contrib/compiler-rt/include/sanitizer/linux_syscall_hooks.h
/freebsd-11-stable/contrib/compiler-rt/include/sanitizer/lsan_interface.h
/freebsd-11-stable/contrib/compiler-rt/include/sanitizer/msan_interface.h
/freebsd-11-stable/contrib/compiler-rt/include/sanitizer/netbsd_syscall_hooks.h
/freebsd-11-stable/contrib/compiler-rt/include/sanitizer/scudo_interface.h
/freebsd-11-stable/contrib/compiler-rt/include/sanitizer/tsan_interface.h
/freebsd-11-stable/contrib/compiler-rt/include/sanitizer/tsan_interface_atomic.h
/freebsd-11-stable/contrib/compiler-rt/include/xray/xray_interface.h
/freebsd-11-stable/contrib/compiler-rt/include/xray/xray_log_interface.h
/freebsd-11-stable/contrib/compiler-rt/include/xray/xray_records.h
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_activation.cc
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_activation.h
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_activation_flags.inc
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_allocator.cc
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_allocator.h
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_debugging.cc
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_descriptions.cc
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_descriptions.h
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_errors.cc
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_errors.h
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_fake_stack.cc
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_fake_stack.h
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_flags.cc
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_flags.h
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_flags.inc
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_fuchsia.cc
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_globals.cc
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_globals_win.cc
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_init_version.h
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_interceptors.cc
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_interceptors.h
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_interceptors_memintrinsics.cc
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_interceptors_memintrinsics.h
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_interceptors_vfork.S
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_interface.inc
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_interface_internal.h
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_internal.h
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_linux.cc
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_mac.cc
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_malloc_linux.cc
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_malloc_local.h
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_malloc_mac.cc
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_malloc_win.cc
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_mapping.h
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_mapping_myriad.h
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_mapping_sparc64.h
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_memory_profile.cc
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_new_delete.cc
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_poisoning.cc
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_poisoning.h
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_posix.cc
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_preinit.cc
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_premap_shadow.cc
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_premap_shadow.h
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_report.cc
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_report.h
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_rtems.cc
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_rtl.cc
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_scariness_score.h
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_shadow_setup.cc
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_stack.cc
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_stack.h
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_stats.cc
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_stats.h
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_suppressions.cc
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_suppressions.h
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_thread.cc
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_thread.h
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_win.cc
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_win_dll_thunk.cc
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_win_dynamic_runtime_thunk.cc
/freebsd-11-stable/contrib/compiler-rt/lib/asan/asan_win_weak_interception.cc
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/aarch64/chkstk.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/absvdi2.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/absvsi2.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/absvti2.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/adddf3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/addsf3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/addtf3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/addvdi3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/addvsi3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/addvti3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/apple_versioning.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/adddf3vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/addsf3.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/addsf3vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/aeabi_cdcmp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/aeabi_cdcmpeq_check_nan.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/aeabi_cfcmp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/aeabi_cfcmpeq_check_nan.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/aeabi_dcmp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/aeabi_div0.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/aeabi_drsub.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/aeabi_fcmp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/aeabi_frsub.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/aeabi_idivmod.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/aeabi_ldivmod.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/aeabi_memcmp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/aeabi_memcpy.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/aeabi_memmove.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/aeabi_memset.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/aeabi_uidivmod.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/aeabi_uldivmod.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/bswapdi2.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/bswapsi2.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/chkstk.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/clzdi2.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/clzsi2.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/comparesf2.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/divdf3vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/divmodsi4.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/divsf3vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/divsi3.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/eqdf2vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/eqsf2vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/extendsfdf2vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/fixdfsivfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/fixsfsivfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/fixunsdfsivfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/fixunssfsivfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/floatsidfvfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/floatsisfvfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/floatunssidfvfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/floatunssisfvfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/gedf2vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/gesf2vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/gtdf2vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/gtsf2vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/ledf2vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/lesf2vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/ltdf2vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/ltsf2vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/modsi3.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/muldf3vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/mulsf3vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/nedf2vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/negdf2vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/negsf2vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/nesf2vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/restore_vfp_d8_d15_regs.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/save_vfp_d8_d15_regs.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/softfloat-alias.list
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/subdf3vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/subsf3vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/switch16.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/switch32.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/switch8.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/switchu8.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/sync-ops.h
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/sync_fetch_and_add_4.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/sync_fetch_and_add_8.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/sync_fetch_and_and_4.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/sync_fetch_and_and_8.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/sync_fetch_and_max_4.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/sync_fetch_and_max_8.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/sync_fetch_and_min_4.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/sync_fetch_and_min_8.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/sync_fetch_and_nand_4.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/sync_fetch_and_nand_8.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/sync_fetch_and_or_4.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/sync_fetch_and_or_8.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/sync_fetch_and_sub_4.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/sync_fetch_and_sub_8.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/sync_fetch_and_umax_4.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/sync_fetch_and_umax_8.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/sync_fetch_and_umin_4.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/sync_fetch_and_umin_8.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/sync_fetch_and_xor_4.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/sync_fetch_and_xor_8.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/sync_synchronize.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/truncdfsf2vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/udivmodsi4.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/udivsi3.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/umodsi3.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/unorddf2vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/arm/unordsf2vfp.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/armv6m
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/ashldi3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/ashlti3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/ashrdi3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/ashrti3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/assembly.h
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/atomic.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/atomic_flag_clear.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/atomic_flag_clear_explicit.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/atomic_flag_test_and_set.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/atomic_flag_test_and_set_explicit.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/atomic_signal_fence.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/atomic_thread_fence.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/bswapdi2.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/bswapsi2.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/clear_cache.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/clzdi2.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/clzsi2.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/clzti2.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/cmpdi2.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/cmpti2.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/comparedf2.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/comparesf2.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/comparetf2.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/cpu_model.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/ctzdi2.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/ctzsi2.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/ctzti2.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/divdc3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/divdf3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/divdi3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/divmoddi4.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/divmodsi4.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/divsc3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/divsf3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/divsi3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/divtc3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/divtf3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/divti3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/divxc3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/emutls.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/enable_execute_stack.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/eprintf.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/extenddftf2.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/extendhfsf2.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/extendsfdf2.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/extendsftf2.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/ffsdi2.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/ffssi2.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/ffsti2.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/fixdfdi.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/fixdfsi.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/fixdfti.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/fixsfdi.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/fixsfsi.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/fixsfti.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/fixtfdi.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/fixtfsi.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/fixtfti.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/fixunsdfdi.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/fixunsdfsi.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/fixunsdfti.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/fixunssfdi.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/fixunssfsi.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/fixunssfti.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/fixunstfdi.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/fixunstfsi.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/fixunstfti.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/fixunsxfdi.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/fixunsxfsi.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/fixunsxfti.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/fixxfdi.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/fixxfti.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/floatdidf.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/floatdisf.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/floatditf.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/floatdixf.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/floatsidf.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/floatsisf.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/floatsitf.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/floattidf.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/floattisf.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/floattitf.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/floattixf.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/floatundidf.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/floatundisf.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/floatunditf.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/floatundixf.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/floatunsidf.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/floatunsisf.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/floatunsitf.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/floatuntidf.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/floatuntisf.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/floatuntitf.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/floatuntixf.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/fp_add_impl.inc
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/fp_extend.h
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/fp_extend_impl.inc
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/fp_fixint_impl.inc
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/fp_fixuint_impl.inc
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/fp_lib.h
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/fp_mul_impl.inc
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/fp_trunc.h
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/fp_trunc_impl.inc
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/gcc_personality_v0.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/hexagon/common_entry_exit_abi1.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/hexagon/common_entry_exit_abi2.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/hexagon/common_entry_exit_legacy.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/hexagon/dfaddsub.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/hexagon/dfdiv.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/hexagon/dffma.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/hexagon/dfminmax.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/hexagon/dfmul.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/hexagon/dfsqrt.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/hexagon/divdi3.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/hexagon/divsi3.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/hexagon/fabs_opt.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/hexagon/fastmath2_dlib_asm.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/hexagon/fastmath2_ldlib_asm.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/hexagon/fastmath_dlib_asm.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/hexagon/fma_opt.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/hexagon/fmax_opt.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/hexagon/fmin_opt.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/hexagon/memcpy_forward_vp4cp4n2.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/hexagon/memcpy_likely_aligned.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/hexagon/moddi3.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/hexagon/modsi3.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/hexagon/sfdiv_opt.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/hexagon/sfsqrt_opt.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/hexagon/udivdi3.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/hexagon/udivmoddi4.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/hexagon/udivmodsi4.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/hexagon/udivsi3.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/hexagon/umoddi3.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/hexagon/umodsi3.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/i386/ashldi3.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/i386/ashrdi3.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/i386/chkstk.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/i386/chkstk2.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/i386/divdi3.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/i386/floatdidf.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/i386/floatdisf.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/i386/floatdixf.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/i386/floatundidf.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/i386/floatundisf.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/i386/floatundixf.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/i386/lshrdi3.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/i386/moddi3.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/i386/muldi3.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/i386/udivdi3.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/i386/umoddi3.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/int_endianness.h
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/int_lib.h
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/int_math.h
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/int_types.h
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/int_util.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/int_util.h
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/lshrdi3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/lshrti3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/mingw_fixfloat.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/moddi3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/modsi3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/modti3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/muldc3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/muldf3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/muldi3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/mulodi4.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/mulosi4.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/muloti4.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/mulsc3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/mulsf3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/multc3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/multf3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/multi3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/mulvdi3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/mulvsi3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/mulvti3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/mulxc3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/negdf2.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/negdi2.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/negsf2.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/negti2.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/negvdi2.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/negvsi2.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/negvti2.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/os_version_check.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/paritydi2.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/paritysi2.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/parityti2.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/popcountdi2.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/popcountsi2.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/popcountti2.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/powidf2.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/powisf2.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/powitf2.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/powixf2.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/ppc/DD.h
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/ppc/divtc3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/ppc/fixtfdi.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/ppc/fixunstfdi.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/ppc/fixunstfti.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/ppc/floatditf.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/ppc/floattitf.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/ppc/floatunditf.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/ppc/gcc_qadd.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/ppc/gcc_qdiv.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/ppc/gcc_qmul.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/ppc/gcc_qsub.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/ppc/multc3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/ppc/restFP.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/ppc/saveFP.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/riscv/mulsi3.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/subdf3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/subsf3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/subtf3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/subvdi3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/subvsi3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/subvti3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/trampoline_setup.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/truncdfhf2.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/truncdfsf2.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/truncsfhf2.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/trunctfdf2.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/trunctfsf2.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/ucmpdi2.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/ucmpti2.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/udivdi3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/udivmoddi4.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/udivmodsi4.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/udivmodti4.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/udivsi3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/udivti3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/umoddi3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/umodsi3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/umodti3.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/unwind-ehabi-helpers.h
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/x86_64/chkstk.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/x86_64/chkstk2.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/x86_64/floatdidf.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/x86_64/floatdisf.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/x86_64/floatdixf.c
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/x86_64/floatundidf.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/x86_64/floatundisf.S
/freebsd-11-stable/contrib/compiler-rt/lib/builtins/x86_64/floatundixf.S
/freebsd-11-stable/contrib/compiler-rt/lib/cfi/cfi.cc
/freebsd-11-stable/contrib/compiler-rt/lib/cfi/cfi.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/crt
/freebsd-11-stable/contrib/compiler-rt/lib/dfsan/dfsan.cc
/freebsd-11-stable/contrib/compiler-rt/lib/dfsan/dfsan.h
/freebsd-11-stable/contrib/compiler-rt/lib/dfsan/dfsan_custom.cc
/freebsd-11-stable/contrib/compiler-rt/lib/dfsan/dfsan_flags.inc
/freebsd-11-stable/contrib/compiler-rt/lib/dfsan/dfsan_interceptors.cc
/freebsd-11-stable/contrib/compiler-rt/lib/dfsan/dfsan_platform.h
/freebsd-11-stable/contrib/compiler-rt/lib/dfsan/done_abilist.txt
/freebsd-11-stable/contrib/compiler-rt/lib/esan
/freebsd-11-stable/contrib/compiler-rt/lib/fuzzer/FuzzerBuiltins.h
/freebsd-11-stable/contrib/compiler-rt/lib/fuzzer/FuzzerBuiltinsMsvc.h
/freebsd-11-stable/contrib/compiler-rt/lib/fuzzer/FuzzerCommand.h
/freebsd-11-stable/contrib/compiler-rt/lib/fuzzer/FuzzerCorpus.h
/freebsd-11-stable/contrib/compiler-rt/lib/fuzzer/FuzzerCrossOver.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/fuzzer/FuzzerDataFlowTrace.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/fuzzer/FuzzerDataFlowTrace.h
/freebsd-11-stable/contrib/compiler-rt/lib/fuzzer/FuzzerDefs.h
/freebsd-11-stable/contrib/compiler-rt/lib/fuzzer/FuzzerDictionary.h
/freebsd-11-stable/contrib/compiler-rt/lib/fuzzer/FuzzerDriver.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/fuzzer/FuzzerExtFunctions.def
/freebsd-11-stable/contrib/compiler-rt/lib/fuzzer/FuzzerExtFunctions.h
/freebsd-11-stable/contrib/compiler-rt/lib/fuzzer/FuzzerExtFunctionsDlsym.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/fuzzer/FuzzerExtFunctionsWeak.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/fuzzer/FuzzerExtFunctionsWindows.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/fuzzer/FuzzerExtraCounters.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/fuzzer/FuzzerFlags.def
/freebsd-11-stable/contrib/compiler-rt/lib/fuzzer/FuzzerFork.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/fuzzer/FuzzerFork.h
/freebsd-11-stable/contrib/compiler-rt/lib/fuzzer/FuzzerIO.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/fuzzer/FuzzerIO.h
/freebsd-11-stable/contrib/compiler-rt/lib/fuzzer/FuzzerIOPosix.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/fuzzer/FuzzerIOWindows.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/fuzzer/FuzzerInterface.h
/freebsd-11-stable/contrib/compiler-rt/lib/fuzzer/FuzzerInternal.h
/freebsd-11-stable/contrib/compiler-rt/lib/fuzzer/FuzzerLoop.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/fuzzer/FuzzerMain.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/fuzzer/FuzzerMerge.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/fuzzer/FuzzerMerge.h
/freebsd-11-stable/contrib/compiler-rt/lib/fuzzer/FuzzerMutate.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/fuzzer/FuzzerMutate.h
/freebsd-11-stable/contrib/compiler-rt/lib/fuzzer/FuzzerOptions.h
/freebsd-11-stable/contrib/compiler-rt/lib/fuzzer/FuzzerRandom.h
/freebsd-11-stable/contrib/compiler-rt/lib/fuzzer/FuzzerSHA1.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/fuzzer/FuzzerSHA1.h
/freebsd-11-stable/contrib/compiler-rt/lib/fuzzer/FuzzerShmem.h
/freebsd-11-stable/contrib/compiler-rt/lib/fuzzer/FuzzerShmemFuchsia.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/fuzzer/FuzzerShmemPosix.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/fuzzer/FuzzerShmemWindows.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/fuzzer/FuzzerTracePC.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/fuzzer/FuzzerTracePC.h
/freebsd-11-stable/contrib/compiler-rt/lib/fuzzer/FuzzerUtil.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/fuzzer/FuzzerUtil.h
/freebsd-11-stable/contrib/compiler-rt/lib/fuzzer/FuzzerUtilDarwin.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/fuzzer/FuzzerUtilFuchsia.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/fuzzer/FuzzerUtilLinux.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/fuzzer/FuzzerUtilPosix.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/fuzzer/FuzzerUtilWindows.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/fuzzer/FuzzerValueBitMap.h
/freebsd-11-stable/contrib/compiler-rt/lib/fuzzer/utils
/freebsd-11-stable/contrib/compiler-rt/lib/gwp_asan
/freebsd-11-stable/contrib/compiler-rt/lib/hwasan/hwasan.cc
/freebsd-11-stable/contrib/compiler-rt/lib/hwasan/hwasan.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/hwasan/hwasan.h
/freebsd-11-stable/contrib/compiler-rt/lib/hwasan/hwasan_allocator.cc
/freebsd-11-stable/contrib/compiler-rt/lib/hwasan/hwasan_allocator.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/hwasan/hwasan_allocator.h
/freebsd-11-stable/contrib/compiler-rt/lib/hwasan/hwasan_checks.h
/freebsd-11-stable/contrib/compiler-rt/lib/hwasan/hwasan_dynamic_shadow.cc
/freebsd-11-stable/contrib/compiler-rt/lib/hwasan/hwasan_dynamic_shadow.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/hwasan/hwasan_dynamic_shadow.h
/freebsd-11-stable/contrib/compiler-rt/lib/hwasan/hwasan_flags.h
/freebsd-11-stable/contrib/compiler-rt/lib/hwasan/hwasan_flags.inc
/freebsd-11-stable/contrib/compiler-rt/lib/hwasan/hwasan_interceptors.cc
/freebsd-11-stable/contrib/compiler-rt/lib/hwasan/hwasan_interceptors.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/hwasan/hwasan_interceptors_vfork.S
/freebsd-11-stable/contrib/compiler-rt/lib/hwasan/hwasan_interface_internal.h
/freebsd-11-stable/contrib/compiler-rt/lib/hwasan/hwasan_linux.cc
/freebsd-11-stable/contrib/compiler-rt/lib/hwasan/hwasan_linux.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/hwasan/hwasan_malloc_bisect.h
/freebsd-11-stable/contrib/compiler-rt/lib/hwasan/hwasan_mapping.h
/freebsd-11-stable/contrib/compiler-rt/lib/hwasan/hwasan_memintrinsics.cc
/freebsd-11-stable/contrib/compiler-rt/lib/hwasan/hwasan_memintrinsics.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/hwasan/hwasan_new_delete.cc
/freebsd-11-stable/contrib/compiler-rt/lib/hwasan/hwasan_new_delete.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/hwasan/hwasan_poisoning.cc
/freebsd-11-stable/contrib/compiler-rt/lib/hwasan/hwasan_poisoning.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/hwasan/hwasan_poisoning.h
/freebsd-11-stable/contrib/compiler-rt/lib/hwasan/hwasan_report.cc
/freebsd-11-stable/contrib/compiler-rt/lib/hwasan/hwasan_report.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/hwasan/hwasan_report.h
/freebsd-11-stable/contrib/compiler-rt/lib/hwasan/hwasan_tag_mismatch_aarch64.S
/freebsd-11-stable/contrib/compiler-rt/lib/hwasan/hwasan_thread.cc
/freebsd-11-stable/contrib/compiler-rt/lib/hwasan/hwasan_thread.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/hwasan/hwasan_thread.h
/freebsd-11-stable/contrib/compiler-rt/lib/hwasan/hwasan_thread_list.cc
/freebsd-11-stable/contrib/compiler-rt/lib/hwasan/hwasan_thread_list.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/hwasan/hwasan_thread_list.h
/freebsd-11-stable/contrib/compiler-rt/lib/interception/interception.h
/freebsd-11-stable/contrib/compiler-rt/lib/interception/interception_linux.cc
/freebsd-11-stable/contrib/compiler-rt/lib/interception/interception_linux.h
/freebsd-11-stable/contrib/compiler-rt/lib/interception/interception_mac.cc
/freebsd-11-stable/contrib/compiler-rt/lib/interception/interception_mac.h
/freebsd-11-stable/contrib/compiler-rt/lib/interception/interception_type_test.cc
/freebsd-11-stable/contrib/compiler-rt/lib/interception/interception_win.cc
/freebsd-11-stable/contrib/compiler-rt/lib/interception/interception_win.h
/freebsd-11-stable/contrib/compiler-rt/lib/lsan/lsan.cc
/freebsd-11-stable/contrib/compiler-rt/lib/lsan/lsan.h
/freebsd-11-stable/contrib/compiler-rt/lib/lsan/lsan_allocator.cc
/freebsd-11-stable/contrib/compiler-rt/lib/lsan/lsan_allocator.h
/freebsd-11-stable/contrib/compiler-rt/lib/lsan/lsan_common.cc
/freebsd-11-stable/contrib/compiler-rt/lib/lsan/lsan_common.h
/freebsd-11-stable/contrib/compiler-rt/lib/lsan/lsan_common_linux.cc
/freebsd-11-stable/contrib/compiler-rt/lib/lsan/lsan_common_mac.cc
/freebsd-11-stable/contrib/compiler-rt/lib/lsan/lsan_flags.inc
/freebsd-11-stable/contrib/compiler-rt/lib/lsan/lsan_interceptors.cc
/freebsd-11-stable/contrib/compiler-rt/lib/lsan/lsan_linux.cc
/freebsd-11-stable/contrib/compiler-rt/lib/lsan/lsan_mac.cc
/freebsd-11-stable/contrib/compiler-rt/lib/lsan/lsan_malloc_mac.cc
/freebsd-11-stable/contrib/compiler-rt/lib/lsan/lsan_preinit.cc
/freebsd-11-stable/contrib/compiler-rt/lib/lsan/lsan_thread.cc
/freebsd-11-stable/contrib/compiler-rt/lib/lsan/lsan_thread.h
/freebsd-11-stable/contrib/compiler-rt/lib/msan/msan.cc
/freebsd-11-stable/contrib/compiler-rt/lib/msan/msan.h
/freebsd-11-stable/contrib/compiler-rt/lib/msan/msan_allocator.cc
/freebsd-11-stable/contrib/compiler-rt/lib/msan/msan_allocator.h
/freebsd-11-stable/contrib/compiler-rt/lib/msan/msan_chained_origin_depot.cc
/freebsd-11-stable/contrib/compiler-rt/lib/msan/msan_chained_origin_depot.h
/freebsd-11-stable/contrib/compiler-rt/lib/msan/msan_flags.h
/freebsd-11-stable/contrib/compiler-rt/lib/msan/msan_flags.inc
/freebsd-11-stable/contrib/compiler-rt/lib/msan/msan_interceptors.cc
/freebsd-11-stable/contrib/compiler-rt/lib/msan/msan_interface_internal.h
/freebsd-11-stable/contrib/compiler-rt/lib/msan/msan_linux.cc
/freebsd-11-stable/contrib/compiler-rt/lib/msan/msan_new_delete.cc
/freebsd-11-stable/contrib/compiler-rt/lib/msan/msan_origin.h
/freebsd-11-stable/contrib/compiler-rt/lib/msan/msan_poisoning.cc
/freebsd-11-stable/contrib/compiler-rt/lib/msan/msan_poisoning.h
/freebsd-11-stable/contrib/compiler-rt/lib/msan/msan_report.cc
/freebsd-11-stable/contrib/compiler-rt/lib/msan/msan_report.h
/freebsd-11-stable/contrib/compiler-rt/lib/msan/msan_thread.h
/freebsd-11-stable/contrib/compiler-rt/lib/profile/GCDAProfiling.c
/freebsd-11-stable/contrib/compiler-rt/lib/profile/InstrProfData.inc
/freebsd-11-stable/contrib/compiler-rt/lib/profile/InstrProfiling.c
/freebsd-11-stable/contrib/compiler-rt/lib/profile/InstrProfiling.h
/freebsd-11-stable/contrib/compiler-rt/lib/profile/InstrProfilingBuffer.c
/freebsd-11-stable/contrib/compiler-rt/lib/profile/InstrProfilingFile.c
/freebsd-11-stable/contrib/compiler-rt/lib/profile/InstrProfilingInternal.h
/freebsd-11-stable/contrib/compiler-rt/lib/profile/InstrProfilingMerge.c
/freebsd-11-stable/contrib/compiler-rt/lib/profile/InstrProfilingMergeFile.c
/freebsd-11-stable/contrib/compiler-rt/lib/profile/InstrProfilingNameVar.c
/freebsd-11-stable/contrib/compiler-rt/lib/profile/InstrProfilingPlatformDarwin.c
/freebsd-11-stable/contrib/compiler-rt/lib/profile/InstrProfilingPlatformFuchsia.c
/freebsd-11-stable/contrib/compiler-rt/lib/profile/InstrProfilingPlatformLinux.c
/freebsd-11-stable/contrib/compiler-rt/lib/profile/InstrProfilingPlatformOther.c
/freebsd-11-stable/contrib/compiler-rt/lib/profile/InstrProfilingPlatformWindows.c
/freebsd-11-stable/contrib/compiler-rt/lib/profile/InstrProfilingPort.h
/freebsd-11-stable/contrib/compiler-rt/lib/profile/InstrProfilingRuntime.cc
/freebsd-11-stable/contrib/compiler-rt/lib/profile/InstrProfilingUtil.c
/freebsd-11-stable/contrib/compiler-rt/lib/profile/InstrProfilingUtil.h
/freebsd-11-stable/contrib/compiler-rt/lib/profile/InstrProfilingValue.c
/freebsd-11-stable/contrib/compiler-rt/lib/profile/InstrProfilingWriter.c
/freebsd-11-stable/contrib/compiler-rt/lib/profile/WindowsMMap.h
/freebsd-11-stable/contrib/compiler-rt/lib/safestack/safestack.cc
/freebsd-11-stable/contrib/compiler-rt/lib/safestack/safestack_platform.h
/freebsd-11-stable/contrib/compiler-rt/lib/safestack/safestack_util.h
/freebsd-11-stable/contrib/compiler-rt/lib/sancov
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sancov_begin.S
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sancov_end.S
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sancov_flags.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sancov_flags.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sancov_flags.inc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_addrhashmap.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_allocator.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_allocator.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_allocator_bytemap.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_allocator_checks.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_allocator_checks.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_allocator_combined.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_allocator_interface.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_allocator_internal.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_allocator_local_cache.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_allocator_primary32.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_allocator_primary64.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_allocator_report.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_allocator_report.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_allocator_secondary.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_allocator_size_class_map.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_allocator_stats.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_asm.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_atomic.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_atomic_clang.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_atomic_clang_mips.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_atomic_clang_other.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_atomic_clang_x86.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_atomic_msvc.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_bitvector.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_bvgraph.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_common.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_common.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_common_interceptors.inc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_common_interceptors_format.inc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_common_interceptors_ioctl.inc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_common_interceptors_vfork_aarch64.inc.S
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_common_interceptors_vfork_arm.inc.S
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_common_interceptors_vfork_i386.inc.S
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_common_interceptors_vfork_x86_64.inc.S
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_common_interface.inc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_common_interface_posix.inc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_common_libcdep.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_common_nolibc.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_common_syscalls.inc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_coverage_fuchsia.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_coverage_interface.inc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_coverage_libcdep_new.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_coverage_win_dll_thunk.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_coverage_win_dynamic_runtime_thunk.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_coverage_win_sections.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_coverage_win_weak_interception.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_dbghelp.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_deadlock_detector.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_deadlock_detector1.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_deadlock_detector2.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_deadlock_detector_interface.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_errno.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_errno.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_errno_codes.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_file.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_file.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_flag_parser.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_flag_parser.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_flags.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_flags.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_flags.inc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_freebsd.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_fuchsia.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_fuchsia.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_getauxval.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_hash.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_interceptors_ioctl_netbsd.inc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_interface_internal.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_internal_defs.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_lfstack.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_libc.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_libc.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_libignore.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_libignore.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_linux.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_linux.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_linux_libcdep.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_linux_mips64.S
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_linux_s390.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_linux_x86_64.S
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_list.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_local_address_space_view.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_mac.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_mac.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_mac_libcdep.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_malloc_mac.inc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_mutex.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_netbsd.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_openbsd.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_persistent_allocator.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_persistent_allocator.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_placement_new.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_platform.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_platform_interceptors.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_freebsd.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_freebsd.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_linux.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_netbsd.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_netbsd.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_openbsd.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_openbsd.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_posix.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_posix.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_solaris.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_solaris.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_posix.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_posix.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_posix_libcdep.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_printf.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_procmaps.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_procmaps_bsd.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_procmaps_common.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_procmaps_linux.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_procmaps_mac.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_procmaps_solaris.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_quarantine.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_report_decorator.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_ring_buffer.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_rtems.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_rtems.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_signal_interceptors.inc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_solaris.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_stackdepot.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_stackdepot.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_stackdepotbase.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_stacktrace.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_stacktrace.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_stacktrace_libcdep.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_stacktrace_printer.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_stacktrace_printer.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_stacktrace_sparc.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_stoptheworld.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_stoptheworld_linux_libcdep.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_stoptheworld_mac.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_stoptheworld_netbsd_libcdep.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_suppressions.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_suppressions.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_fuchsia.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_internal.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_libbacktrace.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_libbacktrace.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_libcdep.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_mac.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_mac.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_markup.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_posix_libcdep.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_report.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_rtems.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_win.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_syscall_generic.inc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_syscall_linux_aarch64.inc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_syscall_linux_arm.inc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_syscall_linux_x86_64.inc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_syscalls_netbsd.inc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_termination.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_thread_registry.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_thread_registry.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_tls_get_addr.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_tls_get_addr.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_type_traits.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_type_traits.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_unwind_linux_libcdep.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_unwind_win.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_vector.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_win.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_win.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_win_defs.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_win_dll_thunk.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_win_dll_thunk.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_win_dynamic_runtime_thunk.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_win_weak_interception.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/sanitizer_win_weak_interception.h
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/symbolizer/sanitizer_symbolize.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/symbolizer/sanitizer_wrappers.cc
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/symbolizer/scripts/ar_to_bc.sh
/freebsd-11-stable/contrib/compiler-rt/lib/sanitizer_common/symbolizer/scripts/global_symbols.txt
/freebsd-11-stable/contrib/compiler-rt/lib/scudo/scudo_allocator.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/scudo/scudo_allocator.h
/freebsd-11-stable/contrib/compiler-rt/lib/scudo/scudo_allocator_combined.h
/freebsd-11-stable/contrib/compiler-rt/lib/scudo/scudo_allocator_secondary.h
/freebsd-11-stable/contrib/compiler-rt/lib/scudo/scudo_crc32.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/scudo/scudo_crc32.h
/freebsd-11-stable/contrib/compiler-rt/lib/scudo/scudo_errors.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/scudo/scudo_errors.h
/freebsd-11-stable/contrib/compiler-rt/lib/scudo/scudo_flags.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/scudo/scudo_flags.h
/freebsd-11-stable/contrib/compiler-rt/lib/scudo/scudo_flags.inc
/freebsd-11-stable/contrib/compiler-rt/lib/scudo/scudo_interface_internal.h
/freebsd-11-stable/contrib/compiler-rt/lib/scudo/scudo_malloc.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/scudo/scudo_new_delete.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/scudo/scudo_platform.h
/freebsd-11-stable/contrib/compiler-rt/lib/scudo/scudo_termination.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/scudo/scudo_tsd.h
/freebsd-11-stable/contrib/compiler-rt/lib/scudo/scudo_tsd_exclusive.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/scudo/scudo_tsd_exclusive.inc
/freebsd-11-stable/contrib/compiler-rt/lib/scudo/scudo_tsd_shared.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/scudo/scudo_tsd_shared.inc
/freebsd-11-stable/contrib/compiler-rt/lib/scudo/scudo_utils.cpp
/freebsd-11-stable/contrib/compiler-rt/lib/scudo/scudo_utils.h
/freebsd-11-stable/contrib/compiler-rt/lib/scudo/standalone
/freebsd-11-stable/contrib/compiler-rt/lib/stats/stats.cc
/freebsd-11-stable/contrib/compiler-rt/lib/stats/stats.h
/freebsd-11-stable/contrib/compiler-rt/lib/stats/stats_client.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/benchmarks/func_entry_exit.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/benchmarks/mop.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/dd/dd_interceptors.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/dd/dd_rtl.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/dd/dd_rtl.h
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/go/test.c
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/go/tsan_go.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_clock.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_clock.h
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_debugging.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_defs.h
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_dense_alloc.h
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_dispatch_defs.h
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_external.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_fd.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_fd.h
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_flags.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_flags.h
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_flags.inc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_ignoreset.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_ignoreset.h
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_interceptors.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_interceptors.h
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_interceptors_mac.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_interface.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_interface.h
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_interface_ann.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_interface_ann.h
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_interface_atomic.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_interface_inl.h
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_interface_java.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_interface_java.h
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_libdispatch.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_libdispatch_mac.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_malloc_mac.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_md5.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_mman.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_mman.h
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_mutex.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_mutex.h
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_mutexset.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_mutexset.h
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_new_delete.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_platform.h
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_platform_linux.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_platform_mac.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_platform_posix.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_platform_windows.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_preinit.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_report.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_report.h
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_rtl.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_rtl.h
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_rtl_aarch64.S
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_rtl_amd64.S
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_rtl_mutex.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_rtl_proc.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_rtl_report.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_rtl_thread.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_stack_trace.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_stack_trace.h
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_stat.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_stat.h
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_suppressions.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_suppressions.h
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_symbolize.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_symbolize.h
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_sync.cc
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_sync.h
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_trace.h
/freebsd-11-stable/contrib/compiler-rt/lib/tsan/rtl/tsan_update_shadow_word_inl.h
/freebsd-11-stable/contrib/compiler-rt/lib/ubsan/ubsan_checks.inc
/freebsd-11-stable/contrib/compiler-rt/lib/ubsan/ubsan_diag.cc
/freebsd-11-stable/contrib/compiler-rt/lib/ubsan/ubsan_diag.h
/freebsd-11-stable/contrib/compiler-rt/lib/ubsan/ubsan_diag_standalone.cc
/freebsd-11-stable/contrib/compiler-rt/lib/ubsan/ubsan_flags.cc
/freebsd-11-stable/contrib/compiler-rt/lib/ubsan/ubsan_flags.h
/freebsd-11-stable/contrib/compiler-rt/lib/ubsan/ubsan_flags.inc
/freebsd-11-stable/contrib/compiler-rt/lib/ubsan/ubsan_handlers.cc
/freebsd-11-stable/contrib/compiler-rt/lib/ubsan/ubsan_handlers.h
/freebsd-11-stable/contrib/compiler-rt/lib/ubsan/ubsan_handlers_cxx.cc
/freebsd-11-stable/contrib/compiler-rt/lib/ubsan/ubsan_handlers_cxx.h
/freebsd-11-stable/contrib/compiler-rt/lib/ubsan/ubsan_init.cc
/freebsd-11-stable/contrib/compiler-rt/lib/ubsan/ubsan_init.h
/freebsd-11-stable/contrib/compiler-rt/lib/ubsan/ubsan_init_standalone.cc
/freebsd-11-stable/contrib/compiler-rt/lib/ubsan/ubsan_init_standalone_preinit.cc
/freebsd-11-stable/contrib/compiler-rt/lib/ubsan/ubsan_interface.inc
/freebsd-11-stable/contrib/compiler-rt/lib/ubsan/ubsan_monitor.cc
/freebsd-11-stable/contrib/compiler-rt/lib/ubsan/ubsan_monitor.h
/freebsd-11-stable/contrib/compiler-rt/lib/ubsan/ubsan_platform.h
/freebsd-11-stable/contrib/compiler-rt/lib/ubsan/ubsan_signals_standalone.cc
/freebsd-11-stable/contrib/compiler-rt/lib/ubsan/ubsan_signals_standalone.h
/freebsd-11-stable/contrib/compiler-rt/lib/ubsan/ubsan_type_hash.cc
/freebsd-11-stable/contrib/compiler-rt/lib/ubsan/ubsan_type_hash.h
/freebsd-11-stable/contrib/compiler-rt/lib/ubsan/ubsan_type_hash_itanium.cc
/freebsd-11-stable/contrib/compiler-rt/lib/ubsan/ubsan_type_hash_win.cc
/freebsd-11-stable/contrib/compiler-rt/lib/ubsan/ubsan_value.cc
/freebsd-11-stable/contrib/compiler-rt/lib/ubsan/ubsan_value.h
/freebsd-11-stable/contrib/compiler-rt/lib/ubsan/ubsan_win_dll_thunk.cc
/freebsd-11-stable/contrib/compiler-rt/lib/ubsan/ubsan_win_dynamic_runtime_thunk.cc
/freebsd-11-stable/contrib/compiler-rt/lib/ubsan/ubsan_win_weak_interception.cc
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_AArch64.cc
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_allocator.h
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_arm.cc
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_basic_flags.cc
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_basic_flags.h
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_basic_flags.inc
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_basic_logging.cc
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_basic_logging.h
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_buffer_queue.cc
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_buffer_queue.h
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_defs.h
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_fdr_controller.h
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_fdr_flags.cc
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_fdr_flags.h
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_fdr_flags.inc
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_fdr_log_records.h
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_fdr_log_writer.h
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_fdr_logging.cc
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_fdr_logging.h
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_flags.cc
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_flags.h
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_flags.inc
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_function_call_trie.h
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_init.cc
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_interface.cc
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_interface_internal.h
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_log_interface.cc
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_mips.cc
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_mips64.cc
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_powerpc64.cc
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_powerpc64.inc
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_profile_collector.cc
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_profile_collector.h
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_profiling.cc
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_profiling_flags.cc
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_profiling_flags.h
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_profiling_flags.inc
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_recursion_guard.h
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_segmented_array.h
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_trampoline_mips.S
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_trampoline_mips64.S
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_trampoline_x86_64.S
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_tsc.h
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_utils.cc
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_utils.h
/freebsd-11-stable/contrib/compiler-rt/lib/xray/xray_x86_64.inc
/freebsd-11-stable/contrib/libc++/FREEBSD-Xlist
/freebsd-11-stable/contrib/libc++/LICENSE.TXT
/freebsd-11-stable/contrib/libc++/include/__bit_reference
/freebsd-11-stable/contrib/libc++/include/__bsd_locale_defaults.h
/freebsd-11-stable/contrib/libc++/include/__bsd_locale_fallbacks.h
/freebsd-11-stable/contrib/libc++/include/__config
/freebsd-11-stable/contrib/libc++/include/__debug
/freebsd-11-stable/contrib/libc++/include/__errc
/freebsd-11-stable/contrib/libc++/include/__functional_03
/freebsd-11-stable/contrib/libc++/include/__functional_base
/freebsd-11-stable/contrib/libc++/include/__functional_base_03
/freebsd-11-stable/contrib/libc++/include/__hash_table
/freebsd-11-stable/contrib/libc++/include/__libcpp_version
/freebsd-11-stable/contrib/libc++/include/__locale
/freebsd-11-stable/contrib/libc++/include/__mutex_base
/freebsd-11-stable/contrib/libc++/include/__node_handle
/freebsd-11-stable/contrib/libc++/include/__nullptr
/freebsd-11-stable/contrib/libc++/include/__sso_allocator
/freebsd-11-stable/contrib/libc++/include/__std_stream
/freebsd-11-stable/contrib/libc++/include/__string
/freebsd-11-stable/contrib/libc++/include/__threading_support
/freebsd-11-stable/contrib/libc++/include/__tree
/freebsd-11-stable/contrib/libc++/include/__tuple
/freebsd-11-stable/contrib/libc++/include/__undef_macros
/freebsd-11-stable/contrib/libc++/include/algorithm
/freebsd-11-stable/contrib/libc++/include/any
/freebsd-11-stable/contrib/libc++/include/array
/freebsd-11-stable/contrib/libc++/include/atomic
/freebsd-11-stable/contrib/libc++/include/bit
/freebsd-11-stable/contrib/libc++/include/bitset
/freebsd-11-stable/contrib/libc++/include/cassert
/freebsd-11-stable/contrib/libc++/include/ccomplex
/freebsd-11-stable/contrib/libc++/include/cctype
/freebsd-11-stable/contrib/libc++/include/cerrno
/freebsd-11-stable/contrib/libc++/include/cfenv
/freebsd-11-stable/contrib/libc++/include/cfloat
/freebsd-11-stable/contrib/libc++/include/charconv
/freebsd-11-stable/contrib/libc++/include/chrono
/freebsd-11-stable/contrib/libc++/include/cinttypes
/freebsd-11-stable/contrib/libc++/include/ciso646
/freebsd-11-stable/contrib/libc++/include/climits
/freebsd-11-stable/contrib/libc++/include/clocale
/freebsd-11-stable/contrib/libc++/include/cmath
/freebsd-11-stable/contrib/libc++/include/codecvt
/freebsd-11-stable/contrib/libc++/include/compare
/freebsd-11-stable/contrib/libc++/include/complex
/freebsd-11-stable/contrib/libc++/include/complex.h
/freebsd-11-stable/contrib/libc++/include/condition_variable
/freebsd-11-stable/contrib/libc++/include/csetjmp
/freebsd-11-stable/contrib/libc++/include/csignal
/freebsd-11-stable/contrib/libc++/include/cstdarg
/freebsd-11-stable/contrib/libc++/include/cstdbool
/freebsd-11-stable/contrib/libc++/include/cstddef
/freebsd-11-stable/contrib/libc++/include/cstdint
/freebsd-11-stable/contrib/libc++/include/cstdio
/freebsd-11-stable/contrib/libc++/include/cstdlib
/freebsd-11-stable/contrib/libc++/include/cstring
/freebsd-11-stable/contrib/libc++/include/ctgmath
/freebsd-11-stable/contrib/libc++/include/ctime
/freebsd-11-stable/contrib/libc++/include/ctype.h
/freebsd-11-stable/contrib/libc++/include/cwchar
/freebsd-11-stable/contrib/libc++/include/cwctype
/freebsd-11-stable/contrib/libc++/include/deque
/freebsd-11-stable/contrib/libc++/include/errno.h
/freebsd-11-stable/contrib/libc++/include/exception
/freebsd-11-stable/contrib/libc++/include/experimental/__config
/freebsd-11-stable/contrib/libc++/include/experimental/__memory
/freebsd-11-stable/contrib/libc++/include/experimental/algorithm
/freebsd-11-stable/contrib/libc++/include/experimental/any
/freebsd-11-stable/contrib/libc++/include/experimental/chrono
/freebsd-11-stable/contrib/libc++/include/experimental/coroutine
/freebsd-11-stable/contrib/libc++/include/experimental/deque
/freebsd-11-stable/contrib/libc++/include/experimental/filesystem
/freebsd-11-stable/contrib/libc++/include/experimental/forward_list
/freebsd-11-stable/contrib/libc++/include/experimental/functional
/freebsd-11-stable/contrib/libc++/include/experimental/iterator
/freebsd-11-stable/contrib/libc++/include/experimental/list
/freebsd-11-stable/contrib/libc++/include/experimental/map
/freebsd-11-stable/contrib/libc++/include/experimental/memory_resource
/freebsd-11-stable/contrib/libc++/include/experimental/numeric
/freebsd-11-stable/contrib/libc++/include/experimental/optional
/freebsd-11-stable/contrib/libc++/include/experimental/propagate_const
/freebsd-11-stable/contrib/libc++/include/experimental/ratio
/freebsd-11-stable/contrib/libc++/include/experimental/regex
/freebsd-11-stable/contrib/libc++/include/experimental/set
/freebsd-11-stable/contrib/libc++/include/experimental/simd
/freebsd-11-stable/contrib/libc++/include/experimental/string
/freebsd-11-stable/contrib/libc++/include/experimental/string_view
/freebsd-11-stable/contrib/libc++/include/experimental/system_error
/freebsd-11-stable/contrib/libc++/include/experimental/tuple
/freebsd-11-stable/contrib/libc++/include/experimental/type_traits
/freebsd-11-stable/contrib/libc++/include/experimental/unordered_map
/freebsd-11-stable/contrib/libc++/include/experimental/unordered_set
/freebsd-11-stable/contrib/libc++/include/experimental/utility
/freebsd-11-stable/contrib/libc++/include/experimental/vector
/freebsd-11-stable/contrib/libc++/include/ext/__hash
/freebsd-11-stable/contrib/libc++/include/ext/hash_map
/freebsd-11-stable/contrib/libc++/include/ext/hash_set
/freebsd-11-stable/contrib/libc++/include/fenv.h
/freebsd-11-stable/contrib/libc++/include/filesystem
/freebsd-11-stable/contrib/libc++/include/float.h
/freebsd-11-stable/contrib/libc++/include/forward_list
/freebsd-11-stable/contrib/libc++/include/fstream
/freebsd-11-stable/contrib/libc++/include/functional
/freebsd-11-stable/contrib/libc++/include/future
/freebsd-11-stable/contrib/libc++/include/initializer_list
/freebsd-11-stable/contrib/libc++/include/inttypes.h
/freebsd-11-stable/contrib/libc++/include/iomanip
/freebsd-11-stable/contrib/libc++/include/ios
/freebsd-11-stable/contrib/libc++/include/iosfwd
/freebsd-11-stable/contrib/libc++/include/iostream
/freebsd-11-stable/contrib/libc++/include/istream
/freebsd-11-stable/contrib/libc++/include/iterator
/freebsd-11-stable/contrib/libc++/include/limits
/freebsd-11-stable/contrib/libc++/include/limits.h
/freebsd-11-stable/contrib/libc++/include/list
/freebsd-11-stable/contrib/libc++/include/locale
/freebsd-11-stable/contrib/libc++/include/locale.h
/freebsd-11-stable/contrib/libc++/include/map
/freebsd-11-stable/contrib/libc++/include/math.h
/freebsd-11-stable/contrib/libc++/include/memory
/freebsd-11-stable/contrib/libc++/include/module.modulemap
/freebsd-11-stable/contrib/libc++/include/mutex
/freebsd-11-stable/contrib/libc++/include/new
/freebsd-11-stable/contrib/libc++/include/numeric
/freebsd-11-stable/contrib/libc++/include/optional
/freebsd-11-stable/contrib/libc++/include/ostream
/freebsd-11-stable/contrib/libc++/include/queue
/freebsd-11-stable/contrib/libc++/include/random
/freebsd-11-stable/contrib/libc++/include/ratio
/freebsd-11-stable/contrib/libc++/include/regex
/freebsd-11-stable/contrib/libc++/include/scoped_allocator
/freebsd-11-stable/contrib/libc++/include/set
/freebsd-11-stable/contrib/libc++/include/setjmp.h
/freebsd-11-stable/contrib/libc++/include/shared_mutex
/freebsd-11-stable/contrib/libc++/include/span
/freebsd-11-stable/contrib/libc++/include/sstream
/freebsd-11-stable/contrib/libc++/include/stack
/freebsd-11-stable/contrib/libc++/include/stdbool.h
/freebsd-11-stable/contrib/libc++/include/stddef.h
/freebsd-11-stable/contrib/libc++/include/stdexcept
/freebsd-11-stable/contrib/libc++/include/stdint.h
/freebsd-11-stable/contrib/libc++/include/stdio.h
/freebsd-11-stable/contrib/libc++/include/stdlib.h
/freebsd-11-stable/contrib/libc++/include/streambuf
/freebsd-11-stable/contrib/libc++/include/string
/freebsd-11-stable/contrib/libc++/include/string.h
/freebsd-11-stable/contrib/libc++/include/string_view
/freebsd-11-stable/contrib/libc++/include/strstream
/freebsd-11-stable/contrib/libc++/include/system_error
/freebsd-11-stable/contrib/libc++/include/tgmath.h
/freebsd-11-stable/contrib/libc++/include/thread
/freebsd-11-stable/contrib/libc++/include/tuple
/freebsd-11-stable/contrib/libc++/include/type_traits
/freebsd-11-stable/contrib/libc++/include/typeindex
/freebsd-11-stable/contrib/libc++/include/typeinfo
/freebsd-11-stable/contrib/libc++/include/unordered_map
/freebsd-11-stable/contrib/libc++/include/unordered_set
/freebsd-11-stable/contrib/libc++/include/utility
/freebsd-11-stable/contrib/libc++/include/valarray
/freebsd-11-stable/contrib/libc++/include/variant
/freebsd-11-stable/contrib/libc++/include/vector
/freebsd-11-stable/contrib/libc++/include/version
/freebsd-11-stable/contrib/libc++/include/wchar.h
/freebsd-11-stable/contrib/libc++/include/wctype.h
/freebsd-11-stable/contrib/libc++/src/CMakeLists.txt
/freebsd-11-stable/contrib/libc++/src/algorithm.cpp
/freebsd-11-stable/contrib/libc++/src/any.cpp
/freebsd-11-stable/contrib/libc++/src/bind.cpp
/freebsd-11-stable/contrib/libc++/src/charconv.cpp
/freebsd-11-stable/contrib/libc++/src/chrono.cpp
/freebsd-11-stable/contrib/libc++/src/condition_variable.cpp
/freebsd-11-stable/contrib/libc++/src/condition_variable_destructor.cpp
/freebsd-11-stable/contrib/libc++/src/debug.cpp
/freebsd-11-stable/contrib/libc++/src/exception.cpp
/freebsd-11-stable/contrib/libc++/src/experimental/memory_resource.cpp
/freebsd-11-stable/contrib/libc++/src/filesystem/directory_iterator.cpp
/freebsd-11-stable/contrib/libc++/src/filesystem/filesystem_common.h
/freebsd-11-stable/contrib/libc++/src/filesystem/int128_builtins.cpp
/freebsd-11-stable/contrib/libc++/src/filesystem/operations.cpp
/freebsd-11-stable/contrib/libc++/src/functional.cpp
/freebsd-11-stable/contrib/libc++/src/future.cpp
/freebsd-11-stable/contrib/libc++/src/hash.cpp
/freebsd-11-stable/contrib/libc++/src/include/apple_availability.h
/freebsd-11-stable/contrib/libc++/src/include/atomic_support.h
/freebsd-11-stable/contrib/libc++/src/include/config_elast.h
/freebsd-11-stable/contrib/libc++/src/include/refstring.h
/freebsd-11-stable/contrib/libc++/src/ios.cpp
/freebsd-11-stable/contrib/libc++/src/iostream.cpp
/freebsd-11-stable/contrib/libc++/src/locale.cpp
/freebsd-11-stable/contrib/libc++/src/memory.cpp
/freebsd-11-stable/contrib/libc++/src/mutex.cpp
/freebsd-11-stable/contrib/libc++/src/mutex_destructor.cpp
/freebsd-11-stable/contrib/libc++/src/new.cpp
/freebsd-11-stable/contrib/libc++/src/optional.cpp
/freebsd-11-stable/contrib/libc++/src/random.cpp
/freebsd-11-stable/contrib/libc++/src/regex.cpp
/freebsd-11-stable/contrib/libc++/src/shared_mutex.cpp
/freebsd-11-stable/contrib/libc++/src/stdexcept.cpp
/freebsd-11-stable/contrib/libc++/src/string.cpp
/freebsd-11-stable/contrib/libc++/src/strstream.cpp
/freebsd-11-stable/contrib/libc++/src/support/runtime/exception_fallback.ipp
/freebsd-11-stable/contrib/libc++/src/support/runtime/exception_glibcxx.ipp
/freebsd-11-stable/contrib/libc++/src/support/runtime/exception_libcxxabi.ipp
/freebsd-11-stable/contrib/libc++/src/support/runtime/exception_libcxxrt.ipp
/freebsd-11-stable/contrib/libc++/src/support/runtime/exception_msvc.ipp
/freebsd-11-stable/contrib/libc++/src/support/runtime/exception_pointer_cxxabi.ipp
/freebsd-11-stable/contrib/libc++/src/support/runtime/exception_pointer_glibcxx.ipp
/freebsd-11-stable/contrib/libc++/src/support/runtime/exception_pointer_msvc.ipp
/freebsd-11-stable/contrib/libc++/src/support/runtime/exception_pointer_unimplemented.ipp
/freebsd-11-stable/contrib/libc++/src/support/runtime/new_handler_fallback.ipp
/freebsd-11-stable/contrib/libc++/src/support/runtime/stdexcept_default.ipp
/freebsd-11-stable/contrib/libc++/src/support/runtime/stdexcept_vcruntime.ipp
/freebsd-11-stable/contrib/libc++/src/system_error.cpp
/freebsd-11-stable/contrib/libc++/src/thread.cpp
/freebsd-11-stable/contrib/libc++/src/typeinfo.cpp
/freebsd-11-stable/contrib/libc++/src/utility.cpp
/freebsd-11-stable/contrib/libc++/src/valarray.cpp
/freebsd-11-stable/contrib/libc++/src/variant.cpp
/freebsd-11-stable/contrib/libc++/src/vector.cpp
/freebsd-11-stable/contrib/libunwind/FREEBSD-Xlist
/freebsd-11-stable/contrib/libunwind/LICENSE.TXT
/freebsd-11-stable/contrib/libunwind/include/__libunwind_config.h
/freebsd-11-stable/contrib/libunwind/include/libunwind.h
/freebsd-11-stable/contrib/libunwind/include/mach-o/compact_unwind_encoding.h
/freebsd-11-stable/contrib/libunwind/include/unwind.h
/freebsd-11-stable/contrib/libunwind/src/AddressSpace.hpp
/freebsd-11-stable/contrib/libunwind/src/CompactUnwinder.hpp
/freebsd-11-stable/contrib/libunwind/src/DwarfInstructions.hpp
/freebsd-11-stable/contrib/libunwind/src/DwarfParser.hpp
/freebsd-11-stable/contrib/libunwind/src/EHHeaderParser.hpp
/freebsd-11-stable/contrib/libunwind/src/RWMutex.hpp
/freebsd-11-stable/contrib/libunwind/src/Registers.hpp
/freebsd-11-stable/contrib/libunwind/src/Unwind-EHABI.cpp
/freebsd-11-stable/contrib/libunwind/src/Unwind-EHABI.h
/freebsd-11-stable/contrib/libunwind/src/Unwind-seh.cpp
/freebsd-11-stable/contrib/libunwind/src/Unwind-sjlj.c
/freebsd-11-stable/contrib/libunwind/src/UnwindCursor.hpp
/freebsd-11-stable/contrib/libunwind/src/UnwindLevel1-gcc-ext.c
/freebsd-11-stable/contrib/libunwind/src/UnwindLevel1.c
/freebsd-11-stable/contrib/libunwind/src/UnwindRegistersRestore.S
/freebsd-11-stable/contrib/libunwind/src/UnwindRegistersSave.S
/freebsd-11-stable/contrib/libunwind/src/Unwind_AppleExtras.cpp
/freebsd-11-stable/contrib/libunwind/src/assembly.h
/freebsd-11-stable/contrib/libunwind/src/config.h
/freebsd-11-stable/contrib/libunwind/src/dwarf2.h
/freebsd-11-stable/contrib/libunwind/src/libunwind.cpp
/freebsd-11-stable/contrib/libunwind/src/libunwind_ext.h
/freebsd-11-stable/contrib/llvm/FREEBSD-Xlist
/freebsd-11-stable/contrib/llvm/LICENSE.TXT
/freebsd-11-stable/contrib/llvm/include/llvm-c/Analysis.h
/freebsd-11-stable/contrib/llvm/include/llvm-c/BitReader.h
/freebsd-11-stable/contrib/llvm/include/llvm-c/BitWriter.h
/freebsd-11-stable/contrib/llvm/include/llvm-c/Comdat.h
/freebsd-11-stable/contrib/llvm/include/llvm-c/Core.h
/freebsd-11-stable/contrib/llvm/include/llvm-c/DataTypes.h
/freebsd-11-stable/contrib/llvm/include/llvm-c/DebugInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm-c/Disassembler.h
/freebsd-11-stable/contrib/llvm/include/llvm-c/DisassemblerTypes.h
/freebsd-11-stable/contrib/llvm/include/llvm-c/Error.h
/freebsd-11-stable/contrib/llvm/include/llvm-c/ErrorHandling.h
/freebsd-11-stable/contrib/llvm/include/llvm-c/ExecutionEngine.h
/freebsd-11-stable/contrib/llvm/include/llvm-c/IRReader.h
/freebsd-11-stable/contrib/llvm/include/llvm-c/Initialization.h
/freebsd-11-stable/contrib/llvm/include/llvm-c/LinkTimeOptimizer.h
/freebsd-11-stable/contrib/llvm/include/llvm-c/Linker.h
/freebsd-11-stable/contrib/llvm/include/llvm-c/Object.h
/freebsd-11-stable/contrib/llvm/include/llvm-c/OptRemarks.h
/freebsd-11-stable/contrib/llvm/include/llvm-c/OrcBindings.h
/freebsd-11-stable/contrib/llvm/include/llvm-c/Remarks.h
/freebsd-11-stable/contrib/llvm/include/llvm-c/Support.h
/freebsd-11-stable/contrib/llvm/include/llvm-c/Target.h
/freebsd-11-stable/contrib/llvm/include/llvm-c/TargetMachine.h
/freebsd-11-stable/contrib/llvm/include/llvm-c/Transforms/AggressiveInstCombine.h
/freebsd-11-stable/contrib/llvm/include/llvm-c/Transforms/Coroutines.h
/freebsd-11-stable/contrib/llvm/include/llvm-c/Transforms/IPO.h
/freebsd-11-stable/contrib/llvm/include/llvm-c/Transforms/InstCombine.h
/freebsd-11-stable/contrib/llvm/include/llvm-c/Transforms/PassManagerBuilder.h
/freebsd-11-stable/contrib/llvm/include/llvm-c/Transforms/Scalar.h
/freebsd-11-stable/contrib/llvm/include/llvm-c/Transforms/Utils.h
/freebsd-11-stable/contrib/llvm/include/llvm-c/Transforms/Vectorize.h
/freebsd-11-stable/contrib/llvm/include/llvm-c/Types.h
/freebsd-11-stable/contrib/llvm/include/llvm-c/lto.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/APFloat.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/APInt.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/APSInt.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/AllocatorList.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/Any.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/ArrayRef.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/BitVector.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/BitmaskEnum.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/BreadthFirstIterator.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/CachedHashString.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/DAGDeltaAlgorithm.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/DeltaAlgorithm.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/DenseMap.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/DenseMapInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/DenseSet.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/DepthFirstIterator.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/EpochTracker.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/EquivalenceClasses.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/FoldingSet.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/FunctionExtras.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/GraphTraits.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/Hashing.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/ImmutableList.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/ImmutableMap.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/ImmutableSet.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/IndexedMap.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/IntEqClasses.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/IntervalMap.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/IntrusiveRefCntPtr.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/MapVector.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/None.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/Optional.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/PackedVector.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/PointerEmbeddedInt.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/PointerIntPair.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/PointerSumType.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/PointerUnion.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/PostOrderIterator.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/PriorityQueue.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/PriorityWorklist.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/SCCIterator.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/STLExtras.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/ScopeExit.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/ScopedHashTable.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/Sequence.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/SetOperations.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/SetVector.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/SmallBitVector.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/SmallPtrSet.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/SmallSet.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/SmallString.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/SmallVector.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/SparseBitVector.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/SparseMultiSet.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/SparseSet.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/Statistic.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/StringExtras.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/StringMap.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/StringRef.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/StringSet.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/StringSwitch.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/TinyPtrVector.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/Triple.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/Twine.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/UniqueVector.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/VariadicFunction.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/bit.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/edit_distance.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/fallible_iterator.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/ilist.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/ilist_base.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/ilist_iterator.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/ilist_node.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/ilist_node_base.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/ilist_node_options.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/iterator.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/iterator_range.h
/freebsd-11-stable/contrib/llvm/include/llvm/ADT/simple_ilist.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/AliasAnalysis.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/AliasAnalysisEvaluator.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/AliasSetTracker.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/AssumptionCache.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/BasicAliasAnalysis.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/BlockFrequencyInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/BlockFrequencyInfoImpl.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/BranchProbabilityInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/CFG.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/CFGPrinter.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/CFLAliasAnalysisUtils.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/CFLAndersAliasAnalysis.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/CFLSteensAliasAnalysis.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/CGSCCPassManager.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/CallGraph.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/CallGraphSCCPass.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/CallPrinter.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/CaptureTracking.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/CmpInstAnalysis.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/CodeMetrics.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/ConstantFolding.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/DOTGraphTraitsPass.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/DemandedBits.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/DependenceAnalysis.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/DivergenceAnalysis.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/DomPrinter.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/DomTreeUpdater.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/DominanceFrontier.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/DominanceFrontierImpl.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/EHPersonalities.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/GlobalsModRef.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/GuardUtils.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/IVDescriptors.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/IVUsers.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/IndirectCallPromotionAnalysis.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/IndirectCallVisitor.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/InlineCost.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/InstructionPrecedenceTracking.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/InstructionSimplify.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/Interval.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/IntervalIterator.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/IntervalPartition.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/IteratedDominanceFrontier.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/LazyBlockFrequencyInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/LazyBranchProbabilityInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/LazyCallGraph.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/LazyValueInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/LegacyDivergenceAnalysis.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/Lint.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/Loads.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/LoopAccessAnalysis.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/LoopAnalysisManager.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/LoopInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/LoopInfoImpl.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/LoopIterator.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/LoopPass.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/LoopUnrollAnalyzer.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/MemoryBuiltins.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/MemoryDependenceAnalysis.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/MemoryLocation.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/MemorySSA.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/MemorySSAUpdater.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/ModuleSummaryAnalysis.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/MustExecute.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/ObjCARCAliasAnalysis.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/ObjCARCAnalysisUtils.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/ObjCARCInstKind.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/OptimizationRemarkEmitter.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/OrderedBasicBlock.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/OrderedInstructions.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/PHITransAddr.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/Passes.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/PhiValues.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/PostDominators.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/ProfileSummaryInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/PtrUseVisitor.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/RegionInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/RegionInfoImpl.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/RegionIterator.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/RegionPass.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/RegionPrinter.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/ScalarEvolution.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/ScalarEvolutionAliasAnalysis.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/ScalarEvolutionExpander.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/ScalarEvolutionExpressions.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/ScalarEvolutionNormalization.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/ScopedNoAliasAA.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/SparsePropagation.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/StackSafetyAnalysis.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/SyncDependenceAnalysis.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/SyntheticCountsUtils.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/TargetFolder.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/TargetLibraryInfo.def
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/TargetLibraryInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/TargetTransformInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/TargetTransformInfoImpl.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/Trace.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/TypeBasedAliasAnalysis.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/TypeMetadataUtils.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/Utils/Local.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/ValueLattice.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/ValueLatticeUtils.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/ValueTracking.h
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/VecFuncs.def
/freebsd-11-stable/contrib/llvm/include/llvm/Analysis/VectorUtils.h
/freebsd-11-stable/contrib/llvm/include/llvm/AsmParser/Parser.h
/freebsd-11-stable/contrib/llvm/include/llvm/AsmParser/SlotMapping.h
/freebsd-11-stable/contrib/llvm/include/llvm/BinaryFormat/AMDGPUMetadataVerifier.h
/freebsd-11-stable/contrib/llvm/include/llvm/BinaryFormat/COFF.h
/freebsd-11-stable/contrib/llvm/include/llvm/BinaryFormat/Dwarf.def
/freebsd-11-stable/contrib/llvm/include/llvm/BinaryFormat/Dwarf.h
/freebsd-11-stable/contrib/llvm/include/llvm/BinaryFormat/DynamicTags.def
/freebsd-11-stable/contrib/llvm/include/llvm/BinaryFormat/ELF.h
/freebsd-11-stable/contrib/llvm/include/llvm/BinaryFormat/ELFRelocs/ARM.def
/freebsd-11-stable/contrib/llvm/include/llvm/BinaryFormat/ELFRelocs/PowerPC.def
/freebsd-11-stable/contrib/llvm/include/llvm/BinaryFormat/MachO.def
/freebsd-11-stable/contrib/llvm/include/llvm/BinaryFormat/MachO.h
/freebsd-11-stable/contrib/llvm/include/llvm/BinaryFormat/Magic.h
/freebsd-11-stable/contrib/llvm/include/llvm/BinaryFormat/Minidump.h
/freebsd-11-stable/contrib/llvm/include/llvm/BinaryFormat/MinidumpConstants.def
/freebsd-11-stable/contrib/llvm/include/llvm/BinaryFormat/MsgPack.def
/freebsd-11-stable/contrib/llvm/include/llvm/BinaryFormat/MsgPack.h
/freebsd-11-stable/contrib/llvm/include/llvm/BinaryFormat/MsgPackDocument.h
/freebsd-11-stable/contrib/llvm/include/llvm/BinaryFormat/MsgPackReader.h
/freebsd-11-stable/contrib/llvm/include/llvm/BinaryFormat/MsgPackTypes.h
/freebsd-11-stable/contrib/llvm/include/llvm/BinaryFormat/MsgPackWriter.h
/freebsd-11-stable/contrib/llvm/include/llvm/BinaryFormat/Wasm.h
/freebsd-11-stable/contrib/llvm/include/llvm/BinaryFormat/WasmRelocs
/freebsd-11-stable/contrib/llvm/include/llvm/BinaryFormat/WasmRelocs.def
/freebsd-11-stable/contrib/llvm/include/llvm/BinaryFormat/XCOFF.h
/freebsd-11-stable/contrib/llvm/include/llvm/Bitcode/BitCodes.h
/freebsd-11-stable/contrib/llvm/include/llvm/Bitcode/BitcodeAnalyzer.h
/freebsd-11-stable/contrib/llvm/include/llvm/Bitcode/BitcodeReader.h
/freebsd-11-stable/contrib/llvm/include/llvm/Bitcode/BitcodeWriter.h
/freebsd-11-stable/contrib/llvm/include/llvm/Bitcode/BitcodeWriterPass.h
/freebsd-11-stable/contrib/llvm/include/llvm/Bitcode/BitstreamReader.h
/freebsd-11-stable/contrib/llvm/include/llvm/Bitcode/BitstreamWriter.h
/freebsd-11-stable/contrib/llvm/include/llvm/Bitcode/LLVMBitCodes.h
/freebsd-11-stable/contrib/llvm/include/llvm/Bitstream
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/AccelTable.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/Analysis.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/AsmPrinter.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/AsmPrinterHandler.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/AtomicExpandUtils.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/BasicTTIImpl.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/BuiltinGCs.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/CSEConfigBase.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/CalcSpillWeights.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/CallingConvLower.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/CommandFlags.inc
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/CostTable.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/DAGCombine.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/DFAPacketizer.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/DIE.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/DIEValue.def
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/DbgEntityHistoryCalculator.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/DebugHandlerBase.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/DwarfStringPoolEntry.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/EdgeBundles.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/ExecutionDomainFix.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/ExpandReductions.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/FastISel.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/FaultMaps.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/FunctionLoweringInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/GCMetadata.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/GCMetadataPrinter.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/GCStrategy.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/GlobalISel/CSEInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/GlobalISel/CSEMIRBuilder.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/GlobalISel/CallLowering.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/GlobalISel/Combiner.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/GlobalISel/CombinerHelper.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/GlobalISel/CombinerInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/GlobalISel/ConstantFoldingMIRBuilder.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/GlobalISel/GISelChangeObserver.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/GlobalISel/GISelWorkList.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/GlobalISel/IRTranslator.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/GlobalISel/InstructionSelect.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/GlobalISel/InstructionSelector.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/GlobalISel/InstructionSelectorImpl.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/GlobalISel/LegalizationArtifactCombiner.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/GlobalISel/Legalizer.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/GlobalISel/LegalizerHelper.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/GlobalISel/LegalizerInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/GlobalISel/Localizer.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/GlobalISel/MIPatternMatch.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/GlobalISel/MachineIRBuilder.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/GlobalISel/RegBankSelect.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/GlobalISel/RegisterBank.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/GlobalISel/RegisterBankInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/GlobalISel/Types.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/GlobalISel/Utils.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/ISDOpcodes.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/IntrinsicLowering.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/LatencyPriorityQueue.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/LazyMachineBlockFrequencyInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/LexicalScopes.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/LinkAllAsmWriterComponents.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/LinkAllCodegenComponents.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/LiveInterval.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/LiveIntervalUnion.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/LiveIntervals.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/LivePhysRegs.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/LiveRangeEdit.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/LiveRegMatrix.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/LiveRegUnits.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/LiveStacks.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/LiveVariables.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/LoopTraversal.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/LowLevelType.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/MIRParser/MIParser.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/MIRParser/MIRParser.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/MIRPrinter.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/MIRYamlMapping.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/MachORelocation.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/MachineBasicBlock.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/MachineBlockFrequencyInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/MachineBranchProbabilityInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/MachineCombinerPattern.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/MachineConstantPool.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/MachineDominanceFrontier.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/MachineDominators.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/MachineFrameInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/MachineFunction.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/MachineFunctionPass.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/MachineInstr.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/MachineInstrBuilder.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/MachineInstrBundle.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/MachineInstrBundleIterator.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/MachineJumpTableInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/MachineLoopInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/MachineMemOperand.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/MachineModuleInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/MachineModuleInfoImpls.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/MachineOperand.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/MachineOptimizationRemarkEmitter.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/MachineOutliner.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/MachinePassRegistry.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/MachinePipeliner.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/MachinePostDominators.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/MachineRegionInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/MachineRegisterInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/MachineSSAUpdater.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/MachineScheduler.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/MachineTraceMetrics.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/MacroFusion.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/PBQP/CostAllocator.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/PBQP/Graph.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/PBQP/Math.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/PBQP/ReductionRules.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/PBQP/Solution.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/PBQPRAConstraint.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/ParallelCG.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/Passes.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/PreISelIntrinsicLowering.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/PseudoSourceValue.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/ReachingDefAnalysis.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/RegAllocPBQP.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/RegAllocRegistry.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/Register.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/RegisterClassInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/RegisterPressure.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/RegisterScavenging.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/RegisterUsageInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/ResourcePriorityQueue.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/RuntimeLibcalls.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/SDNodeProperties.td
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/ScheduleDAG.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/ScheduleDAGInstrs.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/ScheduleDAGMutation.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/ScheduleDFS.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/ScheduleHazardRecognizer.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/SchedulerRegistry.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/ScoreboardHazardRecognizer.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/SelectionDAG.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/SelectionDAGAddressAnalysis.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/SelectionDAGISel.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/SelectionDAGNodes.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/SelectionDAGTargetInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/SlotIndexes.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/StackMaps.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/StackProtector.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/SwiftErrorValueTracking.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/SwitchLoweringUtils.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/TailDuplicator.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/TargetCallingConv.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/TargetFrameLowering.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/TargetInstrInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/TargetLowering.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/TargetLoweringObjectFileImpl.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/TargetOpcodes.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/TargetPassConfig.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/TargetRegisterInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/TargetSchedule.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/TargetSubtargetInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/UnreachableBlockElim.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/ValueTypes.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/ValueTypes.td
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/VirtRegMap.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/WasmEHFuncInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/CodeGen/WinEHFuncInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/AppendingTypeTableBuilder.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/CVRecord.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/CVSymbolVisitor.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/CVTypeVisitor.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/CodeView.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/CodeViewError.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/CodeViewRecordIO.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/CodeViewRegisters.def
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/CodeViewSymbols.def
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/CodeViewTypes.def
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/ContinuationRecordBuilder.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/DebugChecksumsSubsection.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/DebugCrossExSubsection.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/DebugCrossImpSubsection.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/DebugFrameDataSubsection.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/DebugInlineeLinesSubsection.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/DebugLinesSubsection.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/DebugStringTableSubsection.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/DebugSubsection.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/DebugSubsectionRecord.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/DebugSubsectionVisitor.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/DebugSymbolRVASubsection.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/DebugSymbolsSubsection.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/DebugUnknownSubsection.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/EnumTables.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/Formatters.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/FunctionId.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/GUID.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/GlobalTypeTableBuilder.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/LazyRandomTypeCollection.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/Line.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/MergingTypeTableBuilder.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/RecordName.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/RecordSerialization.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/SimpleTypeSerializer.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/StringsAndChecksums.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/SymbolDeserializer.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/SymbolDumpDelegate.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/SymbolDumper.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/SymbolRecord.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/SymbolRecordHelpers.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/SymbolRecordMapping.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/SymbolSerializer.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/SymbolVisitorCallbackPipeline.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/SymbolVisitorCallbacks.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/SymbolVisitorDelegate.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeCollection.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeDeserializer.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeDumpVisitor.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeHashing.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeIndex.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeIndexDiscovery.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeRecord.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeRecordHelpers.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeRecordMapping.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeStreamMerger.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeSymbolEmitter.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeTableCollection.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeVisitorCallbackPipeline.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/CodeView/TypeVisitorCallbacks.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/DIContext.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFAbbreviationDeclaration.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFAcceleratorTable.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFAddressRange.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFAttribute.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFCompileUnit.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFContext.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFDataExtractor.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugAbbrev.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugAddr.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugArangeSet.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugAranges.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugFrame.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugInfoEntry.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugLine.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugLoc.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugMacro.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugPubTable.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugRangeList.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugRnglists.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFDie.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFExpression.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFFormValue.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFGdbIndex.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFListTable.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFObject.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFRelocMap.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFSection.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFTypeUnit.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFUnit.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFUnitIndex.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/DWARF/DWARFVerifier.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/GSYM
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/MSF/IMSFFile.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/MSF/MSFBuilder.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/MSF/MSFCommon.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/MSF/MSFError.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/MSF/MappedBlockStream.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/ConcreteSymbolEnumerator.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIADataStream.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIAEnumDebugStreams.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIAEnumFrameData.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIAEnumInjectedSources.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIAEnumLineNumbers.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIAEnumSectionContribs.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIAEnumSourceFiles.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIAEnumSymbols.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIAEnumTables.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIAError.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIAFrameData.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIAInjectedSource.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIALineNumber.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIARawSymbol.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIASectionContrib.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIASession.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIASourceFile.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIASupport.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIATable.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/DIAUtils.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/GenericError.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/IPDBDataStream.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/IPDBEnumChildren.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/IPDBFrameData.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/IPDBInjectedSource.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/IPDBLineNumber.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/IPDBRawSymbol.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/IPDBSectionContrib.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/IPDBSession.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/IPDBSourceFile.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/IPDBTable.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/DbiModuleDescriptor.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/DbiModuleDescriptorBuilder.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/DbiModuleList.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/DbiStream.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/DbiStreamBuilder.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/EnumTables.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/Formatters.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/GSIStreamBuilder.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/GlobalsStream.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/Hash.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/HashTable.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/ISectionContribVisitor.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/InfoStream.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/InfoStreamBuilder.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/InjectedSourceStream.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/ModuleDebugStream.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/NamedStreamMap.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/NativeCompilandSymbol.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/NativeEnumGlobals.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/NativeEnumInjectedSources.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/NativeEnumModules.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/NativeEnumTypes.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/NativeExeSymbol.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/NativeRawSymbol.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/NativeSession.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/NativeSymbolEnumerator.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/NativeTypeArray.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/NativeTypeBuiltin.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/NativeTypeEnum.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/NativeTypeFunctionSig.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/NativeTypePointer.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/NativeTypeTypedef.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/NativeTypeUDT.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/NativeTypeVTShape.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/PDBFile.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/PDBFileBuilder.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/PDBStringTable.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/PDBStringTableBuilder.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/PublicsStream.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/RawConstants.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/RawError.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/RawTypes.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/SymbolCache.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/SymbolStream.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/TpiHashing.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/TpiStream.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/Native/TpiStreamBuilder.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDB.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBContext.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBExtras.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymDumper.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbol.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolAnnotation.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolBlock.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolCompiland.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolCompilandDetails.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolCompilandEnv.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolCustom.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolData.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolExe.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolFunc.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolFuncDebugEnd.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolFuncDebugStart.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolLabel.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolPublicSymbol.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolThunk.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeArray.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeBaseClass.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeBuiltin.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeCustom.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeDimension.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeEnum.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeFriend.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeFunctionArg.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeFunctionSig.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeManaged.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypePointer.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeTypedef.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeUDT.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeVTable.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeVTableShape.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolUnknown.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBSymbolUsingNamespace.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/PDBTypes.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/PDB/UDTLayout.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/Symbolize/DIPrinter.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/Symbolize/SymbolizableModule.h
/freebsd-11-stable/contrib/llvm/include/llvm/DebugInfo/Symbolize/Symbolize.h
/freebsd-11-stable/contrib/llvm/include/llvm/Demangle/Compiler.h
/freebsd-11-stable/contrib/llvm/include/llvm/Demangle/Demangle.h
/freebsd-11-stable/contrib/llvm/include/llvm/Demangle/DemangleConfig.h
/freebsd-11-stable/contrib/llvm/include/llvm/Demangle/ItaniumDemangle.h
/freebsd-11-stable/contrib/llvm/include/llvm/Demangle/MicrosoftDemangle.h
/freebsd-11-stable/contrib/llvm/include/llvm/Demangle/MicrosoftDemangleNodes.h
/freebsd-11-stable/contrib/llvm/include/llvm/Demangle/README.txt
/freebsd-11-stable/contrib/llvm/include/llvm/Demangle/StringView.h
/freebsd-11-stable/contrib/llvm/include/llvm/Demangle/Utility.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/ExecutionEngine.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/GenericValue.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Interpreter.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/JITEventListener.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/JITLink
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/JITSymbol.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/MCJIT.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/OProfileWrapper.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/ObjectCache.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/CompileOnDemandLayer.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/CompileUtils.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/Core.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/ExecutionUtils.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/GlobalMappingLayer.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/IRCompileLayer.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/IRTransformLayer.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/IndirectionUtils.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/JITTargetMachineBuilder.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/LLJIT.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/LambdaResolver.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/Layer.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/LazyEmittingLayer.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/LazyReexports.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/Legacy.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/NullResolver.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/ObjectLinkingLayer.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/ObjectTransformLayer.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/OrcABISupport.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/OrcError.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/OrcRemoteTargetClient.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/OrcRemoteTargetRPCAPI.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/OrcRemoteTargetServer.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/RPCSerialization.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/RPCUtils.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/RTDyldObjectLinkingLayer.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/RawByteChannel.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/RemoteObjectLayer.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/SymbolStringPool.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/Orc/ThreadSafeModule.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/OrcMCJITReplacement.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/OrcV1Deprecation.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/RTDyldMemoryManager.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/RuntimeDyld.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/RuntimeDyldChecker.h
/freebsd-11-stable/contrib/llvm/include/llvm/ExecutionEngine/SectionMemoryManager.h
/freebsd-11-stable/contrib/llvm/include/llvm/FuzzMutate/FuzzerCLI.h
/freebsd-11-stable/contrib/llvm/include/llvm/FuzzMutate/IRMutator.h
/freebsd-11-stable/contrib/llvm/include/llvm/FuzzMutate/OpDescriptor.h
/freebsd-11-stable/contrib/llvm/include/llvm/FuzzMutate/Operations.h
/freebsd-11-stable/contrib/llvm/include/llvm/FuzzMutate/Random.h
/freebsd-11-stable/contrib/llvm/include/llvm/FuzzMutate/RandomIRBuilder.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/Argument.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/AssemblyAnnotationWriter.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/Attributes.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/Attributes.td
/freebsd-11-stable/contrib/llvm/include/llvm/IR/AutoUpgrade.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/BasicBlock.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/CFG.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/CFGDiff.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/CallSite.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/CallingConv.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/Comdat.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/Constant.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/ConstantFolder.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/ConstantRange.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/Constants.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/DIBuilder.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/DataLayout.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/DebugInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/DebugInfoFlags.def
/freebsd-11-stable/contrib/llvm/include/llvm/IR/DebugInfoMetadata.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/DebugLoc.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/DerivedTypes.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/DerivedUser.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/DiagnosticHandler.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/DiagnosticInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/DiagnosticPrinter.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/DomTreeUpdater.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/Dominators.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/Function.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/GVMaterializer.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/GetElementPtrTypeIterator.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/GlobalAlias.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/GlobalIFunc.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/GlobalIndirectSymbol.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/GlobalObject.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/GlobalValue.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/GlobalVariable.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/IRBuilder.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/IRPrintingPasses.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/InlineAsm.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/InstIterator.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/InstVisitor.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/InstrTypes.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/Instruction.def
/freebsd-11-stable/contrib/llvm/include/llvm/IR/Instruction.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/Instructions.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/IntrinsicInst.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/Intrinsics.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/Intrinsics.td
/freebsd-11-stable/contrib/llvm/include/llvm/IR/IntrinsicsAArch64.td
/freebsd-11-stable/contrib/llvm/include/llvm/IR/IntrinsicsAMDGPU.td
/freebsd-11-stable/contrib/llvm/include/llvm/IR/IntrinsicsARM.td
/freebsd-11-stable/contrib/llvm/include/llvm/IR/IntrinsicsBPF.td
/freebsd-11-stable/contrib/llvm/include/llvm/IR/IntrinsicsHexagon.td
/freebsd-11-stable/contrib/llvm/include/llvm/IR/IntrinsicsMips.td
/freebsd-11-stable/contrib/llvm/include/llvm/IR/IntrinsicsNVVM.td
/freebsd-11-stable/contrib/llvm/include/llvm/IR/IntrinsicsPowerPC.td
/freebsd-11-stable/contrib/llvm/include/llvm/IR/IntrinsicsRISCV.td
/freebsd-11-stable/contrib/llvm/include/llvm/IR/IntrinsicsSystemZ.td
/freebsd-11-stable/contrib/llvm/include/llvm/IR/IntrinsicsWebAssembly.td
/freebsd-11-stable/contrib/llvm/include/llvm/IR/IntrinsicsX86.td
/freebsd-11-stable/contrib/llvm/include/llvm/IR/IntrinsicsXCore.td
/freebsd-11-stable/contrib/llvm/include/llvm/IR/LLVMContext.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/LegacyPassManager.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/LegacyPassManagers.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/LegacyPassNameParser.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/MDBuilder.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/Mangler.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/Metadata.def
/freebsd-11-stable/contrib/llvm/include/llvm/IR/Metadata.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/Module.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/ModuleSlotTracker.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/ModuleSummaryIndex.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/ModuleSummaryIndexYAML.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/NoFolder.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/OperandTraits.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/Operator.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/OptBisect.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/PassInstrumentation.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/PassManager.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/PassManagerInternal.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/PassTimingInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/PatternMatch.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/PredIteratorCache.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/ProfileSummary.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/RemarkStreamer.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/RuntimeLibcalls.def
/freebsd-11-stable/contrib/llvm/include/llvm/IR/SafepointIRVerifier.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/Statepoint.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/SymbolTableListTraits.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/TrackingMDRef.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/Type.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/TypeFinder.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/Use.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/UseListOrder.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/User.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/Value.def
/freebsd-11-stable/contrib/llvm/include/llvm/IR/Value.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/ValueHandle.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/ValueMap.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/ValueSymbolTable.h
/freebsd-11-stable/contrib/llvm/include/llvm/IR/Verifier.h
/freebsd-11-stable/contrib/llvm/include/llvm/IRReader/IRReader.h
/freebsd-11-stable/contrib/llvm/include/llvm/InitializePasses.h
/freebsd-11-stable/contrib/llvm/include/llvm/LTO/Caching.h
/freebsd-11-stable/contrib/llvm/include/llvm/LTO/Config.h
/freebsd-11-stable/contrib/llvm/include/llvm/LTO/LTO.h
/freebsd-11-stable/contrib/llvm/include/llvm/LTO/LTOBackend.h
/freebsd-11-stable/contrib/llvm/include/llvm/LTO/SummaryBasedOptimizations.h
/freebsd-11-stable/contrib/llvm/include/llvm/LTO/legacy/LTOCodeGenerator.h
/freebsd-11-stable/contrib/llvm/include/llvm/LTO/legacy/LTOModule.h
/freebsd-11-stable/contrib/llvm/include/llvm/LTO/legacy/ThinLTOCodeGenerator.h
/freebsd-11-stable/contrib/llvm/include/llvm/LTO/legacy/UpdateCompilerUsed.h
/freebsd-11-stable/contrib/llvm/include/llvm/LineEditor/LineEditor.h
/freebsd-11-stable/contrib/llvm/include/llvm/LinkAllIR.h
/freebsd-11-stable/contrib/llvm/include/llvm/LinkAllPasses.h
/freebsd-11-stable/contrib/llvm/include/llvm/Linker/IRMover.h
/freebsd-11-stable/contrib/llvm/include/llvm/Linker/Linker.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/ConstantPools.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/LaneBitmask.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCAnalysis
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCAsmBackend.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCAsmInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCAsmInfoCOFF.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCAsmInfoDarwin.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCAsmInfoELF.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCAsmInfoWasm.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCAsmInfoXCOFF.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCAsmLayout.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCAsmMacro.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCAssembler.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCCodeEmitter.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCCodePadder.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCCodeView.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCContext.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCDirectives.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCDisassembler/MCDisassembler.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCDisassembler/MCExternalSymbolizer.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCDisassembler/MCRelocationInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCDisassembler/MCSymbolizer.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCDwarf.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCELFObjectWriter.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCELFStreamer.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCExpr.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCFixedLenDisassembler.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCFixup.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCFixupKindInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCFragment.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCInst.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCInstBuilder.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCInstPrinter.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCInstrAnalysis.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCInstrDesc.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCInstrInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCInstrItineraries.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCLabel.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCLinkerOptimizationHint.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCMachObjectWriter.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCObjectFileInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCObjectStreamer.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCObjectWriter.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCParser/AsmCond.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCParser/AsmLexer.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCParser/MCAsmLexer.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCParser/MCAsmParser.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCParser/MCAsmParserExtension.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCParser/MCAsmParserUtils.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCParser/MCParsedAsmOperand.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCParser/MCTargetAsmParser.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCRegisterInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCSchedule.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCSection.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCSectionCOFF.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCSectionELF.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCSectionMachO.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCSectionWasm.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCSectionXCOFF.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCStreamer.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCSubtargetInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCSymbol.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCSymbolCOFF.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCSymbolELF.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCSymbolMachO.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCSymbolWasm.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCSymbolXCOFF.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCTargetOptions.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCTargetOptionsCommandFlags.inc
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCValue.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCWasmObjectWriter.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCWasmStreamer.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCWin64EH.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCWinCOFFObjectWriter.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCWinCOFFStreamer.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCWinEH.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCXCOFFObjectWriter.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MCXCOFFStreamer.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/MachineLocation.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/SectionKind.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/StringTableBuilder.h
/freebsd-11-stable/contrib/llvm/include/llvm/MC/SubtargetFeature.h
/freebsd-11-stable/contrib/llvm/include/llvm/MCA/Context.h
/freebsd-11-stable/contrib/llvm/include/llvm/MCA/HWEventListener.h
/freebsd-11-stable/contrib/llvm/include/llvm/MCA/HardwareUnits/HardwareUnit.h
/freebsd-11-stable/contrib/llvm/include/llvm/MCA/HardwareUnits/LSUnit.h
/freebsd-11-stable/contrib/llvm/include/llvm/MCA/HardwareUnits/RegisterFile.h
/freebsd-11-stable/contrib/llvm/include/llvm/MCA/HardwareUnits/ResourceManager.h
/freebsd-11-stable/contrib/llvm/include/llvm/MCA/HardwareUnits/RetireControlUnit.h
/freebsd-11-stable/contrib/llvm/include/llvm/MCA/HardwareUnits/Scheduler.h
/freebsd-11-stable/contrib/llvm/include/llvm/MCA/InstrBuilder.h
/freebsd-11-stable/contrib/llvm/include/llvm/MCA/Instruction.h
/freebsd-11-stable/contrib/llvm/include/llvm/MCA/Pipeline.h
/freebsd-11-stable/contrib/llvm/include/llvm/MCA/SourceMgr.h
/freebsd-11-stable/contrib/llvm/include/llvm/MCA/Stages/DispatchStage.h
/freebsd-11-stable/contrib/llvm/include/llvm/MCA/Stages/EntryStage.h
/freebsd-11-stable/contrib/llvm/include/llvm/MCA/Stages/ExecuteStage.h
/freebsd-11-stable/contrib/llvm/include/llvm/MCA/Stages/InstructionTables.h
/freebsd-11-stable/contrib/llvm/include/llvm/MCA/Stages/MicroOpQueueStage.h
/freebsd-11-stable/contrib/llvm/include/llvm/MCA/Stages/RetireStage.h
/freebsd-11-stable/contrib/llvm/include/llvm/MCA/Stages/Stage.h
/freebsd-11-stable/contrib/llvm/include/llvm/MCA/Support.h
/freebsd-11-stable/contrib/llvm/include/llvm/Object/Archive.h
/freebsd-11-stable/contrib/llvm/include/llvm/Object/ArchiveWriter.h
/freebsd-11-stable/contrib/llvm/include/llvm/Object/Binary.h
/freebsd-11-stable/contrib/llvm/include/llvm/Object/COFF.h
/freebsd-11-stable/contrib/llvm/include/llvm/Object/COFFImportFile.h
/freebsd-11-stable/contrib/llvm/include/llvm/Object/COFFModuleDefinition.h
/freebsd-11-stable/contrib/llvm/include/llvm/Object/CVDebugRecord.h
/freebsd-11-stable/contrib/llvm/include/llvm/Object/Decompressor.h
/freebsd-11-stable/contrib/llvm/include/llvm/Object/ELF.h
/freebsd-11-stable/contrib/llvm/include/llvm/Object/ELFObjectFile.h
/freebsd-11-stable/contrib/llvm/include/llvm/Object/ELFTypes.h
/freebsd-11-stable/contrib/llvm/include/llvm/Object/Error.h
/freebsd-11-stable/contrib/llvm/include/llvm/Object/IRObjectFile.h
/freebsd-11-stable/contrib/llvm/include/llvm/Object/IRSymtab.h
/freebsd-11-stable/contrib/llvm/include/llvm/Object/MachO.h
/freebsd-11-stable/contrib/llvm/include/llvm/Object/MachOUniversal.h
/freebsd-11-stable/contrib/llvm/include/llvm/Object/Minidump.h
/freebsd-11-stable/contrib/llvm/include/llvm/Object/ModuleSymbolTable.h
/freebsd-11-stable/contrib/llvm/include/llvm/Object/ObjectFile.h
/freebsd-11-stable/contrib/llvm/include/llvm/Object/RelocVisitor.h
/freebsd-11-stable/contrib/llvm/include/llvm/Object/RelocationResolver.h
/freebsd-11-stable/contrib/llvm/include/llvm/Object/StackMapParser.h
/freebsd-11-stable/contrib/llvm/include/llvm/Object/SymbolSize.h
/freebsd-11-stable/contrib/llvm/include/llvm/Object/SymbolicFile.h
/freebsd-11-stable/contrib/llvm/include/llvm/Object/Wasm.h
/freebsd-11-stable/contrib/llvm/include/llvm/Object/WasmTraits.h
/freebsd-11-stable/contrib/llvm/include/llvm/Object/WindowsMachineFlag.h
/freebsd-11-stable/contrib/llvm/include/llvm/Object/WindowsResource.h
/freebsd-11-stable/contrib/llvm/include/llvm/Object/XCOFFObjectFile.h
/freebsd-11-stable/contrib/llvm/include/llvm/ObjectYAML/COFFYAML.h
/freebsd-11-stable/contrib/llvm/include/llvm/ObjectYAML/CodeViewYAMLDebugSections.h
/freebsd-11-stable/contrib/llvm/include/llvm/ObjectYAML/CodeViewYAMLSymbols.h
/freebsd-11-stable/contrib/llvm/include/llvm/ObjectYAML/CodeViewYAMLTypeHashing.h
/freebsd-11-stable/contrib/llvm/include/llvm/ObjectYAML/CodeViewYAMLTypes.h
/freebsd-11-stable/contrib/llvm/include/llvm/ObjectYAML/DWARFEmitter.h
/freebsd-11-stable/contrib/llvm/include/llvm/ObjectYAML/DWARFYAML.h
/freebsd-11-stable/contrib/llvm/include/llvm/ObjectYAML/ELFYAML.h
/freebsd-11-stable/contrib/llvm/include/llvm/ObjectYAML/MachOYAML.h
/freebsd-11-stable/contrib/llvm/include/llvm/ObjectYAML/MinidumpYAML.h
/freebsd-11-stable/contrib/llvm/include/llvm/ObjectYAML/ObjectYAML.h
/freebsd-11-stable/contrib/llvm/include/llvm/ObjectYAML/WasmYAML.h
/freebsd-11-stable/contrib/llvm/include/llvm/ObjectYAML/XCOFFYAML.h
/freebsd-11-stable/contrib/llvm/include/llvm/ObjectYAML/YAML.h
/freebsd-11-stable/contrib/llvm/include/llvm/Option/Arg.h
/freebsd-11-stable/contrib/llvm/include/llvm/Option/ArgList.h
/freebsd-11-stable/contrib/llvm/include/llvm/Option/OptParser.td
/freebsd-11-stable/contrib/llvm/include/llvm/Option/OptSpecifier.h
/freebsd-11-stable/contrib/llvm/include/llvm/Option/OptTable.h
/freebsd-11-stable/contrib/llvm/include/llvm/Option/Option.h
/freebsd-11-stable/contrib/llvm/include/llvm/Pass.h
/freebsd-11-stable/contrib/llvm/include/llvm/PassAnalysisSupport.h
/freebsd-11-stable/contrib/llvm/include/llvm/PassInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/PassRegistry.h
/freebsd-11-stable/contrib/llvm/include/llvm/PassSupport.h
/freebsd-11-stable/contrib/llvm/include/llvm/Passes/PassBuilder.h
/freebsd-11-stable/contrib/llvm/include/llvm/Passes/PassPlugin.h
/freebsd-11-stable/contrib/llvm/include/llvm/Passes/StandardInstrumentations.h
/freebsd-11-stable/contrib/llvm/include/llvm/ProfileData/Coverage/CoverageMapping.h
/freebsd-11-stable/contrib/llvm/include/llvm/ProfileData/Coverage/CoverageMappingReader.h
/freebsd-11-stable/contrib/llvm/include/llvm/ProfileData/Coverage/CoverageMappingWriter.h
/freebsd-11-stable/contrib/llvm/include/llvm/ProfileData/GCOV.h
/freebsd-11-stable/contrib/llvm/include/llvm/ProfileData/InstrProf.h
/freebsd-11-stable/contrib/llvm/include/llvm/ProfileData/InstrProfData.inc
/freebsd-11-stable/contrib/llvm/include/llvm/ProfileData/InstrProfReader.h
/freebsd-11-stable/contrib/llvm/include/llvm/ProfileData/InstrProfWriter.h
/freebsd-11-stable/contrib/llvm/include/llvm/ProfileData/ProfileCommon.h
/freebsd-11-stable/contrib/llvm/include/llvm/ProfileData/SampleProf.h
/freebsd-11-stable/contrib/llvm/include/llvm/ProfileData/SampleProfReader.h
/freebsd-11-stable/contrib/llvm/include/llvm/ProfileData/SampleProfWriter.h
/freebsd-11-stable/contrib/llvm/include/llvm/Remarks
/freebsd-11-stable/contrib/llvm/include/llvm/Support/AArch64TargetParser.def
/freebsd-11-stable/contrib/llvm/include/llvm/Support/AArch64TargetParser.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/AMDGPUMetadata.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/AMDHSAKernelDescriptor.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/ARMAttributeParser.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/ARMBuildAttributes.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/ARMEHABI.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/ARMTargetParser.def
/freebsd-11-stable/contrib/llvm/include/llvm/Support/ARMTargetParser.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/ARMWinEH.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/AlignOf.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Allocator.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/ArrayRecycler.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Atomic.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/AtomicOrdering.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/BinaryByteStream.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/BinaryItemStream.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/BinaryStream.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/BinaryStreamArray.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/BinaryStreamError.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/BinaryStreamReader.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/BinaryStreamRef.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/BinaryStreamWriter.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/BlockFrequency.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/BranchProbability.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/BuryPointer.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/CBindingWrapping.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/CFGUpdate.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/COM.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/CRC.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/CachePruning.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Capacity.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Casting.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/CheckedArithmetic.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Chrono.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/CodeGen.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/CodeGenCoverage.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/CommandLine.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Compiler.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Compression.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/ConvertUTF.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/CrashRecoveryContext.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/DJB.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/DOTGraphTraits.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/DataExtractor.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/DataTypes.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Debug.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/DebugCounter.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/DynamicLibrary.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Endian.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/EndianStream.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Errc.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Errno.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Error.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/ErrorHandling.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/ErrorOr.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/FileCheck.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/FileOutputBuffer.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/FileSystem.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/FileUtilities.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Format.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/FormatAdapters.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/FormatCommon.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/FormatProviders.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/FormatVariadic.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/FormatVariadicDetails.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/FormattedStream.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/GenericDomTree.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/GenericDomTreeConstruction.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/GenericIteratedDominanceFrontier.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/GlobPattern.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/GraphWriter.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Host.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/InitLLVM.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/ItaniumManglingCanonicalizer.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/JSON.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/JamCRC.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/KnownBits.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/LEB128.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/LineIterator.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/LockFileManager.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/LowLevelTypeImpl.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/MSVCErrorWorkarounds.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/MachineValueType.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/ManagedStatic.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/MathExtras.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/MemAlloc.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Memory.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/MemoryBuffer.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/MipsABIFlags.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Mutex.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/MutexGuard.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/NativeFormatting.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/OnDiskHashTable.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Options.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Parallel.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Path.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/PluginLoader.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/PointerLikeTypeTraits.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/PrettyStackTrace.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Printable.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Process.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Program.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/RWMutex.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/RandomNumberGenerator.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Recycler.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/RecyclingAllocator.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Regex.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Registry.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/SHA1.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/SMLoc.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/SMTAPI.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/SaveAndRestore.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/ScalableSize.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/ScaledNumber.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/ScopedPrinter.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Signals.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Signposts.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/SmallVectorMemoryBuffer.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Solaris/sys/regset.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/SourceMgr.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/SpecialCaseList.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/StringPool.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/StringSaver.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/SwapByteOrder.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/SymbolRemappingReader.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/SystemUtils.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/TarWriter.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/TargetOpcodes.def
/freebsd-11-stable/contrib/llvm/include/llvm/Support/TargetParser.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/TargetRegistry.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/TargetSelect.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/TaskQueue.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/ThreadLocal.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/ThreadPool.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Threading.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/TimeProfiler.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Timer.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/ToolOutputFile.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/TrailingObjects.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/TrigramIndex.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/TypeName.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Unicode.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/UnicodeCharRanges.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/UniqueLock.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Valgrind.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/VersionTuple.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/VirtualFileSystem.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Watchdog.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/Win64EH.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/WindowsError.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/WithColor.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/X86DisassemblerDecoderCommon.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/X86TargetParser.def
/freebsd-11-stable/contrib/llvm/include/llvm/Support/YAMLParser.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/YAMLTraits.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/circular_raw_ostream.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/raw_os_ostream.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/raw_ostream.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/raw_sha1_ostream.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/thread.h
/freebsd-11-stable/contrib/llvm/include/llvm/Support/type_traits.h
/freebsd-11-stable/contrib/llvm/include/llvm/TableGen/Error.h
/freebsd-11-stable/contrib/llvm/include/llvm/TableGen/Main.h
/freebsd-11-stable/contrib/llvm/include/llvm/TableGen/Record.h
/freebsd-11-stable/contrib/llvm/include/llvm/TableGen/SearchableTable.td
/freebsd-11-stable/contrib/llvm/include/llvm/TableGen/SetTheory.h
/freebsd-11-stable/contrib/llvm/include/llvm/TableGen/StringMatcher.h
/freebsd-11-stable/contrib/llvm/include/llvm/TableGen/StringToOffsetTable.h
/freebsd-11-stable/contrib/llvm/include/llvm/TableGen/TableGenBackend.h
/freebsd-11-stable/contrib/llvm/include/llvm/Target/CodeGenCWrappers.h
/freebsd-11-stable/contrib/llvm/include/llvm/Target/GenericOpcodes.td
/freebsd-11-stable/contrib/llvm/include/llvm/Target/GlobalISel/RegisterBank.td
/freebsd-11-stable/contrib/llvm/include/llvm/Target/GlobalISel/SelectionDAGCompat.td
/freebsd-11-stable/contrib/llvm/include/llvm/Target/GlobalISel/Target.td
/freebsd-11-stable/contrib/llvm/include/llvm/Target/Target.td
/freebsd-11-stable/contrib/llvm/include/llvm/Target/TargetCallingConv.td
/freebsd-11-stable/contrib/llvm/include/llvm/Target/TargetInstrPredicate.td
/freebsd-11-stable/contrib/llvm/include/llvm/Target/TargetIntrinsicInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/Target/TargetItinerary.td
/freebsd-11-stable/contrib/llvm/include/llvm/Target/TargetLoweringObjectFile.h
/freebsd-11-stable/contrib/llvm/include/llvm/Target/TargetMachine.h
/freebsd-11-stable/contrib/llvm/include/llvm/Target/TargetOptions.h
/freebsd-11-stable/contrib/llvm/include/llvm/Target/TargetPfmCounters.td
/freebsd-11-stable/contrib/llvm/include/llvm/Target/TargetSchedule.td
/freebsd-11-stable/contrib/llvm/include/llvm/Target/TargetSelectionDAG.td
/freebsd-11-stable/contrib/llvm/include/llvm/Testing/Support/Annotations.h
/freebsd-11-stable/contrib/llvm/include/llvm/Testing/Support/Error.h
/freebsd-11-stable/contrib/llvm/include/llvm/Testing/Support/SupportHelpers.h
/freebsd-11-stable/contrib/llvm/include/llvm/TextAPI/ELF/ELFStub.h
/freebsd-11-stable/contrib/llvm/include/llvm/TextAPI/ELF/TBEHandler.h
/freebsd-11-stable/contrib/llvm/include/llvm/TextAPI/MachO
/freebsd-11-stable/contrib/llvm/include/llvm/ToolDrivers/llvm-dlltool/DlltoolDriver.h
/freebsd-11-stable/contrib/llvm/include/llvm/ToolDrivers/llvm-lib/LibDriver.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/AggressiveInstCombine/AggressiveInstCombine.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Coroutines.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/IPO.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/IPO/AlwaysInliner.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/IPO/ArgumentPromotion.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/IPO/Attributor.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/IPO/CalledValuePropagation.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/IPO/ConstantMerge.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/IPO/CrossDSOCFI.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/IPO/DeadArgumentElimination.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/IPO/ElimAvailExtern.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/IPO/ForceFunctionAttrs.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/IPO/FunctionAttrs.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/IPO/FunctionImport.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/IPO/GlobalDCE.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/IPO/GlobalOpt.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/IPO/GlobalSplit.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/IPO/HotColdSplitting.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/IPO/InferFunctionAttrs.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/IPO/Inliner.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/IPO/Internalize.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/IPO/LowerTypeTests.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/IPO/PartialInlining.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/IPO/PassManagerBuilder.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/IPO/SCCP.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/IPO/SampleProfile.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/IPO/StripDeadPrototypes.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/IPO/ThinLTOBitcodeWriter.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/IPO/WholeProgramDevirt.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/InstCombine/InstCombine.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/InstCombine/InstCombineWorklist.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Instrumentation.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Instrumentation/AddressSanitizer.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Instrumentation/BoundsChecking.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Instrumentation/CGProfile.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Instrumentation/ControlHeightReduction.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Instrumentation/GCOVProfiler.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Instrumentation/HWAddressSanitizer.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Instrumentation/InstrOrderFile.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Instrumentation/InstrProfiling.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Instrumentation/MemorySanitizer.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Instrumentation/PGOInstrumentation.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Instrumentation/PoisonChecking.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Instrumentation/ThreadSanitizer.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/ObjCARC.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/ADCE.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/AlignmentFromAssumptions.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/BDCE.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/CallSiteSplitting.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/ConstantHoisting.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/CorrelatedValuePropagation.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/DCE.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/DeadStoreElimination.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/DivRemPairs.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/EarlyCSE.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/Float2Int.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/GVN.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/GVNExpression.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/GuardWidening.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/IVUsersPrinter.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/IndVarSimplify.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/InductiveRangeCheckElimination.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/InstSimplifyPass.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/JumpThreading.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/LICM.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/LoopAccessAnalysisPrinter.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/LoopDataPrefetch.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/LoopDeletion.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/LoopDistribute.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/LoopFuse.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/LoopIdiomRecognize.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/LoopInstSimplify.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/LoopLoadElimination.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/LoopPassManager.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/LoopPredication.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/LoopRotation.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/LoopSimplifyCFG.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/LoopSink.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/LoopStrengthReduce.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/LoopUnrollAndJamPass.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/LoopUnrollPass.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/LowerAtomic.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/LowerExpectIntrinsic.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/LowerGuardIntrinsic.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/LowerWidenableCondition.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/MakeGuardsExplicit.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/MemCpyOptimizer.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/MergeICmps.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/MergedLoadStoreMotion.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/NaryReassociate.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/NewGVN.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/PartiallyInlineLibCalls.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/Reassociate.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/RewriteStatepointsForGC.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/SCCP.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/SROA.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/Scalarizer.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/SimpleLoopUnswitch.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/SimplifyCFG.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/Sink.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/SpeculateAroundPHIs.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/SpeculativeExecution.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/TailRecursionElimination.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Scalar/WarnMissedTransforms.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/ASanStackFrameLayout.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/AddDiscriminators.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/BasicBlockUtils.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/BreakCriticalEdges.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/BuildLibCalls.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/BypassSlowDivision.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/CallPromotionUtils.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/CanonicalizeAliases.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/Cloning.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/CodeExtractor.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/CtorUtils.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/EntryExitInstrumenter.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/EscapeEnumerator.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/Evaluator.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/FunctionComparator.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/FunctionImportUtils.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/GlobalStatus.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/GuardUtils.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/ImportedFunctionsInliningStatistics.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/IntegerDivision.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/LCSSA.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/LibCallsShrinkWrap.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/Local.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/LoopRotationUtils.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/LoopSimplify.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/LoopUtils.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/LoopVersioning.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/LowerInvoke.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/LowerMemIntrinsics.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/Mem2Reg.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/ModuleUtils.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/NameAnonGlobals.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/PredicateInfo.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/PromoteMemToReg.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/SSAUpdater.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/SSAUpdaterBulk.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/SSAUpdaterImpl.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/SanitizerStats.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/SimplifyIndVar.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/SimplifyLibCalls.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/SizeOpts.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/SplitModule.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/SymbolRewriter.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/UnifyFunctionExitNodes.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/UnrollLoop.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/VNCoercion.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Utils/ValueMapper.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Vectorize.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Vectorize/LoadStoreVectorizer.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Vectorize/LoopVectorizationLegality.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Vectorize/LoopVectorize.h
/freebsd-11-stable/contrib/llvm/include/llvm/Transforms/Vectorize/SLPVectorizer.h
/freebsd-11-stable/contrib/llvm/include/llvm/WindowsManifest/WindowsManifestMerger.h
/freebsd-11-stable/contrib/llvm/include/llvm/WindowsResource/ResourceProcessor.h
/freebsd-11-stable/contrib/llvm/include/llvm/WindowsResource/ResourceScriptToken.h
/freebsd-11-stable/contrib/llvm/include/llvm/WindowsResource/ResourceScriptTokenList.h
/freebsd-11-stable/contrib/llvm/include/llvm/XRay/BlockIndexer.h
/freebsd-11-stable/contrib/llvm/include/llvm/XRay/BlockPrinter.h
/freebsd-11-stable/contrib/llvm/include/llvm/XRay/BlockVerifier.h
/freebsd-11-stable/contrib/llvm/include/llvm/XRay/FDRLogBuilder.h
/freebsd-11-stable/contrib/llvm/include/llvm/XRay/FDRRecordConsumer.h
/freebsd-11-stable/contrib/llvm/include/llvm/XRay/FDRRecordProducer.h
/freebsd-11-stable/contrib/llvm/include/llvm/XRay/FDRRecords.h
/freebsd-11-stable/contrib/llvm/include/llvm/XRay/FDRTraceExpander.h
/freebsd-11-stable/contrib/llvm/include/llvm/XRay/FDRTraceWriter.h
/freebsd-11-stable/contrib/llvm/include/llvm/XRay/FileHeaderReader.h
/freebsd-11-stable/contrib/llvm/include/llvm/XRay/Graph.h
/freebsd-11-stable/contrib/llvm/include/llvm/XRay/InstrumentationMap.h
/freebsd-11-stable/contrib/llvm/include/llvm/XRay/Profile.h
/freebsd-11-stable/contrib/llvm/include/llvm/XRay/RecordPrinter.h
/freebsd-11-stable/contrib/llvm/include/llvm/XRay/Trace.h
/freebsd-11-stable/contrib/llvm/include/llvm/XRay/XRayRecord.h
/freebsd-11-stable/contrib/llvm/include/llvm/XRay/YAMLXRayRecord.h
/freebsd-11-stable/contrib/llvm/include/llvm/module.modulemap
/freebsd-11-stable/contrib/llvm/lib/Analysis/AliasAnalysis.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/AliasAnalysisEvaluator.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/AliasAnalysisSummary.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/AliasAnalysisSummary.h
/freebsd-11-stable/contrib/llvm/lib/Analysis/AliasSetTracker.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/Analysis.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/AssumptionCache.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/BasicAliasAnalysis.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/BlockFrequencyInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/BlockFrequencyInfoImpl.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/BranchProbabilityInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/CFG.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/CFGPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/CFLAndersAliasAnalysis.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/CFLGraph.h
/freebsd-11-stable/contrib/llvm/lib/Analysis/CFLSteensAliasAnalysis.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/CGSCCPassManager.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/CallGraph.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/CallGraphSCCPass.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/CallPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/CaptureTracking.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/CmpInstAnalysis.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/CodeMetrics.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/ConstantFolding.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/CostModel.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/Delinearization.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/DemandedBits.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/DependenceAnalysis.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/DivergenceAnalysis.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/DomPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/DomTreeUpdater.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/DominanceFrontier.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/EHPersonalities.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/GlobalsModRef.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/GuardUtils.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/IVDescriptors.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/IVUsers.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/IndirectCallPromotionAnalysis.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/InlineCost.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/InstCount.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/InstructionPrecedenceTracking.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/InstructionSimplify.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/Interval.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/IntervalPartition.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/IteratedDominanceFrontier.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/LazyBlockFrequencyInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/LazyBranchProbabilityInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/LazyCallGraph.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/LazyValueInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/LegacyDivergenceAnalysis.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/Lint.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/Loads.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/LoopAccessAnalysis.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/LoopAnalysisManager.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/LoopInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/LoopPass.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/LoopUnrollAnalyzer.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/MemDepPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/MemDerefPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/MemoryBuiltins.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/MemoryDependenceAnalysis.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/MemoryLocation.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/MemorySSA.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/MemorySSAUpdater.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/ModuleDebugInfoPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/ModuleSummaryAnalysis.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/MustExecute.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/ObjCARCAliasAnalysis.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/ObjCARCAnalysisUtils.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/ObjCARCInstKind.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/OptimizationRemarkEmitter.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/OrderedBasicBlock.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/OrderedInstructions.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/PHITransAddr.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/PhiValues.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/PostDominators.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/ProfileSummaryInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/PtrUseVisitor.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/RegionInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/RegionPass.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/RegionPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/ScalarEvolution.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/ScalarEvolutionAliasAnalysis.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/ScalarEvolutionExpander.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/ScalarEvolutionNormalization.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/ScopedNoAliasAA.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/StackSafetyAnalysis.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/StratifiedSets.h
/freebsd-11-stable/contrib/llvm/lib/Analysis/SyncDependenceAnalysis.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/SyntheticCountsUtils.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/TargetLibraryInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/TargetTransformInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/Trace.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/TypeBasedAliasAnalysis.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/TypeMetadataUtils.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/ValueLattice.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/ValueLatticeUtils.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/ValueTracking.cpp
/freebsd-11-stable/contrib/llvm/lib/Analysis/VectorUtils.cpp
/freebsd-11-stable/contrib/llvm/lib/AsmParser/LLLexer.cpp
/freebsd-11-stable/contrib/llvm/lib/AsmParser/LLLexer.h
/freebsd-11-stable/contrib/llvm/lib/AsmParser/LLParser.cpp
/freebsd-11-stable/contrib/llvm/lib/AsmParser/LLParser.h
/freebsd-11-stable/contrib/llvm/lib/AsmParser/LLToken.h
/freebsd-11-stable/contrib/llvm/lib/AsmParser/Parser.cpp
/freebsd-11-stable/contrib/llvm/lib/BinaryFormat/AMDGPUMetadataVerifier.cpp
/freebsd-11-stable/contrib/llvm/lib/BinaryFormat/Dwarf.cpp
/freebsd-11-stable/contrib/llvm/lib/BinaryFormat/Magic.cpp
/freebsd-11-stable/contrib/llvm/lib/BinaryFormat/Minidump.cpp
/freebsd-11-stable/contrib/llvm/lib/BinaryFormat/MsgPackDocument.cpp
/freebsd-11-stable/contrib/llvm/lib/BinaryFormat/MsgPackDocumentYAML.cpp
/freebsd-11-stable/contrib/llvm/lib/BinaryFormat/MsgPackReader.cpp
/freebsd-11-stable/contrib/llvm/lib/BinaryFormat/MsgPackTypes.cpp
/freebsd-11-stable/contrib/llvm/lib/BinaryFormat/MsgPackWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/BinaryFormat/Wasm.cpp
/freebsd-11-stable/contrib/llvm/lib/Bitcode/Reader/BitReader.cpp
/freebsd-11-stable/contrib/llvm/lib/Bitcode/Reader/BitcodeAnalyzer.cpp
/freebsd-11-stable/contrib/llvm/lib/Bitcode/Reader/BitcodeReader.cpp
/freebsd-11-stable/contrib/llvm/lib/Bitcode/Reader/BitstreamReader.cpp
/freebsd-11-stable/contrib/llvm/lib/Bitcode/Reader/MetadataLoader.cpp
/freebsd-11-stable/contrib/llvm/lib/Bitcode/Reader/MetadataLoader.h
/freebsd-11-stable/contrib/llvm/lib/Bitcode/Reader/ValueList.cpp
/freebsd-11-stable/contrib/llvm/lib/Bitcode/Reader/ValueList.h
/freebsd-11-stable/contrib/llvm/lib/Bitcode/Writer/BitWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/Bitcode/Writer/BitcodeWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/Bitcode/Writer/BitcodeWriterPass.cpp
/freebsd-11-stable/contrib/llvm/lib/Bitcode/Writer/ValueEnumerator.cpp
/freebsd-11-stable/contrib/llvm/lib/Bitcode/Writer/ValueEnumerator.h
/freebsd-11-stable/contrib/llvm/lib/Bitstream
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AggressiveAntiDepBreaker.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AggressiveAntiDepBreaker.h
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AllocationOrder.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AllocationOrder.h
/freebsd-11-stable/contrib/llvm/lib/CodeGen/Analysis.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AntiDepBreaker.h
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/ARMException.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/AccelTable.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/AddressPool.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/AddressPool.h
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/AsmPrinterDwarf.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/AsmPrinterInlineAsm.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/ByteStreamer.h
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.h
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/DIE.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/DIEHash.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/DIEHash.h
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/DbgEntityHistoryCalculator.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/DebugHandlerBase.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/DebugLocEntry.h
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/DebugLocStream.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/DebugLocStream.h
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfCFIException.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.h
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfException.h
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfExpression.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfExpression.h
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfFile.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfFile.h
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfStringPool.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfStringPool.h
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfUnit.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfUnit.h
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/EHStreamer.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/EHStreamer.h
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/ErlangGCPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/OcamlGCPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/WasmException.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/WasmException.h
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/WinCFGuard.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/WinCFGuard.h
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/WinException.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AsmPrinter/WinException.h
/freebsd-11-stable/contrib/llvm/lib/CodeGen/AtomicExpandPass.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/BasicTargetTransformInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/BranchFolding.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/BranchFolding.h
/freebsd-11-stable/contrib/llvm/lib/CodeGen/BranchRelaxation.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/BreakFalseDeps.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/BuiltinGCs.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/CFIInstrInserter.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/CalcSpillWeights.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/CallingConvLower.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/CodeGen.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/CodeGenPrepare.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/CriticalAntiDepBreaker.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/CriticalAntiDepBreaker.h
/freebsd-11-stable/contrib/llvm/lib/CodeGen/DFAPacketizer.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/DeadMachineInstructionElim.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/DetectDeadLanes.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/DwarfEHPrepare.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/EarlyIfConversion.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/EdgeBundles.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/ExecutionDomainFix.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/ExpandISelPseudos.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/ExpandMemCmp.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/ExpandPostRAPseudos.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/ExpandReductions.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/FEntryInserter.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/FaultMaps.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/FinalizeISel.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/FuncletLayout.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/GCMetadata.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/GCMetadataPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/GCRootLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/GCStrategy.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/GlobalISel/CSEInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/GlobalISel/CSEMIRBuilder.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/GlobalISel/CallLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/GlobalISel/Combiner.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/GlobalISel/CombinerHelper.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/GlobalISel/GISelChangeObserver.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/GlobalISel/GlobalISel.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/GlobalISel/IRTranslator.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/GlobalISel/InstructionSelect.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/GlobalISel/InstructionSelector.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/GlobalISel/LegalityPredicates.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/GlobalISel/LegalizeMutations.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/GlobalISel/Legalizer.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/GlobalISel/LegalizerHelper.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/GlobalISel/LegalizerInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/GlobalISel/Localizer.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/GlobalISel/MachineIRBuilder.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/GlobalISel/RegBankSelect.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/GlobalISel/RegisterBank.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/GlobalISel/RegisterBankInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/GlobalISel/Utils.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/GlobalMerge.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/HardwareLoops.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/IfConversion.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/ImplicitNullChecks.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/IndirectBrExpandPass.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/InlineSpiller.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/InterferenceCache.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/InterferenceCache.h
/freebsd-11-stable/contrib/llvm/lib/CodeGen/InterleavedAccessPass.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/InterleavedLoadCombinePass.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/IntrinsicLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/LLVMTargetMachine.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/LatencyPriorityQueue.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/LazyMachineBlockFrequencyInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/LexicalScopes.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/LiveDebugValues.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/LiveDebugVariables.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/LiveDebugVariables.h
/freebsd-11-stable/contrib/llvm/lib/CodeGen/LiveInterval.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/LiveIntervalUnion.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/LiveIntervals.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/LivePhysRegs.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/LiveRangeCalc.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/LiveRangeCalc.h
/freebsd-11-stable/contrib/llvm/lib/CodeGen/LiveRangeEdit.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/LiveRangeShrink.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/LiveRangeUtils.h
/freebsd-11-stable/contrib/llvm/lib/CodeGen/LiveRegMatrix.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/LiveRegUnits.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/LiveStacks.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/LiveVariables.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/LocalStackSlotAllocation.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/LoopTraversal.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/LowLevelType.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/LowerEmuTLS.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/MIRCanonicalizerPass.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/MIRParser/MILexer.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/MIRParser/MILexer.h
/freebsd-11-stable/contrib/llvm/lib/CodeGen/MIRParser/MIParser.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/MIRParser/MIParser.h
/freebsd-11-stable/contrib/llvm/lib/CodeGen/MIRParser/MIRParser.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/MIRPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/MIRPrintingPass.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/MachineBasicBlock.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/MachineBlockFrequencyInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/MachineBlockPlacement.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/MachineBranchProbabilityInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/MachineCSE.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/MachineCombiner.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/MachineCopyPropagation.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/MachineDominanceFrontier.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/MachineDominators.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/MachineFrameInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/MachineFunction.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/MachineFunctionPass.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/MachineFunctionPrinterPass.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/MachineInstr.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/MachineInstrBundle.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/MachineLICM.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/MachineLoopInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/MachineModuleInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/MachineModuleInfoImpls.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/MachineOperand.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/MachineOptimizationRemarkEmitter.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/MachineOutliner.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/MachinePipeliner.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/MachinePostDominators.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/MachineRegionInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/MachineRegisterInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/MachineSSAUpdater.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/MachineScheduler.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/MachineSink.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/MachineTraceMetrics.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/MachineVerifier.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/MacroFusion.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/OptimizePHIs.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/PHIElimination.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/PHIEliminationUtils.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/PHIEliminationUtils.h
/freebsd-11-stable/contrib/llvm/lib/CodeGen/ParallelCG.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/PatchableFunction.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/PeepholeOptimizer.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/PostRAHazardRecognizer.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/PostRASchedulerList.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/PreISelIntrinsicLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/ProcessImplicitDefs.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/PrologEpilogInserter.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/PseudoSourceValue.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/ReachingDefAnalysis.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/RegAllocBase.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/RegAllocBase.h
/freebsd-11-stable/contrib/llvm/lib/CodeGen/RegAllocBasic.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/RegAllocFast.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/RegAllocGreedy.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/RegAllocPBQP.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/RegUsageInfoCollector.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/RegUsageInfoPropagate.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/RegisterClassInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/RegisterCoalescer.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/RegisterCoalescer.h
/freebsd-11-stable/contrib/llvm/lib/CodeGen/RegisterPressure.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/RegisterScavenging.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/RegisterUsageInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/RenameIndependentSubregs.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/ResetMachineFunctionPass.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/SafeStack.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/SafeStackColoring.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/SafeStackColoring.h
/freebsd-11-stable/contrib/llvm/lib/CodeGen/SafeStackLayout.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/SafeStackLayout.h
/freebsd-11-stable/contrib/llvm/lib/CodeGen/ScalarizeMaskedMemIntrin.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/ScheduleDAG.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/ScheduleDAGInstrs.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/ScheduleDAGPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/ScoreboardHazardRecognizer.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/SelectionDAG/FastISel.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/SelectionDAG/FunctionLoweringInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/SelectionDAG/InstrEmitter.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/SelectionDAG/InstrEmitter.h
/freebsd-11-stable/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeFloatTypes.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeIntegerTypes.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeTypes.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeTypes.h
/freebsd-11-stable/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeTypesGeneric.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeVectorOps.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeVectorTypes.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/SelectionDAG/ResourcePriorityQueue.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/SelectionDAG/SDNodeDbgValue.h
/freebsd-11-stable/contrib/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGFast.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGSDNodes.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGSDNodes.h
/freebsd-11-stable/contrib/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGVLIW.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAGAddressAnalysis.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h
/freebsd-11-stable/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAGDumper.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAGTargetInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/SelectionDAG/StatepointLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/SelectionDAG/StatepointLowering.h
/freebsd-11-stable/contrib/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/ShadowStackGCLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/ShrinkWrap.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/SjLjEHPrepare.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/SlotIndexes.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/SpillPlacement.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/SpillPlacement.h
/freebsd-11-stable/contrib/llvm/lib/CodeGen/Spiller.h
/freebsd-11-stable/contrib/llvm/lib/CodeGen/SplitKit.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/SplitKit.h
/freebsd-11-stable/contrib/llvm/lib/CodeGen/StackColoring.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/StackMapLivenessAnalysis.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/StackMaps.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/StackProtector.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/StackSlotColoring.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/SwiftErrorValueTracking.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/SwitchLoweringUtils.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/TailDuplication.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/TailDuplicator.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/TargetFrameLoweringImpl.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/TargetInstrInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/TargetLoweringBase.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/TargetLoweringObjectFileImpl.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/TargetOptionsImpl.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/TargetPassConfig.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/TargetRegisterInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/TargetSchedule.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/TargetSubtargetInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/TwoAddressInstructionPass.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/UnreachableBlockElim.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/ValueTypes.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/VirtRegMap.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/WasmEHPrepare.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/WinEHPrepare.cpp
/freebsd-11-stable/contrib/llvm/lib/CodeGen/XRayInstrumentation.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/AppendingTypeTableBuilder.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/CVSymbolVisitor.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/CVTypeVisitor.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/CodeViewError.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/CodeViewRecordIO.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/ContinuationRecordBuilder.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/DebugChecksumsSubsection.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/DebugCrossExSubsection.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/DebugCrossImpSubsection.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/DebugFrameDataSubsection.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/DebugInlineeLinesSubsection.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/DebugLinesSubsection.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/DebugStringTableSubsection.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/DebugSubsection.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/DebugSubsectionRecord.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/DebugSubsectionVisitor.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/DebugSymbolRVASubsection.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/DebugSymbolsSubsection.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/EnumTables.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/Formatters.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/GlobalTypeTableBuilder.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/LazyRandomTypeCollection.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/Line.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/MergingTypeTableBuilder.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/RecordName.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/RecordSerialization.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/SimpleTypeSerializer.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/StringsAndChecksums.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/SymbolDumper.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/SymbolRecordHelpers.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/SymbolRecordMapping.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/SymbolSerializer.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/TypeDumpVisitor.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/TypeHashing.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/TypeIndex.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/TypeIndexDiscovery.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/TypeRecordHelpers.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/TypeRecordMapping.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/TypeStreamMerger.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/CodeView/TypeTableCollection.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/DWARF/DWARFAbbreviationDeclaration.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/DWARF/DWARFAcceleratorTable.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/DWARF/DWARFAddressRange.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/DWARF/DWARFCompileUnit.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/DWARF/DWARFContext.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/DWARF/DWARFDataExtractor.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/DWARF/DWARFDebugAbbrev.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/DWARF/DWARFDebugAddr.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/DWARF/DWARFDebugArangeSet.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/DWARF/DWARFDebugAranges.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/DWARF/DWARFDebugFrame.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/DWARF/DWARFDebugInfoEntry.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/DWARF/DWARFDebugLine.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/DWARF/DWARFDebugLoc.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/DWARF/DWARFDebugMacro.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/DWARF/DWARFDebugPubTable.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/DWARF/DWARFDebugRangeList.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/DWARF/DWARFDebugRnglists.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/DWARF/DWARFDie.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/DWARF/DWARFExpression.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/DWARF/DWARFFormValue.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/DWARF/DWARFGdbIndex.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/DWARF/DWARFListTable.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/DWARF/DWARFTypeUnit.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/DWARF/DWARFUnit.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/DWARF/DWARFUnitIndex.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/DWARF/DWARFVerifier.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/GSYM
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/MSF/MSFBuilder.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/MSF/MSFCommon.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/MSF/MSFError.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/MSF/MappedBlockStream.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/DIA/DIADataStream.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/DIA/DIAEnumDebugStreams.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/DIA/DIAEnumFrameData.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/DIA/DIAEnumInjectedSources.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/DIA/DIAEnumLineNumbers.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/DIA/DIAEnumSectionContribs.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/DIA/DIAEnumSourceFiles.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/DIA/DIAEnumSymbols.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/DIA/DIAEnumTables.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/DIA/DIAFrameData.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/DIA/DIAInjectedSource.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/DIA/DIALineNumber.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/DIA/DIARawSymbol.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/DIA/DIASectionContrib.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/DIA/DIASession.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/DIA/DIASourceFile.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/DIA/DIATable.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/GenericError.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/IPDBSourceFile.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Native/DbiModuleDescriptor.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Native/DbiModuleDescriptorBuilder.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Native/DbiModuleList.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Native/DbiStream.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Native/DbiStreamBuilder.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Native/EnumTables.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Native/GSIStreamBuilder.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Native/GlobalsStream.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Native/Hash.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Native/HashTable.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Native/InfoStream.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Native/InfoStreamBuilder.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Native/InjectedSourceStream.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Native/ModuleDebugStream.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Native/NamedStreamMap.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Native/NativeCompilandSymbol.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Native/NativeEnumGlobals.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Native/NativeEnumInjectedSources.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Native/NativeEnumModules.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Native/NativeEnumTypes.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Native/NativeExeSymbol.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Native/NativeRawSymbol.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Native/NativeSession.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Native/NativeSymbolEnumerator.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Native/NativeTypeArray.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Native/NativeTypeBuiltin.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Native/NativeTypeEnum.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Native/NativeTypeFunctionSig.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Native/NativeTypePointer.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Native/NativeTypeUDT.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Native/PDBFile.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Native/PDBFileBuilder.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Native/PDBStringTable.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Native/PDBStringTableBuilder.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Native/PublicsStream.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Native/RawError.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Native/SymbolStream.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Native/TpiHashing.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Native/TpiStream.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/Native/TpiStreamBuilder.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDB.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBContext.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBExtras.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBInterfaceAnchors.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymDumper.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbol.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolAnnotation.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolBlock.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolCompiland.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolCompilandDetails.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolCompilandEnv.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolCustom.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolData.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolExe.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolFunc.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolFuncDebugEnd.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolFuncDebugStart.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolLabel.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolPublicSymbol.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolThunk.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeArray.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeBaseClass.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeBuiltin.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeCustom.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeDimension.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeEnum.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeFriend.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeFunctionArg.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeFunctionSig.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeManaged.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypePointer.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeTypedef.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeUDT.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeVTable.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolTypeVTableShape.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolUnknown.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/PDBSymbolUsingNamespace.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/PDB/UDTLayout.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/Symbolize/DIPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/Symbolize/SymbolizableObjectFile.cpp
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/Symbolize/SymbolizableObjectFile.h
/freebsd-11-stable/contrib/llvm/lib/DebugInfo/Symbolize/Symbolize.cpp
/freebsd-11-stable/contrib/llvm/lib/Demangle/Demangle.cpp
/freebsd-11-stable/contrib/llvm/lib/Demangle/ItaniumDemangle.cpp
/freebsd-11-stable/contrib/llvm/lib/Demangle/MicrosoftDemangle.cpp
/freebsd-11-stable/contrib/llvm/lib/Demangle/MicrosoftDemangleNodes.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/ExecutionEngine.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/ExecutionEngineBindings.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/GDBRegistrationListener.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/IntelJITEvents/IntelJITEventListener.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/IntelJITEvents/IntelJITEventsWrapper.h
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/IntelJITEvents/ittnotify_config.h
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/IntelJITEvents/ittnotify_types.h
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/IntelJITEvents/jitprofiling.c
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/IntelJITEvents/jitprofiling.h
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/Interpreter/Execution.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/Interpreter/ExternalFunctions.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/Interpreter/Interpreter.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/Interpreter/Interpreter.h
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/JIT
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/JITLink
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/MCJIT/MCJIT.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/MCJIT/MCJIT.h
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/OProfileJIT/OProfileJITEventListener.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/OProfileJIT/OProfileWrapper.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/Orc/CompileOnDemandLayer.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/Orc/CompileUtils.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/Orc/Core.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/Orc/ExecutionUtils.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/Orc/IRCompileLayer.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/Orc/IRTransformLayer.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/Orc/IndirectionUtils.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/Orc/JITTargetMachineBuilder.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/Orc/LLJIT.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/Orc/Layer.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/Orc/LazyReexports.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/Orc/Legacy.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/Orc/NullResolver.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/Orc/ObjectLinkingLayer.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/Orc/ObjectTransformLayer.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/Orc/OrcABISupport.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/Orc/OrcCBindings.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/Orc/OrcCBindingsStack.h
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/Orc/OrcError.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/Orc/OrcMCJITReplacement.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/Orc/OrcMCJITReplacement.h
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/Orc/RPCUtils.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/Orc/RTDyldObjectLinkingLayer.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/Orc/ThreadSafeModule.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/PerfJITEvents/PerfJITEventListener.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/JITSymbol.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RTDyldMemoryManager.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldCOFF.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldCOFF.h
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldChecker.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldCheckerImpl.h
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldELF.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldELF.h
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldImpl.h
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldMachO.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldMachO.h
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldCOFFI386.h
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldCOFFThumb.h
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldCOFFX86_64.h
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldELFMips.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldELFMips.h
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldMachOAArch64.h
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldMachOARM.h
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldMachOI386.h
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldMachOX86_64.h
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/SectionMemoryManager.cpp
/freebsd-11-stable/contrib/llvm/lib/ExecutionEngine/TargetSelect.cpp
/freebsd-11-stable/contrib/llvm/lib/FuzzMutate/FuzzerCLI.cpp
/freebsd-11-stable/contrib/llvm/lib/FuzzMutate/IRMutator.cpp
/freebsd-11-stable/contrib/llvm/lib/FuzzMutate/OpDescriptor.cpp
/freebsd-11-stable/contrib/llvm/lib/FuzzMutate/Operations.cpp
/freebsd-11-stable/contrib/llvm/lib/FuzzMutate/RandomIRBuilder.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/AbstractCallSite.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/AsmWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/AttributeImpl.h
/freebsd-11-stable/contrib/llvm/lib/IR/Attributes.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/AutoUpgrade.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/BasicBlock.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/Comdat.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/ConstantFold.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/ConstantFold.h
/freebsd-11-stable/contrib/llvm/lib/IR/ConstantRange.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/Constants.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/ConstantsContext.h
/freebsd-11-stable/contrib/llvm/lib/IR/Core.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/DIBuilder.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/DataLayout.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/DebugInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/DebugInfoMetadata.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/DebugLoc.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/DiagnosticHandler.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/DiagnosticInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/DiagnosticPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/DomTreeUpdater.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/Dominators.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/Function.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/GVMaterializer.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/Globals.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/IRBuilder.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/IRPrintingPasses.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/InlineAsm.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/Instruction.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/Instructions.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/IntrinsicInst.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/LLVMContext.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/LLVMContextImpl.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/LLVMContextImpl.h
/freebsd-11-stable/contrib/llvm/lib/IR/LegacyPassManager.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/MDBuilder.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/Mangler.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/Metadata.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/MetadataImpl.h
/freebsd-11-stable/contrib/llvm/lib/IR/Module.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/ModuleSummaryIndex.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/Operator.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/OptBisect.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/Pass.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/PassInstrumentation.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/PassManager.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/PassRegistry.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/PassTimingInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/ProfileSummary.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/RemarkStreamer.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/SafepointIRVerifier.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/Statepoint.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/SymbolTableListTraitsImpl.h
/freebsd-11-stable/contrib/llvm/lib/IR/Type.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/TypeFinder.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/Use.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/User.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/Value.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/ValueSymbolTable.cpp
/freebsd-11-stable/contrib/llvm/lib/IR/Verifier.cpp
/freebsd-11-stable/contrib/llvm/lib/IRReader/IRReader.cpp
/freebsd-11-stable/contrib/llvm/lib/LTO/Caching.cpp
/freebsd-11-stable/contrib/llvm/lib/LTO/LTO.cpp
/freebsd-11-stable/contrib/llvm/lib/LTO/LTOBackend.cpp
/freebsd-11-stable/contrib/llvm/lib/LTO/LTOCodeGenerator.cpp
/freebsd-11-stable/contrib/llvm/lib/LTO/LTOModule.cpp
/freebsd-11-stable/contrib/llvm/lib/LTO/SummaryBasedOptimizations.cpp
/freebsd-11-stable/contrib/llvm/lib/LTO/ThinLTOCodeGenerator.cpp
/freebsd-11-stable/contrib/llvm/lib/LTO/UpdateCompilerUsed.cpp
/freebsd-11-stable/contrib/llvm/lib/LineEditor/LineEditor.cpp
/freebsd-11-stable/contrib/llvm/lib/Linker/IRMover.cpp
/freebsd-11-stable/contrib/llvm/lib/Linker/LinkDiagnosticInfo.h
/freebsd-11-stable/contrib/llvm/lib/Linker/LinkModules.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/ConstantPools.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/ELFObjectWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCAnalysis
/freebsd-11-stable/contrib/llvm/lib/MC/MCAsmBackend.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCAsmInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCAsmInfoCOFF.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCAsmInfoDarwin.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCAsmInfoELF.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCAsmInfoWasm.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCAsmInfoXCOFF.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCAsmMacro.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCAsmStreamer.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCAssembler.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCCodeEmitter.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCCodePadder.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCCodeView.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCContext.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCDisassembler/Disassembler.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCDisassembler/Disassembler.h
/freebsd-11-stable/contrib/llvm/lib/MC/MCDisassembler/MCDisassembler.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCDisassembler/MCExternalSymbolizer.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCDisassembler/MCRelocationInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCDisassembler/MCSymbolizer.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCDwarf.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCELFObjectTargetWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCELFStreamer.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCExpr.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCFragment.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCInst.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCInstPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCInstrAnalysis.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCInstrDesc.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCLabel.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCLinkerOptimizationHint.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCMachOStreamer.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCMachObjectTargetWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCNullStreamer.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCObjectFileInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCObjectStreamer.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCObjectWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCParser/AsmLexer.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCParser/AsmParser.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCParser/COFFAsmParser.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCParser/DarwinAsmParser.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCParser/ELFAsmParser.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCParser/MCAsmLexer.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCParser/MCAsmParser.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCParser/MCAsmParserExtension.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCParser/MCTargetAsmParser.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCParser/WasmAsmParser.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCRegisterInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCSchedule.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCSection.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCSectionCOFF.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCSectionELF.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCSectionMachO.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCSectionWasm.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCSectionXCOFF.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCStreamer.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCSubtargetInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCSymbol.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCSymbolELF.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCTargetOptions.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCValue.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCWasmObjectTargetWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCWasmStreamer.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCWin64EH.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCWinCOFFStreamer.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCWinEH.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCXCOFFObjectTargetWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MCXCOFFStreamer.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/MachObjectWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/StringTableBuilder.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/SubtargetFeature.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/WasmObjectWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/WinCOFFObjectWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/MC/XCOFFObjectWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/MCA/Context.cpp
/freebsd-11-stable/contrib/llvm/lib/MCA/HWEventListener.cpp
/freebsd-11-stable/contrib/llvm/lib/MCA/HardwareUnits/HardwareUnit.cpp
/freebsd-11-stable/contrib/llvm/lib/MCA/HardwareUnits/LSUnit.cpp
/freebsd-11-stable/contrib/llvm/lib/MCA/HardwareUnits/RegisterFile.cpp
/freebsd-11-stable/contrib/llvm/lib/MCA/HardwareUnits/ResourceManager.cpp
/freebsd-11-stable/contrib/llvm/lib/MCA/HardwareUnits/RetireControlUnit.cpp
/freebsd-11-stable/contrib/llvm/lib/MCA/HardwareUnits/Scheduler.cpp
/freebsd-11-stable/contrib/llvm/lib/MCA/InstrBuilder.cpp
/freebsd-11-stable/contrib/llvm/lib/MCA/Instruction.cpp
/freebsd-11-stable/contrib/llvm/lib/MCA/Pipeline.cpp
/freebsd-11-stable/contrib/llvm/lib/MCA/Stages/DispatchStage.cpp
/freebsd-11-stable/contrib/llvm/lib/MCA/Stages/EntryStage.cpp
/freebsd-11-stable/contrib/llvm/lib/MCA/Stages/ExecuteStage.cpp
/freebsd-11-stable/contrib/llvm/lib/MCA/Stages/InstructionTables.cpp
/freebsd-11-stable/contrib/llvm/lib/MCA/Stages/MicroOpQueueStage.cpp
/freebsd-11-stable/contrib/llvm/lib/MCA/Stages/RetireStage.cpp
/freebsd-11-stable/contrib/llvm/lib/MCA/Stages/Stage.cpp
/freebsd-11-stable/contrib/llvm/lib/MCA/Support.cpp
/freebsd-11-stable/contrib/llvm/lib/Object/Archive.cpp
/freebsd-11-stable/contrib/llvm/lib/Object/ArchiveWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/Object/Binary.cpp
/freebsd-11-stable/contrib/llvm/lib/Object/COFFImportFile.cpp
/freebsd-11-stable/contrib/llvm/lib/Object/COFFModuleDefinition.cpp
/freebsd-11-stable/contrib/llvm/lib/Object/COFFObjectFile.cpp
/freebsd-11-stable/contrib/llvm/lib/Object/Decompressor.cpp
/freebsd-11-stable/contrib/llvm/lib/Object/ELF.cpp
/freebsd-11-stable/contrib/llvm/lib/Object/ELFObjectFile.cpp
/freebsd-11-stable/contrib/llvm/lib/Object/Error.cpp
/freebsd-11-stable/contrib/llvm/lib/Object/IRObjectFile.cpp
/freebsd-11-stable/contrib/llvm/lib/Object/IRSymtab.cpp
/freebsd-11-stable/contrib/llvm/lib/Object/MachOObjectFile.cpp
/freebsd-11-stable/contrib/llvm/lib/Object/MachOUniversal.cpp
/freebsd-11-stable/contrib/llvm/lib/Object/Minidump.cpp
/freebsd-11-stable/contrib/llvm/lib/Object/ModuleSymbolTable.cpp
/freebsd-11-stable/contrib/llvm/lib/Object/Object.cpp
/freebsd-11-stable/contrib/llvm/lib/Object/ObjectFile.cpp
/freebsd-11-stable/contrib/llvm/lib/Object/RecordStreamer.cpp
/freebsd-11-stable/contrib/llvm/lib/Object/RecordStreamer.h
/freebsd-11-stable/contrib/llvm/lib/Object/RelocationResolver.cpp
/freebsd-11-stable/contrib/llvm/lib/Object/SymbolSize.cpp
/freebsd-11-stable/contrib/llvm/lib/Object/SymbolicFile.cpp
/freebsd-11-stable/contrib/llvm/lib/Object/WasmObjectFile.cpp
/freebsd-11-stable/contrib/llvm/lib/Object/WindowsMachineFlag.cpp
/freebsd-11-stable/contrib/llvm/lib/Object/WindowsResource.cpp
/freebsd-11-stable/contrib/llvm/lib/Object/XCOFFObjectFile.cpp
/freebsd-11-stable/contrib/llvm/lib/ObjectYAML/COFFYAML.cpp
/freebsd-11-stable/contrib/llvm/lib/ObjectYAML/CodeViewYAMLDebugSections.cpp
/freebsd-11-stable/contrib/llvm/lib/ObjectYAML/CodeViewYAMLSymbols.cpp
/freebsd-11-stable/contrib/llvm/lib/ObjectYAML/CodeViewYAMLTypeHashing.cpp
/freebsd-11-stable/contrib/llvm/lib/ObjectYAML/CodeViewYAMLTypes.cpp
/freebsd-11-stable/contrib/llvm/lib/ObjectYAML/DWARFEmitter.cpp
/freebsd-11-stable/contrib/llvm/lib/ObjectYAML/DWARFVisitor.cpp
/freebsd-11-stable/contrib/llvm/lib/ObjectYAML/DWARFVisitor.h
/freebsd-11-stable/contrib/llvm/lib/ObjectYAML/DWARFYAML.cpp
/freebsd-11-stable/contrib/llvm/lib/ObjectYAML/ELFYAML.cpp
/freebsd-11-stable/contrib/llvm/lib/ObjectYAML/MachOYAML.cpp
/freebsd-11-stable/contrib/llvm/lib/ObjectYAML/MinidumpYAML.cpp
/freebsd-11-stable/contrib/llvm/lib/ObjectYAML/ObjectYAML.cpp
/freebsd-11-stable/contrib/llvm/lib/ObjectYAML/WasmYAML.cpp
/freebsd-11-stable/contrib/llvm/lib/ObjectYAML/XCOFFYAML.cpp
/freebsd-11-stable/contrib/llvm/lib/ObjectYAML/YAML.cpp
/freebsd-11-stable/contrib/llvm/lib/OptRemarks
/freebsd-11-stable/contrib/llvm/lib/Option/Arg.cpp
/freebsd-11-stable/contrib/llvm/lib/Option/ArgList.cpp
/freebsd-11-stable/contrib/llvm/lib/Option/OptTable.cpp
/freebsd-11-stable/contrib/llvm/lib/Option/Option.cpp
/freebsd-11-stable/contrib/llvm/lib/Passes/PassBuilder.cpp
/freebsd-11-stable/contrib/llvm/lib/Passes/PassPlugin.cpp
/freebsd-11-stable/contrib/llvm/lib/Passes/PassRegistry.def
/freebsd-11-stable/contrib/llvm/lib/Passes/StandardInstrumentations.cpp
/freebsd-11-stable/contrib/llvm/lib/ProfileData/Coverage/CoverageMapping.cpp
/freebsd-11-stable/contrib/llvm/lib/ProfileData/Coverage/CoverageMappingReader.cpp
/freebsd-11-stable/contrib/llvm/lib/ProfileData/Coverage/CoverageMappingWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/ProfileData/GCOV.cpp
/freebsd-11-stable/contrib/llvm/lib/ProfileData/InstrProf.cpp
/freebsd-11-stable/contrib/llvm/lib/ProfileData/InstrProfReader.cpp
/freebsd-11-stable/contrib/llvm/lib/ProfileData/InstrProfWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/ProfileData/ProfileSummaryBuilder.cpp
/freebsd-11-stable/contrib/llvm/lib/ProfileData/SampleProf.cpp
/freebsd-11-stable/contrib/llvm/lib/ProfileData/SampleProfReader.cpp
/freebsd-11-stable/contrib/llvm/lib/ProfileData/SampleProfWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/Remarks
/freebsd-11-stable/contrib/llvm/lib/Support/AArch64TargetParser.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/AMDGPUMetadata.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/APFloat.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/APInt.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/APSInt.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/ARMAttributeParser.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/ARMBuildAttrs.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/ARMTargetParser.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/ARMWinEH.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/Allocator.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/Atomic.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/BinaryStreamError.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/BinaryStreamReader.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/BinaryStreamRef.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/BinaryStreamWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/BlockFrequency.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/BranchProbability.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/BuryPointer.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/COM.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/CRC.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/CachePruning.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/Chrono.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/CodeGenCoverage.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/CommandLine.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/Compression.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/ConvertUTF.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/ConvertUTFWrapper.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/CrashRecoveryContext.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/DAGDeltaAlgorithm.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/DJB.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/DataExtractor.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/Debug.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/DeltaAlgorithm.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/DynamicLibrary.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/Errno.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/Error.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/ErrorHandling.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/FileCheck.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/FileOutputBuffer.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/FileUtilities.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/FoldingSet.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/FormatVariadic.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/FormattedStream.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/GlobPattern.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/GraphWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/Hashing.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/Host.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/InitLLVM.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/IntEqClasses.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/IntervalMap.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/ItaniumManglingCanonicalizer.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/JSON.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/JamCRC.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/KnownBits.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/LEB128.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/LineIterator.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/LockFileManager.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/LowLevelType.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/ManagedStatic.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/MathExtras.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/Memory.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/MemoryBuffer.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/Mutex.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/NativeFormatting.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/Optional.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/Options.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/Parallel.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/Path.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/PluginLoader.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/PrettyStackTrace.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/Process.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/Program.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/RWMutex.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/RandomNumberGenerator.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/Regex.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/SHA1.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/ScaledNumber.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/Signals.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/Signposts.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/SmallPtrSet.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/SmallVector.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/SourceMgr.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/SpecialCaseList.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/Statistic.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/StringExtras.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/StringMap.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/StringPool.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/StringRef.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/StringSaver.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/SymbolRemappingReader.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/SystemUtils.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/TarWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/TargetParser.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/TargetRegistry.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/ThreadLocal.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/ThreadPool.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/Threading.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/TimeProfiler.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/Timer.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/ToolOutputFile.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/TrigramIndex.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/Triple.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/Twine.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/Unicode.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/Unix/COM.inc
/freebsd-11-stable/contrib/llvm/lib/Support/Unix/DynamicLibrary.inc
/freebsd-11-stable/contrib/llvm/lib/Support/Unix/Host.inc
/freebsd-11-stable/contrib/llvm/lib/Support/Unix/Memory.inc
/freebsd-11-stable/contrib/llvm/lib/Support/Unix/Mutex.inc
/freebsd-11-stable/contrib/llvm/lib/Support/Unix/Path.inc
/freebsd-11-stable/contrib/llvm/lib/Support/Unix/Process.inc
/freebsd-11-stable/contrib/llvm/lib/Support/Unix/Program.inc
/freebsd-11-stable/contrib/llvm/lib/Support/Unix/RWMutex.inc
/freebsd-11-stable/contrib/llvm/lib/Support/Unix/Signals.inc
/freebsd-11-stable/contrib/llvm/lib/Support/Unix/ThreadLocal.inc
/freebsd-11-stable/contrib/llvm/lib/Support/Unix/Threading.inc
/freebsd-11-stable/contrib/llvm/lib/Support/Unix/Unix.h
/freebsd-11-stable/contrib/llvm/lib/Support/Unix/Watchdog.inc
/freebsd-11-stable/contrib/llvm/lib/Support/Valgrind.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/VersionTuple.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/VirtualFileSystem.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/Watchdog.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/Windows/COM.inc
/freebsd-11-stable/contrib/llvm/lib/Support/Windows/DynamicLibrary.inc
/freebsd-11-stable/contrib/llvm/lib/Support/Windows/Host.inc
/freebsd-11-stable/contrib/llvm/lib/Support/Windows/Memory.inc
/freebsd-11-stable/contrib/llvm/lib/Support/Windows/Mutex.inc
/freebsd-11-stable/contrib/llvm/lib/Support/Windows/Path.inc
/freebsd-11-stable/contrib/llvm/lib/Support/Windows/Process.inc
/freebsd-11-stable/contrib/llvm/lib/Support/Windows/Program.inc
/freebsd-11-stable/contrib/llvm/lib/Support/Windows/RWMutex.inc
/freebsd-11-stable/contrib/llvm/lib/Support/Windows/Signals.inc
/freebsd-11-stable/contrib/llvm/lib/Support/Windows/ThreadLocal.inc
/freebsd-11-stable/contrib/llvm/lib/Support/Windows/Threading.inc
/freebsd-11-stable/contrib/llvm/lib/Support/Windows/Watchdog.inc
/freebsd-11-stable/contrib/llvm/lib/Support/Windows/WindowsSupport.h
/freebsd-11-stable/contrib/llvm/lib/Support/WithColor.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/YAMLParser.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/YAMLTraits.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/Z3Solver.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/circular_raw_ostream.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/raw_os_ostream.cpp
/freebsd-11-stable/contrib/llvm/lib/Support/raw_ostream.cpp
/freebsd-11-stable/contrib/llvm/lib/TableGen/Error.cpp
/freebsd-11-stable/contrib/llvm/lib/TableGen/JSONBackend.cpp
/freebsd-11-stable/contrib/llvm/lib/TableGen/Main.cpp
/freebsd-11-stable/contrib/llvm/lib/TableGen/Record.cpp
/freebsd-11-stable/contrib/llvm/lib/TableGen/SetTheory.cpp
/freebsd-11-stable/contrib/llvm/lib/TableGen/StringMatcher.cpp
/freebsd-11-stable/contrib/llvm/lib/TableGen/TGLexer.cpp
/freebsd-11-stable/contrib/llvm/lib/TableGen/TGLexer.h
/freebsd-11-stable/contrib/llvm/lib/TableGen/TGParser.cpp
/freebsd-11-stable/contrib/llvm/lib/TableGen/TGParser.h
/freebsd-11-stable/contrib/llvm/lib/TableGen/TableGenBackend.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64.h
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64.td
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64A53Fix835769.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64A57FPLoadBalancing.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64AdvSIMDScalarPass.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64AsmPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64BranchTargets.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64CallLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64CallLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64CallingConvention.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64CallingConvention.h
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64CallingConvention.td
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64CleanupLocalDynamicTLSPass.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64CollectLOH.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64CompressJumpTables.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64CondBrTuning.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64ConditionOptimizer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64ConditionalCompares.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64DeadRegisterDefinitionsPass.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64ExpandImm.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64ExpandImm.h
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64ExpandPseudoInsts.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64FalkorHWPFFix.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64FastISel.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64FrameLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64FrameLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64GenRegisterBankInfo.def
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64ISelDAGToDAG.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64ISelLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64ISelLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64InstrAtomics.td
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64InstrFormats.td
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64InstrInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64InstrInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64InstrInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64InstructionSelector.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64LegalizerInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64LegalizerInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64LoadStoreOptimizer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64MCInstLower.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64MCInstLower.h
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64MachineFunctionInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64MacroFusion.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64MacroFusion.h
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64PBQPRegAlloc.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64PBQPRegAlloc.h
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64PerfectShuffle.h
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64PfmCounters.td
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64PreLegalizerCombiner.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64PromoteConstant.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64RedundantCopyElimination.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64RegisterBankInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64RegisterBankInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64RegisterBanks.td
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64RegisterInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64RegisterInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64RegisterInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64SIMDInstrOpt.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64SVEInstrInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64SchedA53.td
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64SchedA57.td
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64SchedA57WriteRes.td
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64SchedCyclone.td
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64SchedExynosM1.td
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64SchedExynosM3.td
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64SchedExynosM4.td
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64SchedFalkor.td
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64SchedFalkorDetails.td
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64SchedKryo.td
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64SchedKryoDetails.td
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64SchedPredExynos.td
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64SchedPredicates.td
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64SchedThunderX.td
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64SchedThunderX2T99.td
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64Schedule.td
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64SelectionDAGInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64SelectionDAGInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64SpeculationHardening.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64StackTagging.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64StorePairSuppress.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64Subtarget.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64Subtarget.h
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64SystemOperands.td
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64TargetMachine.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64TargetMachine.h
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64TargetObjectFile.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64TargetObjectFile.h
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64TargetTransformInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AArch64TargetTransformInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/AsmParser/AArch64AsmParser.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/Disassembler/AArch64Disassembler.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/Disassembler/AArch64Disassembler.h
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/Disassembler/AArch64ExternalSymbolizer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/Disassembler/AArch64ExternalSymbolizer.h
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/InstPrinter
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64AddressingModes.h
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64AsmBackend.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64ELFObjectWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64ELFStreamer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64ELFStreamer.h
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64FixupKinds.h
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64InstPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64InstPrinter.h
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCAsmInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCAsmInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCCodeEmitter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCExpr.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCExpr.h
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCTargetDesc.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCTargetDesc.h
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MachObjectWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64TargetStreamer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64TargetStreamer.h
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64WinCOFFObjectWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64WinCOFFStreamer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64WinCOFFStreamer.h
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/SVEInstrFormats.td
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/TargetInfo/AArch64TargetInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/TargetInfo/AArch64TargetInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/Utils/AArch64BaseInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AArch64/Utils/AArch64BaseInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPU.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPU.td
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUAliasAnalysis.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUAliasAnalysis.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUAlwaysInlinePass.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUAnnotateKernelFeatures.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUAnnotateUniformValues.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUArgumentUsageInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUArgumentUsageInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUAsmPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUAsmPrinter.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUAtomicOptimizer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUCallLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUCallLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUCallingConv.td
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUCodeGenPrepare.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUFeatures.td
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUFixFunctionBitcasts.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUFrameLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUFrameLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUGISel.td
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUGenRegisterBankInfo.def
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUHSAMetadataStreamer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUHSAMetadataStreamer.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUISelDAGToDAG.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUISelLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUISelLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUInline.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUInstrInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUInstrInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUInstrInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUInstructionSelector.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUInstructionSelector.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUInstructions.td
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUIntrinsicInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUIntrinsicInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPULegalizerInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPULegalizerInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPULibCalls.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPULibFunc.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPULibFunc.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPULowerIntrinsics.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPULowerKernelArguments.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPULowerKernelAttributes.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUMCInstLower.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUMachineCFGStructurizer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUMachineFunction.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUMachineFunction.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUMachineModuleInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUMachineModuleInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUMacroFusion.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUMacroFusion.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUOpenCLEnqueuedBlockLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUPTNote.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUPerfHintAnalysis.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUPerfHintAnalysis.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUPromoteAlloca.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUPropagateAttributes.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPURegAsmNames.inc.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPURegisterBankInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPURegisterBankInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPURegisterBanks.td
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPURegisterInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPURegisterInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPURegisterInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPURewriteOutArguments.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUSearchableTables.td
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUSubtarget.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUSubtarget.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUTargetMachine.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUTargetMachine.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUTargetObjectFile.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUTargetObjectFile.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUTargetTransformInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUTargetTransformInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUUnifyDivergentExitNodes.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDGPUUnifyMetadata.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDILCFGStructurizer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AMDKernelCodeT.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/AsmParser/AMDGPUAsmParser.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/BUFInstructions.td
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/CaymanInstructions.td
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/DSInstructions.td
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/Disassembler/AMDGPUDisassembler.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/Disassembler/AMDGPUDisassembler.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/EvergreenInstructions.td
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/FLATInstructions.td
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/GCNDPPCombine.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/GCNHazardRecognizer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/GCNHazardRecognizer.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/GCNILPSched.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/GCNIterativeScheduler.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/GCNIterativeScheduler.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/GCNMinRegStrategy.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/GCNNSAReassign.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/GCNProcessors.td
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/GCNRegBankReassign.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/GCNRegPressure.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/GCNRegPressure.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/GCNSchedStrategy.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/GCNSchedStrategy.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/InstPrinter
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUAsmBackend.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUELFObjectWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUELFStreamer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUELFStreamer.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUFixupKinds.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUInstPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUInstPrinter.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUMCAsmInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUMCAsmInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUMCCodeEmitter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUMCCodeEmitter.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUMCTargetDesc.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUMCTargetDesc.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUTargetStreamer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUTargetStreamer.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/MCTargetDesc/R600MCCodeEmitter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/MCTargetDesc/R600MCTargetDesc.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/MCTargetDesc/SIMCCodeEmitter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/MIMGInstructions.td
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/R600.td
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/R600AsmPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/R600AsmPrinter.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/R600ClauseMergePass.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/R600ControlFlowFinalizer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/R600Defines.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/R600EmitClauseMarkers.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/R600ExpandSpecialInstrs.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/R600FrameLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/R600FrameLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/R600ISelLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/R600ISelLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/R600InstrFormats.td
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/R600InstrInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/R600InstrInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/R600Instructions.td
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/R600MachineFunctionInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/R600MachineFunctionInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/R600MachineScheduler.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/R600MachineScheduler.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/R600OpenCLImageTypeLoweringPass.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/R600OptimizeVectorRegisters.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/R600Packetizer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/R600Processors.td
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/R600RegisterInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/R600RegisterInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/R600Schedule.td
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/R700Instructions.td
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SIAddIMGInit.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SIAnnotateControlFlow.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SIDebuggerInsertNops.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SIDefines.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SIFixSGPRCopies.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SIFixVGPRCopies.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SIFixWWMLiveness.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SIFixupVectorISel.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SIFoldOperands.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SIFormMemoryClauses.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SIFrameLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SIFrameLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SIISelLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SIISelLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SIInsertSkips.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SIInsertWaitcnts.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SIInstrFormats.td
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SIInstrInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SIInstrInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SIInstrInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SIInstructions.td
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SIIntrinsics.td
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SILoadStoreOptimizer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SILowerControlFlow.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SILowerI1Copies.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SILowerSGPRSpills.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SIMachineFunctionInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SIMachineFunctionInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SIMachineScheduler.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SIMachineScheduler.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SIMemoryLegalizer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SIModeRegister.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SIOptimizeExecMasking.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SIOptimizeExecMaskingPreRA.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SIPeepholeSDWA.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SIPreAllocateWWMRegs.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SIProgramInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SIRegisterInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SIRegisterInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SIRegisterInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SISchedule.td
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SIShrinkInstructions.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SIWholeQuadMode.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SMInstructions.td
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/SOPInstructions.td
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/TargetInfo/AMDGPUTargetInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/TargetInfo/AMDGPUTargetInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/Utils/AMDGPUAsmUtils.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/Utils/AMDGPUAsmUtils.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/Utils/AMDGPUBaseInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/Utils/AMDGPUBaseInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/Utils/AMDGPUPALMetadata.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/Utils/AMDGPUPALMetadata.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/Utils/AMDKernelCodeTInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/Utils/AMDKernelCodeTUtils.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/Utils/AMDKernelCodeTUtils.h
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/VIInstrFormats.td
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/VIInstructions.td
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/VOP1Instructions.td
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/VOP2Instructions.td
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/VOP3Instructions.td
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/VOP3PInstructions.td
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/VOPCInstructions.td
/freebsd-11-stable/contrib/llvm/lib/Target/AMDGPU/VOPInstructions.td
/freebsd-11-stable/contrib/llvm/lib/Target/ARC/ARC.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARC/ARC.td
/freebsd-11-stable/contrib/llvm/lib/Target/ARC/ARCAsmPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARC/ARCBranchFinalize.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARC/ARCCallingConv.td
/freebsd-11-stable/contrib/llvm/lib/Target/ARC/ARCExpandPseudos.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARC/ARCFrameLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARC/ARCFrameLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARC/ARCISelDAGToDAG.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARC/ARCISelLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARC/ARCISelLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARC/ARCInstrFormats.td
/freebsd-11-stable/contrib/llvm/lib/Target/ARC/ARCInstrInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARC/ARCInstrInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARC/ARCInstrInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/ARC/ARCMCInstLower.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARC/ARCMCInstLower.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARC/ARCMachineFunctionInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARC/ARCMachineFunctionInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARC/ARCOptAddrMode.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARC/ARCRegisterInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARC/ARCRegisterInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARC/ARCRegisterInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/ARC/ARCSubtarget.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARC/ARCSubtarget.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARC/ARCTargetMachine.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARC/ARCTargetMachine.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARC/ARCTargetStreamer.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARC/ARCTargetTransformInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARC/Disassembler/ARCDisassembler.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARC/InstPrinter
/freebsd-11-stable/contrib/llvm/lib/Target/ARC/MCTargetDesc/ARCInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARC/MCTargetDesc/ARCInstPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARC/MCTargetDesc/ARCInstPrinter.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARC/MCTargetDesc/ARCMCAsmInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARC/MCTargetDesc/ARCMCAsmInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARC/MCTargetDesc/ARCMCTargetDesc.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARC/MCTargetDesc/ARCMCTargetDesc.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARC/TargetInfo/ARCTargetInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARC/TargetInfo/ARCTargetInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/A15SDOptimizer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARM.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARM.td
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMAsmPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMAsmPrinter.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMBaseInstrInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMBaseInstrInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMBaseRegisterInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMBaseRegisterInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMBasicBlockInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMBasicBlockInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMCallLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMCallLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMCallingConv.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMCallingConv.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMCallingConv.td
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMCodeGenPrepare.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMComputeBlockSize.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMConstantIslandPass.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMConstantPoolValue.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMConstantPoolValue.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMExpandPseudoInsts.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMFastISel.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMFeatures.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMFrameLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMFrameLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMHazardRecognizer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMHazardRecognizer.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMISelDAGToDAG.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMISelLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMISelLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMInstrFormats.td
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMInstrInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMInstrInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMInstrInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMInstrMVE.td
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMInstrNEON.td
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMInstrThumb.td
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMInstrThumb2.td
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMInstrVFP.td
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMInstructionSelector.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMLegalizerInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMLegalizerInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMLoadStoreOptimizer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMLowOverheadLoops.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMMCInstLower.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMMachineFunctionInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMMachineFunctionInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMMacroFusion.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMMacroFusion.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMOptimizeBarriersPass.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMParallelDSP.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMPerfectShuffle.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMPredicates.td
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMRegisterBankInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMRegisterBankInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMRegisterBanks.td
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMRegisterInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMRegisterInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMRegisterInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMSchedule.td
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMScheduleA57.td
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMScheduleA57WriteRes.td
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMScheduleA8.td
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMScheduleA9.td
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMScheduleM3.td
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMScheduleM4.td
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMScheduleR52.td
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMScheduleSwift.td
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMScheduleV6.td
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMSelectionDAGInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMSelectionDAGInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMSubtarget.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMSubtarget.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMSystemRegister.td
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMTargetMachine.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMTargetMachine.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMTargetObjectFile.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMTargetObjectFile.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMTargetTransformInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ARMTargetTransformInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/AsmParser/ARMAsmParser.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/Disassembler/ARMDisassembler.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/InstPrinter
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/LICENSE.TXT
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMAddressingModes.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMAsmBackend.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMAsmBackend.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMAsmBackendDarwin.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMAsmBackendELF.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMAsmBackendWinCOFF.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMBaseInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMELFObjectWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMELFStreamer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMFixupKinds.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMInstPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMInstPrinter.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMCAsmInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMCAsmInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMCCodeEmitter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMCExpr.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMCExpr.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMCTargetDesc.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMCTargetDesc.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMachORelocationInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMachObjectWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMTargetStreamer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMUnwindOpAsm.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMUnwindOpAsm.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMWinCOFFObjectWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMWinCOFFStreamer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/MLxExpansionPass.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/TargetInfo/ARMTargetInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/TargetInfo/ARMTargetInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/Thumb1FrameLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/Thumb1FrameLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/Thumb1InstrInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/Thumb1InstrInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/Thumb2ITBlockPass.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/Thumb2InstrInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/Thumb2InstrInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/Thumb2SizeReduction.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ThumbRegisterInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/ThumbRegisterInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/Utils/ARMBaseInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/ARM/Utils/ARMBaseInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/AVR.h
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/AVR.td
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/AVRAsmPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/AVRCallingConv.td
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/AVRExpandPseudoInsts.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/AVRFrameLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/AVRFrameLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/AVRISelDAGToDAG.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/AVRISelLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/AVRISelLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/AVRInstrFormats.td
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/AVRInstrInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/AVRInstrInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/AVRInstrInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/AVRMCInstLower.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/AVRMCInstLower.h
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/AVRMachineFunctionInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/AVRRegisterInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/AVRRegisterInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/AVRRegisterInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/AVRRelaxMemOperations.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/AVRSelectionDAGInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/AVRSubtarget.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/AVRSubtarget.h
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/AVRTargetMachine.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/AVRTargetMachine.h
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/AVRTargetObjectFile.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/AVRTargetObjectFile.h
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/AsmParser/AVRAsmParser.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/Disassembler/AVRDisassembler.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/InstPrinter
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/MCTargetDesc/AVRAsmBackend.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/MCTargetDesc/AVRAsmBackend.h
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/MCTargetDesc/AVRELFObjectWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/MCTargetDesc/AVRELFStreamer.h
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/MCTargetDesc/AVRFixupKinds.h
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/MCTargetDesc/AVRInstPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/MCTargetDesc/AVRInstPrinter.h
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/MCTargetDesc/AVRMCAsmInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/MCTargetDesc/AVRMCAsmInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/MCTargetDesc/AVRMCCodeEmitter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/MCTargetDesc/AVRMCCodeEmitter.h
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/MCTargetDesc/AVRMCELFStreamer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/MCTargetDesc/AVRMCELFStreamer.h
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/MCTargetDesc/AVRMCExpr.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/MCTargetDesc/AVRMCExpr.h
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/MCTargetDesc/AVRMCTargetDesc.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/MCTargetDesc/AVRMCTargetDesc.h
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/MCTargetDesc/AVRTargetStreamer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/MCTargetDesc/AVRTargetStreamer.h
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/TargetInfo/AVRTargetInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/AVR/TargetInfo/AVRTargetInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/AsmParser/BPFAsmParser.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/BPF.h
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/BPF.td
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/BPFAbstractMemberAccess.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/BPFAsmPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/BPFCORE.h
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/BPFCallingConv.td
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/BPFFrameLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/BPFFrameLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/BPFISelDAGToDAG.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/BPFISelLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/BPFISelLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/BPFInstrFormats.td
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/BPFInstrInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/BPFInstrInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/BPFInstrInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/BPFMCInstLower.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/BPFMCInstLower.h
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/BPFMIChecking.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/BPFMIPeephole.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/BPFMISimplifyPatchable.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/BPFRegisterInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/BPFRegisterInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/BPFRegisterInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/BPFSelectionDAGInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/BPFSelectionDAGInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/BPFSubtarget.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/BPFSubtarget.h
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/BPFTargetMachine.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/BPFTargetMachine.h
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/BTF.def
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/BTF.h
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/BTFDebug.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/BTFDebug.h
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/Disassembler/BPFDisassembler.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/InstPrinter
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/MCTargetDesc/BPFAsmBackend.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/MCTargetDesc/BPFELFObjectWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/MCTargetDesc/BPFInstPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/MCTargetDesc/BPFInstPrinter.h
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/MCTargetDesc/BPFMCAsmInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/MCTargetDesc/BPFMCCodeEmitter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/MCTargetDesc/BPFMCTargetDesc.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/MCTargetDesc/BPFMCTargetDesc.h
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/TargetInfo/BPFTargetInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/BPF/TargetInfo/BPFTargetInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/AsmParser/HexagonAsmParser.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/BitTracker.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/BitTracker.h
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/Disassembler/HexagonDisassembler.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/Hexagon.h
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/Hexagon.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonAsmPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonAsmPrinter.h
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonBitSimplify.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonBitTracker.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonBitTracker.h
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonBlockRanges.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonBlockRanges.h
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonBranchRelaxation.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonCFGOptimizer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonCallingConv.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonCommonGEP.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonConstExtenders.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonConstPropagation.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonCopyToCombine.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonDepArch.h
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonDepArch.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonDepDecoders.h
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonDepDecoders.inc
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonDepIICHVX.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonDepIICScalar.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonDepITypes.h
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonDepITypes.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonDepInstrFormats.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonDepInstrInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonDepMapAsm2Intrin.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonDepMappings.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonDepOperands.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonDepTimingClasses.h
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonEarlyIfConv.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonExpandCondsets.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonFixupHwLoops.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonFrameLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonFrameLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonGenExtract.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonGenInsert.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonGenMux.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonGenPredicate.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonHardwareLoops.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonHazardRecognizer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonHazardRecognizer.h
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonIICHVX.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonIICScalar.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonISelDAGToDAG.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonISelDAGToDAG.h
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonISelDAGToDAGHVX.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonISelLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonISelLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonISelLoweringHVX.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonInstrFormats.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonInstrFormatsV5.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonInstrFormatsV60.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonInstrFormatsV65.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonInstrInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonInstrInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonIntrinsics.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonIntrinsicsV5.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonIntrinsicsV60.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonLoopIdiomRecognition.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonMCInstLower.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonMachineFunctionInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonMachineFunctionInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonMachineScheduler.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonMachineScheduler.h
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonMapAsm2IntrinV62.gen.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonMapAsm2IntrinV65.gen.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonNewValueJump.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonOperands.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonOptAddrMode.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonOptimizeSZextends.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonPatterns.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonPatternsV65.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonPeephole.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonPseudo.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonRDFOpt.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonRegisterInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonRegisterInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonRegisterInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonSchedule.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonScheduleV5.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonScheduleV55.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonScheduleV60.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonScheduleV62.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonScheduleV65.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonScheduleV66.td
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonSelectionDAGInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonSelectionDAGInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonSplitConst32AndConst64.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonSplitDouble.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonStoreWidening.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonSubtarget.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonSubtarget.h
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonTargetMachine.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonTargetMachine.h
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonTargetObjectFile.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonTargetObjectFile.h
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonTargetStreamer.h
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonTargetTransformInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonTargetTransformInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonVExtract.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonVLIWPacketizer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonVLIWPacketizer.h
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonVectorLoopCarriedReuse.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/HexagonVectorPrint.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonAsmBackend.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonBaseInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonELFObjectWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonFixupKinds.h
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonInstPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonInstPrinter.h
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCAsmInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCAsmInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCChecker.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCChecker.h
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCCodeEmitter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCCodeEmitter.h
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCCompound.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCDuplexInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCELFStreamer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCELFStreamer.h
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCExpr.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCExpr.h
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCInstrInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCInstrInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCShuffler.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCShuffler.h
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCTargetDesc.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCTargetDesc.h
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonShuffler.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonShuffler.h
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/RDFCopy.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/RDFCopy.h
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/RDFDeadCode.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/RDFDeadCode.h
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/RDFGraph.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/RDFGraph.h
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/RDFLiveness.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/RDFLiveness.h
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/RDFRegisters.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/RDFRegisters.h
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/TargetInfo/HexagonTargetInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Hexagon/TargetInfo/HexagonTargetInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/AsmParser/LanaiAsmParser.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/Disassembler/LanaiDisassembler.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/Disassembler/LanaiDisassembler.h
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/InstPrinter
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/Lanai.h
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/Lanai.td
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/LanaiAluCode.h
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/LanaiAsmPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/LanaiCallingConv.td
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/LanaiDelaySlotFiller.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/LanaiFrameLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/LanaiFrameLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/LanaiISelDAGToDAG.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/LanaiISelLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/LanaiISelLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/LanaiInstrFormats.td
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/LanaiInstrInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/LanaiInstrInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/LanaiInstrInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/LanaiMCInstLower.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/LanaiMCInstLower.h
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/LanaiMachineFunctionInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/LanaiMachineFunctionInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/LanaiMemAluCombiner.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/LanaiRegisterInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/LanaiRegisterInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/LanaiRegisterInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/LanaiSchedule.td
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/LanaiSelectionDAGInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/LanaiSelectionDAGInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/LanaiSubtarget.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/LanaiSubtarget.h
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/LanaiTargetMachine.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/LanaiTargetMachine.h
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/LanaiTargetObjectFile.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/LanaiTargetObjectFile.h
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/LanaiTargetTransformInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/MCTargetDesc/LanaiAsmBackend.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/MCTargetDesc/LanaiBaseInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/MCTargetDesc/LanaiELFObjectWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/MCTargetDesc/LanaiFixupKinds.h
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/MCTargetDesc/LanaiInstPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/MCTargetDesc/LanaiInstPrinter.h
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/MCTargetDesc/LanaiMCAsmInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/MCTargetDesc/LanaiMCAsmInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/MCTargetDesc/LanaiMCCodeEmitter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/MCTargetDesc/LanaiMCExpr.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/MCTargetDesc/LanaiMCExpr.h
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/MCTargetDesc/LanaiMCTargetDesc.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/MCTargetDesc/LanaiMCTargetDesc.h
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/TargetInfo/LanaiTargetInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Lanai/TargetInfo/LanaiTargetInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/MSP430/AsmParser/MSP430AsmParser.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/MSP430/Disassembler/MSP430Disassembler.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/MSP430/InstPrinter
/freebsd-11-stable/contrib/llvm/lib/Target/MSP430/MCTargetDesc/MSP430AsmBackend.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/MSP430/MCTargetDesc/MSP430ELFObjectWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/MSP430/MCTargetDesc/MSP430ELFStreamer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/MSP430/MCTargetDesc/MSP430FixupKinds.h
/freebsd-11-stable/contrib/llvm/lib/Target/MSP430/MCTargetDesc/MSP430InstPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/MSP430/MCTargetDesc/MSP430InstPrinter.h
/freebsd-11-stable/contrib/llvm/lib/Target/MSP430/MCTargetDesc/MSP430MCAsmInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/MSP430/MCTargetDesc/MSP430MCAsmInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/MSP430/MCTargetDesc/MSP430MCCodeEmitter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/MSP430/MCTargetDesc/MSP430MCTargetDesc.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/MSP430/MCTargetDesc/MSP430MCTargetDesc.h
/freebsd-11-stable/contrib/llvm/lib/Target/MSP430/MSP430.h
/freebsd-11-stable/contrib/llvm/lib/Target/MSP430/MSP430.td
/freebsd-11-stable/contrib/llvm/lib/Target/MSP430/MSP430AsmPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/MSP430/MSP430BranchSelector.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/MSP430/MSP430CallingConv.td
/freebsd-11-stable/contrib/llvm/lib/Target/MSP430/MSP430FrameLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/MSP430/MSP430FrameLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/MSP430/MSP430ISelDAGToDAG.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/MSP430/MSP430ISelLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/MSP430/MSP430ISelLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/MSP430/MSP430InstrFormats.td
/freebsd-11-stable/contrib/llvm/lib/Target/MSP430/MSP430InstrInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/MSP430/MSP430InstrInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/MSP430/MSP430InstrInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/MSP430/MSP430MCInstLower.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/MSP430/MSP430MCInstLower.h
/freebsd-11-stable/contrib/llvm/lib/Target/MSP430/MSP430MachineFunctionInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/MSP430/MSP430MachineFunctionInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/MSP430/MSP430RegisterInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/MSP430/MSP430RegisterInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/MSP430/MSP430RegisterInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/MSP430/MSP430Subtarget.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/MSP430/MSP430Subtarget.h
/freebsd-11-stable/contrib/llvm/lib/Target/MSP430/MSP430TargetMachine.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/MSP430/MSP430TargetMachine.h
/freebsd-11-stable/contrib/llvm/lib/Target/MSP430/TargetInfo/MSP430TargetInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/MSP430/TargetInfo/MSP430TargetInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/AsmParser/MipsAsmParser.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/Disassembler/MipsDisassembler.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/InstPrinter
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsABIFlagsSection.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsABIFlagsSection.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsABIInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsABIInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsAsmBackend.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsAsmBackend.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsBaseInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsELFObjectWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsELFStreamer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsELFStreamer.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsFixupKinds.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsInstPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsInstPrinter.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsMCAsmInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsMCAsmInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsMCCodeEmitter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsMCCodeEmitter.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsMCExpr.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsMCExpr.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsMCNaCl.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsMCTargetDesc.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsMCTargetDesc.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsNaClELFStreamer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsOptionRecord.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsTargetStreamer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MicroMips32r6InstrFormats.td
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MicroMips32r6InstrInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MicroMipsDSPInstrFormats.td
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MicroMipsDSPInstrInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MicroMipsInstrFPU.td
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MicroMipsInstrFormats.td
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MicroMipsInstrInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MicroMipsSizeReduction.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/Mips.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/Mips.td
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/Mips16FrameLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/Mips16FrameLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/Mips16HardFloat.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/Mips16HardFloatInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/Mips16HardFloatInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/Mips16ISelDAGToDAG.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/Mips16ISelDAGToDAG.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/Mips16ISelLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/Mips16ISelLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/Mips16InstrFormats.td
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/Mips16InstrInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/Mips16InstrInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/Mips16InstrInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/Mips16RegisterInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/Mips16RegisterInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/Mips32r6InstrFormats.td
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/Mips32r6InstrInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/Mips64InstrInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/Mips64r6InstrInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsAnalyzeImmediate.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsAnalyzeImmediate.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsAsmPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsAsmPrinter.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsBranchExpansion.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsCCState.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsCCState.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsCallLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsCallLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsCallingConv.td
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsCondMov.td
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsConstantIslandPass.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsDSPInstrFormats.td
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsDSPInstrInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsDelaySlotFiller.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsEVAInstrFormats.td
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsEVAInstrInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsExpandPseudo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsFastISel.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsFrameLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsFrameLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsISelDAGToDAG.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsISelDAGToDAG.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsISelLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsISelLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsInstrFPU.td
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsInstrFormats.td
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsInstrInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsInstrInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsInstrInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsInstructionSelector.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsLegalizerInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsLegalizerInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsMCInstLower.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsMCInstLower.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsMSAInstrFormats.td
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsMSAInstrInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsMTInstrFormats.td
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsMTInstrInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsMachineFunction.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsMachineFunction.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsOptimizePICCall.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsOptionRecord.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsOs16.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsPreLegalizerCombiner.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsRegisterBankInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsRegisterBankInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsRegisterBanks.td
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsRegisterInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsRegisterInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsRegisterInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsSEFrameLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsSEFrameLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsSEISelDAGToDAG.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsSEISelDAGToDAG.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsSEISelLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsSEISelLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsSEInstrInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsSEInstrInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsSERegisterInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsSERegisterInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsSchedule.td
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsScheduleGeneric.td
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsScheduleP5600.td
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsSubtarget.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsSubtarget.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsTargetMachine.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsTargetMachine.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsTargetObjectFile.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsTargetObjectFile.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/MipsTargetStreamer.h
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/TargetInfo/MipsTargetInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Mips/TargetInfo/MipsTargetInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/InstPrinter
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/MCTargetDesc/NVPTXBaseInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/MCTargetDesc/NVPTXInstPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/MCTargetDesc/NVPTXInstPrinter.h
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/MCTargetDesc/NVPTXMCAsmInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/MCTargetDesc/NVPTXMCAsmInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/MCTargetDesc/NVPTXMCTargetDesc.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/MCTargetDesc/NVPTXMCTargetDesc.h
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/MCTargetDesc/NVPTXTargetStreamer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/MCTargetDesc/NVPTXTargetStreamer.h
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/ManagedStringPool.h
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTX.h
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTX.td
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXAllocaHoisting.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXAllocaHoisting.h
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXAsmPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXAsmPrinter.h
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXAssignValidGlobalNames.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXFrameLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXFrameLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXGenericToNVVM.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXISelDAGToDAG.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXISelDAGToDAG.h
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXISelLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXISelLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXImageOptimizer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXInstrFormats.td
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXInstrInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXInstrInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXInstrInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXIntrinsics.td
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXLowerAggrCopies.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXLowerAggrCopies.h
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXLowerAlloca.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXLowerArgs.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXMCExpr.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXMCExpr.h
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXMachineFunctionInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXPeephole.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXPrologEpilogPass.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXProxyRegErasure.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXRegisterInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXRegisterInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXRegisterInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXReplaceImageHandles.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXSubtarget.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXSubtarget.h
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXTargetMachine.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXTargetMachine.h
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXTargetObjectFile.h
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXTargetTransformInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXTargetTransformInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXUtilities.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVPTXUtilities.h
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVVMIntrRange.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/NVVMReflect.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/TargetInfo/NVPTXTargetInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/NVPTX/TargetInfo/NVPTXTargetInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/Nios2
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/AsmParser/PPCAsmParser.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/Disassembler/PPCDisassembler.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/InstPrinter
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCAsmBackend.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCELFObjectWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCFixupKinds.h
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCInstPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCInstPrinter.h
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCAsmInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCAsmInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCCodeEmitter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCCodeEmitter.h
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCExpr.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCExpr.h
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCTargetDesc.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCTargetDesc.h
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMachObjectWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCPredicates.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCPredicates.h
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCXCOFFObjectWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/P9InstrResources.td
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPC.h
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPC.td
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCAsmPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCBoolRetToInt.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCBranchCoalescing.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCBranchSelector.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCCCState.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCCCState.h
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCCTRLoops.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCCallingConv.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCCallingConv.h
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCCallingConv.td
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCEarlyReturn.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCExpandISEL.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCFastISel.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCFrameLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCFrameLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCHazardRecognizers.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCHazardRecognizers.h
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCISelDAGToDAG.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCISelLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCISelLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCInstr64Bit.td
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCInstrAltivec.td
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCInstrBuilder.h
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCInstrFormats.td
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCInstrHTM.td
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCInstrInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCInstrInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCInstrInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCInstrQPX.td
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCInstrSPE.td
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCInstrVSX.td
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCLoopPreIncPrep.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCMCInstLower.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCMIPeephole.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCMachineFunctionInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCMachineFunctionInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCMachineScheduler.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCMachineScheduler.h
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCPerfectShuffle.h
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCPfmCounters.td
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCPreEmitPeephole.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCQPXLoadSplat.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCReduceCRLogicals.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCRegisterInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCRegisterInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCRegisterInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCSchedule.td
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCSchedule440.td
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCScheduleA2.td
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCScheduleE500.td
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCScheduleE500mc.td
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCScheduleE5500.td
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCScheduleG3.td
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCScheduleG4.td
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCScheduleG4Plus.td
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCScheduleG5.td
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCScheduleP7.td
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCScheduleP8.td
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCScheduleP9.td
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCSubtarget.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCSubtarget.h
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCTLSDynamicCall.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCTOCRegDeps.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCTargetMachine.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCTargetMachine.h
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCTargetObjectFile.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCTargetObjectFile.h
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCTargetStreamer.h
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCTargetTransformInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCTargetTransformInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCVSXCopy.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCVSXFMAMutate.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/PPCVSXSwapRemoval.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/README_P9.txt
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/TargetInfo/PowerPCTargetInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/PowerPC/TargetInfo/PowerPCTargetInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/AsmParser/RISCVAsmParser.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/Disassembler/RISCVDisassembler.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/InstPrinter
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/MCTargetDesc/RISCVAsmBackend.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/MCTargetDesc/RISCVAsmBackend.h
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/MCTargetDesc/RISCVELFObjectWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/MCTargetDesc/RISCVELFStreamer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/MCTargetDesc/RISCVELFStreamer.h
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/MCTargetDesc/RISCVFixupKinds.h
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/MCTargetDesc/RISCVInstPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/MCTargetDesc/RISCVInstPrinter.h
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/MCTargetDesc/RISCVMCAsmInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/MCTargetDesc/RISCVMCAsmInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/MCTargetDesc/RISCVMCCodeEmitter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/MCTargetDesc/RISCVMCExpr.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/MCTargetDesc/RISCVMCExpr.h
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/MCTargetDesc/RISCVMCTargetDesc.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/MCTargetDesc/RISCVMCTargetDesc.h
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/MCTargetDesc/RISCVTargetStreamer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/MCTargetDesc/RISCVTargetStreamer.h
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/RISCV.h
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/RISCV.td
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/RISCVAsmPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/RISCVCallingConv.td
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/RISCVExpandPseudoInsts.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/RISCVFrameLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/RISCVFrameLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/RISCVISelDAGToDAG.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/RISCVISelLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/RISCVISelLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/RISCVInstrFormats.td
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/RISCVInstrFormatsC.td
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/RISCVInstrInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/RISCVInstrInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/RISCVInstrInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/RISCVInstrInfoA.td
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/RISCVInstrInfoC.td
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/RISCVInstrInfoD.td
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/RISCVInstrInfoF.td
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/RISCVInstrInfoM.td
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/RISCVMCInstLower.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/RISCVMachineFunctionInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/RISCVMergeBaseOffset.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/RISCVRegisterInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/RISCVRegisterInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/RISCVRegisterInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/RISCVSubtarget.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/RISCVSubtarget.h
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/RISCVSystemOperands.td
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/RISCVTargetMachine.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/RISCVTargetMachine.h
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/RISCVTargetObjectFile.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/RISCVTargetObjectFile.h
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/RISCVTargetTransformInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/RISCVTargetTransformInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/TargetInfo/RISCVTargetInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/TargetInfo/RISCVTargetInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/Utils/RISCVBaseInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/Utils/RISCVBaseInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/Utils/RISCVMatInt.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/RISCV/Utils/RISCVMatInt.h
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/AsmParser/SparcAsmParser.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/DelaySlotFiller.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/Disassembler/SparcDisassembler.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/InstPrinter
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/LeonFeatures.td
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/LeonPasses.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/LeonPasses.h
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/MCTargetDesc/SparcAsmBackend.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/MCTargetDesc/SparcELFObjectWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/MCTargetDesc/SparcFixupKinds.h
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/MCTargetDesc/SparcInstPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/MCTargetDesc/SparcInstPrinter.h
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/MCTargetDesc/SparcMCAsmInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/MCTargetDesc/SparcMCAsmInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/MCTargetDesc/SparcMCCodeEmitter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/MCTargetDesc/SparcMCExpr.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/MCTargetDesc/SparcMCExpr.h
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/MCTargetDesc/SparcMCTargetDesc.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/MCTargetDesc/SparcMCTargetDesc.h
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/MCTargetDesc/SparcTargetStreamer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/MCTargetDesc/SparcTargetStreamer.h
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/Sparc.h
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/Sparc.td
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/SparcAsmPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/SparcCallingConv.td
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/SparcFrameLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/SparcFrameLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/SparcISelDAGToDAG.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/SparcISelLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/SparcISelLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/SparcInstr64Bit.td
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/SparcInstrAliases.td
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/SparcInstrFormats.td
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/SparcInstrInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/SparcInstrInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/SparcInstrInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/SparcInstrVIS.td
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/SparcMCInstLower.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/SparcMachineFunctionInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/SparcMachineFunctionInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/SparcRegisterInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/SparcRegisterInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/SparcRegisterInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/SparcSchedule.td
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/SparcSubtarget.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/SparcSubtarget.h
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/SparcTargetMachine.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/SparcTargetMachine.h
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/SparcTargetObjectFile.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/SparcTargetObjectFile.h
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/TargetInfo/SparcTargetInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/Sparc/TargetInfo/SparcTargetInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/AsmParser/SystemZAsmParser.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/Disassembler/SystemZDisassembler.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/InstPrinter
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZInstPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZInstPrinter.h
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCAsmBackend.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCAsmInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCAsmInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCCodeEmitter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCFixups.h
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCObjectWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCTargetDesc.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCTargetDesc.h
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZ.h
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZ.td
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZAsmPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZAsmPrinter.h
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZCallingConv.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZCallingConv.h
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZCallingConv.td
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZConstantPoolValue.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZConstantPoolValue.h
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZElimCompare.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZExpandPseudo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZFeatures.td
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZFrameLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZFrameLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZHazardRecognizer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZHazardRecognizer.h
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZISelDAGToDAG.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZISelLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZISelLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZInstrBuilder.h
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZInstrDFP.td
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZInstrFP.td
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZInstrFormats.td
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZInstrHFP.td
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZInstrInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZInstrInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZInstrInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZInstrSystem.td
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZInstrVector.td
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZLDCleanup.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZLongBranch.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZMCInstLower.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZMCInstLower.h
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZMachineFunctionInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZMachineFunctionInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZMachineScheduler.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZMachineScheduler.h
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZOperands.td
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZOperators.td
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZPatterns.td
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZPostRewrite.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZProcessors.td
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZRegisterInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZRegisterInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZRegisterInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZSchedule.td
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZScheduleArch13.td
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZScheduleZ13.td
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZScheduleZ14.td
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZScheduleZ196.td
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZScheduleZEC12.td
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZSelectionDAGInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZSelectionDAGInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZShortenInst.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZSubtarget.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZSubtarget.h
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZTDC.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZTargetMachine.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZTargetMachine.h
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZTargetTransformInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/SystemZTargetTransformInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/TargetInfo/SystemZTargetInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/SystemZ/TargetInfo/SystemZTargetInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/Target.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/TargetIntrinsicInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/TargetLoweringObjectFile.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/TargetMachine.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/TargetMachineC.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/AsmParser/WebAssemblyAsmParser.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/Disassembler/WebAssemblyDisassembler.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/InstPrinter/WebAssemblyInstPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/InstPrinter/WebAssemblyInstPrinter.h
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyAsmBackend.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyFixupKinds.h
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyInstPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyInstPrinter.h
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyMCAsmInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyMCAsmInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyMCCodeEmitter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyMCTargetDesc.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyMCTargetDesc.h
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyTargetStreamer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyTargetStreamer.h
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyWasmObjectWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/README.txt
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/TargetInfo/WebAssemblyTargetInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/TargetInfo/WebAssemblyTargetInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssembly.h
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssembly.td
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyAddMissingPrototypes.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyArgumentMove.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyAsmPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyAsmPrinter.h
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyCFGSort.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyCFGStackify.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyCallIndirectFixup.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyDebugValueManager.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyDebugValueManager.h
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyEHRestoreStackPointer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyExceptionInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyExceptionInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyExplicitLocals.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyFastISel.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyFixFunctionBitcasts.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyFixIrreducibleControlFlow.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyFrameLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyFrameLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyISD.def
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyISelDAGToDAG.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyISelLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyISelLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyInstrAtomics.td
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyInstrBulkMemory.td
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyInstrCall.td
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyInstrControl.td
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyInstrConv.td
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyInstrExceptRef.td
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyInstrFloat.td
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyInstrFormats.td
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyInstrInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyInstrInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyInstrInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyInstrInteger.td
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyInstrMemory.td
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyInstrRef.td
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyInstrSIMD.td
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyLateEHPrepare.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyLowerBrUnless.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyLowerEmscriptenEHSjLj.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyLowerGlobalDtors.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyMCInstLower.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyMCInstLower.h
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyMachineFunctionInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyMachineFunctionInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyMemIntrinsicResults.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyOptimizeLiveIntervals.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyOptimizeReturned.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyPeephole.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyPrepareForLiveIntervals.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyRegColoring.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyRegNumbering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyRegStackify.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyRegisterInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyRegisterInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyRegisterInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyReplacePhysRegs.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyRuntimeLibcallSignatures.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyRuntimeLibcallSignatures.h
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblySelectionDAGInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblySelectionDAGInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblySetP2AlignOperands.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblySubtarget.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblySubtarget.h
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyTargetMachine.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyTargetMachine.h
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyTargetObjectFile.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyTargetObjectFile.h
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyTargetTransformInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyTargetTransformInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyUtilities.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/WebAssemblyUtilities.h
/freebsd-11-stable/contrib/llvm/lib/Target/WebAssembly/known_gcc_test_failures.txt
/freebsd-11-stable/contrib/llvm/lib/Target/X86/AsmParser/X86AsmInstrumentation.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/AsmParser/X86AsmInstrumentation.h
/freebsd-11-stable/contrib/llvm/lib/Target/X86/AsmParser/X86AsmParser.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/AsmParser/X86AsmParserCommon.h
/freebsd-11-stable/contrib/llvm/lib/Target/X86/AsmParser/X86Operand.h
/freebsd-11-stable/contrib/llvm/lib/Target/X86/Disassembler/X86Disassembler.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/Disassembler/X86DisassemblerDecoder.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/Disassembler/X86DisassemblerDecoder.h
/freebsd-11-stable/contrib/llvm/lib/Target/X86/InstPrinter
/freebsd-11-stable/contrib/llvm/lib/Target/X86/MCTargetDesc/X86ATTInstPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/MCTargetDesc/X86ATTInstPrinter.h
/freebsd-11-stable/contrib/llvm/lib/Target/X86/MCTargetDesc/X86AsmBackend.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/MCTargetDesc/X86BaseInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/X86/MCTargetDesc/X86ELFObjectWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/MCTargetDesc/X86FixupKinds.h
/freebsd-11-stable/contrib/llvm/lib/Target/X86/MCTargetDesc/X86InstComments.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/MCTargetDesc/X86InstComments.h
/freebsd-11-stable/contrib/llvm/lib/Target/X86/MCTargetDesc/X86InstPrinterCommon.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/MCTargetDesc/X86InstPrinterCommon.h
/freebsd-11-stable/contrib/llvm/lib/Target/X86/MCTargetDesc/X86IntelInstPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/MCTargetDesc/X86IntelInstPrinter.h
/freebsd-11-stable/contrib/llvm/lib/Target/X86/MCTargetDesc/X86MCAsmInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/MCTargetDesc/X86MCAsmInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/X86/MCTargetDesc/X86MCCodeEmitter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/MCTargetDesc/X86MCExpr.h
/freebsd-11-stable/contrib/llvm/lib/Target/X86/MCTargetDesc/X86MCTargetDesc.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/MCTargetDesc/X86MCTargetDesc.h
/freebsd-11-stable/contrib/llvm/lib/Target/X86/MCTargetDesc/X86MachObjectWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/MCTargetDesc/X86TargetStreamer.h
/freebsd-11-stable/contrib/llvm/lib/Target/X86/MCTargetDesc/X86WinCOFFObjectWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/MCTargetDesc/X86WinCOFFStreamer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/MCTargetDesc/X86WinCOFFTargetStreamer.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/ShadowCallStack.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/TargetInfo/X86TargetInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/TargetInfo/X86TargetInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/X86/Utils/X86ShuffleDecode.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/Utils/X86ShuffleDecode.h
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86.h
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86.td
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86AsmPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86AsmPrinter.h
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86AvoidStoreForwardingBlocks.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86CallFrameOptimization.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86CallLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86CallLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86CallingConv.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86CallingConv.h
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86CallingConv.td
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86CmovConversion.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86CondBrFolding.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86DiscriminateMemOps.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86DomainReassignment.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86EvexToVex.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86ExpandPseudo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86FastISel.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86FixupBWInsts.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86FixupLEAs.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86FixupSetCC.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86FlagsCopyLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86FloatingPoint.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86FrameLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86FrameLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86GenRegisterBankInfo.def
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86ISelDAGToDAG.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86ISelLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86ISelLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86IndirectBranchTracking.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86InsertPrefetch.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86Instr3DNow.td
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86InstrAVX512.td
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86InstrArithmetic.td
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86InstrBuilder.h
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86InstrCMovSetCC.td
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86InstrCompiler.td
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86InstrControl.td
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86InstrExtension.td
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86InstrFMA.td
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86InstrFMA3Info.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86InstrFMA3Info.h
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86InstrFPStack.td
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86InstrFoldTables.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86InstrFoldTables.h
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86InstrFormats.td
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86InstrFragmentsSIMD.td
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86InstrInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86InstrInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86InstrInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86InstrMMX.td
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86InstrMPX.td
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86InstrSGX.td
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86InstrSSE.td
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86InstrSVM.td
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86InstrShiftRotate.td
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86InstrSystem.td
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86InstrTSX.td
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86InstrVMX.td
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86InstrVecCompiler.td
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86InstrXOP.td
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86InstructionSelector.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86InterleavedAccess.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86IntrinsicsInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86LegalizerInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86LegalizerInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86MCInstLower.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86MachineFunctionInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86MachineFunctionInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86MacroFusion.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86MacroFusion.h
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86OptimizeLEAs.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86PadShortFunction.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86PfmCounters.td
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86RegisterBankInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86RegisterBankInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86RegisterBanks.td
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86RegisterInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86RegisterInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86RegisterInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86RetpolineThunks.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86SchedBroadwell.td
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86SchedHaswell.td
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86SchedPredicates.td
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86SchedSandyBridge.td
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86SchedSkylakeClient.td
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86SchedSkylakeServer.td
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86Schedule.td
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86ScheduleAtom.td
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86ScheduleBdVer2.td
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86ScheduleBtVer2.td
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86ScheduleSLM.td
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86ScheduleZnver1.td
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86SelectionDAGInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86SelectionDAGInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86ShuffleDecodeConstantPool.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86ShuffleDecodeConstantPool.h
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86SpeculativeLoadHardening.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86Subtarget.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86Subtarget.h
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86TargetMachine.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86TargetMachine.h
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86TargetObjectFile.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86TargetObjectFile.h
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86TargetTransformInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86TargetTransformInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86VZeroUpper.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86WinAllocaExpander.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/X86/X86WinEHState.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/XCore/Disassembler/XCoreDisassembler.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/XCore/InstPrinter
/freebsd-11-stable/contrib/llvm/lib/Target/XCore/MCTargetDesc/XCoreInstPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/XCore/MCTargetDesc/XCoreInstPrinter.h
/freebsd-11-stable/contrib/llvm/lib/Target/XCore/MCTargetDesc/XCoreMCAsmInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/XCore/MCTargetDesc/XCoreMCAsmInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/XCore/MCTargetDesc/XCoreMCTargetDesc.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/XCore/MCTargetDesc/XCoreMCTargetDesc.h
/freebsd-11-stable/contrib/llvm/lib/Target/XCore/TargetInfo/XCoreTargetInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/XCore/TargetInfo/XCoreTargetInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/XCore/XCore.h
/freebsd-11-stable/contrib/llvm/lib/Target/XCore/XCore.td
/freebsd-11-stable/contrib/llvm/lib/Target/XCore/XCoreAsmPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/XCore/XCoreCallingConv.td
/freebsd-11-stable/contrib/llvm/lib/Target/XCore/XCoreFrameLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/XCore/XCoreFrameLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/XCore/XCoreFrameToArgsOffsetElim.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/XCore/XCoreISelDAGToDAG.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/XCore/XCoreISelLowering.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/XCore/XCoreISelLowering.h
/freebsd-11-stable/contrib/llvm/lib/Target/XCore/XCoreInstrFormats.td
/freebsd-11-stable/contrib/llvm/lib/Target/XCore/XCoreInstrInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/XCore/XCoreInstrInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/XCore/XCoreInstrInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/XCore/XCoreLowerThreadLocal.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/XCore/XCoreMCInstLower.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/XCore/XCoreMCInstLower.h
/freebsd-11-stable/contrib/llvm/lib/Target/XCore/XCoreMachineFunctionInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/XCore/XCoreMachineFunctionInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/XCore/XCoreRegisterInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/XCore/XCoreRegisterInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/XCore/XCoreRegisterInfo.td
/freebsd-11-stable/contrib/llvm/lib/Target/XCore/XCoreSelectionDAGInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/XCore/XCoreSelectionDAGInfo.h
/freebsd-11-stable/contrib/llvm/lib/Target/XCore/XCoreSubtarget.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/XCore/XCoreSubtarget.h
/freebsd-11-stable/contrib/llvm/lib/Target/XCore/XCoreTargetMachine.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/XCore/XCoreTargetMachine.h
/freebsd-11-stable/contrib/llvm/lib/Target/XCore/XCoreTargetObjectFile.cpp
/freebsd-11-stable/contrib/llvm/lib/Target/XCore/XCoreTargetObjectFile.h
/freebsd-11-stable/contrib/llvm/lib/Target/XCore/XCoreTargetStreamer.h
/freebsd-11-stable/contrib/llvm/lib/Target/XCore/XCoreTargetTransformInfo.h
/freebsd-11-stable/contrib/llvm/lib/Testing/Support/Annotations.cpp
/freebsd-11-stable/contrib/llvm/lib/Testing/Support/Error.cpp
/freebsd-11-stable/contrib/llvm/lib/TextAPI/ELF/ELFStub.cpp
/freebsd-11-stable/contrib/llvm/lib/TextAPI/ELF/TBEHandler.cpp
/freebsd-11-stable/contrib/llvm/lib/TextAPI/MachO
/freebsd-11-stable/contrib/llvm/lib/ToolDrivers/llvm-dlltool/DlltoolDriver.cpp
/freebsd-11-stable/contrib/llvm/lib/ToolDrivers/llvm-lib/LibDriver.cpp
/freebsd-11-stable/contrib/llvm/lib/ToolDrivers/llvm-lib/Options.td
/freebsd-11-stable/contrib/llvm/lib/Transforms/AggressiveInstCombine/AggressiveInstCombine.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/AggressiveInstCombine/AggressiveInstCombineInternal.h
/freebsd-11-stable/contrib/llvm/lib/Transforms/AggressiveInstCombine/TruncInstCombine.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Coroutines/CoroCleanup.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Coroutines/CoroEarly.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Coroutines/CoroElide.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Coroutines/CoroFrame.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Coroutines/CoroInstr.h
/freebsd-11-stable/contrib/llvm/lib/Transforms/Coroutines/CoroInternal.h
/freebsd-11-stable/contrib/llvm/lib/Transforms/Coroutines/CoroSplit.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Coroutines/Coroutines.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/IPO/AlwaysInliner.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/IPO/ArgumentPromotion.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/IPO/Attributor.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/IPO/BarrierNoopPass.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/IPO/BlockExtractor.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/IPO/CalledValuePropagation.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/IPO/ConstantMerge.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/IPO/CrossDSOCFI.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/IPO/DeadArgumentElimination.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/IPO/ElimAvailExtern.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/IPO/ExtractGV.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/IPO/ForceFunctionAttrs.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/IPO/FunctionAttrs.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/IPO/FunctionImport.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/IPO/GlobalDCE.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/IPO/GlobalOpt.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/IPO/GlobalSplit.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/IPO/HotColdSplitting.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/IPO/IPConstantPropagation.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/IPO/IPO.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/IPO/InferFunctionAttrs.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/IPO/InlineSimple.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/IPO/Inliner.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/IPO/Internalize.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/IPO/LoopExtractor.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/IPO/LowerTypeTests.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/IPO/MergeFunctions.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/IPO/PartialInlining.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/IPO/PassManagerBuilder.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/IPO/PruneEH.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/IPO/SCCP.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/IPO/SampleProfile.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/IPO/StripDeadPrototypes.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/IPO/StripSymbols.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/IPO/SyntheticCountsPropagation.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/IPO/ThinLTOBitcodeWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/IPO/WholeProgramDevirt.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/InstCombine/InstCombineAddSub.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/InstCombine/InstCombineAndOrXor.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/InstCombine/InstCombineAtomicRMW.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/InstCombine/InstCombineCalls.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/InstCombine/InstCombineCasts.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/InstCombine/InstCombineCompares.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/InstCombine/InstCombineInternal.h
/freebsd-11-stable/contrib/llvm/lib/Transforms/InstCombine/InstCombineLoadStoreAlloca.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/InstCombine/InstCombineMulDivRem.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/InstCombine/InstCombinePHI.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/InstCombine/InstCombineSelect.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/InstCombine/InstCombineShifts.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/InstCombine/InstCombineSimplifyDemanded.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/InstCombine/InstCombineVectorOps.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/InstCombine/InstructionCombining.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Instrumentation/BoundsChecking.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Instrumentation/CFGMST.h
/freebsd-11-stable/contrib/llvm/lib/Transforms/Instrumentation/CGProfile.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Instrumentation/ControlHeightReduction.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Instrumentation/DataFlowSanitizer.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Instrumentation/EfficiencySanitizer.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Instrumentation/GCOVProfiling.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Instrumentation/HWAddressSanitizer.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Instrumentation/IndirectCallPromotion.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Instrumentation/InstrOrderFile.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Instrumentation/InstrProfiling.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Instrumentation/Instrumentation.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Instrumentation/MaximumSpanningTree.h
/freebsd-11-stable/contrib/llvm/lib/Transforms/Instrumentation/MemorySanitizer.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Instrumentation/PGOInstrumentation.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Instrumentation/PGOMemOPSizeOpt.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Instrumentation/PoisonChecking.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Instrumentation/SanitizerCoverage.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Instrumentation/ThreadSanitizer.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/ObjCARC/ARCRuntimeEntryPoints.h
/freebsd-11-stable/contrib/llvm/lib/Transforms/ObjCARC/BlotMapVector.h
/freebsd-11-stable/contrib/llvm/lib/Transforms/ObjCARC/DependencyAnalysis.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/ObjCARC/DependencyAnalysis.h
/freebsd-11-stable/contrib/llvm/lib/Transforms/ObjCARC/ObjCARC.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/ObjCARC/ObjCARC.h
/freebsd-11-stable/contrib/llvm/lib/Transforms/ObjCARC/ObjCARCAPElim.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/ObjCARC/ObjCARCContract.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/ObjCARC/ObjCARCExpand.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/ObjCARC/ObjCARCOpts.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/ObjCARC/ProvenanceAnalysis.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/ObjCARC/ProvenanceAnalysis.h
/freebsd-11-stable/contrib/llvm/lib/Transforms/ObjCARC/ProvenanceAnalysisEvaluator.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/ObjCARC/PtrState.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/ObjCARC/PtrState.h
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/ADCE.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/AlignmentFromAssumptions.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/BDCE.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/CallSiteSplitting.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/ConstantHoisting.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/ConstantProp.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/CorrelatedValuePropagation.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/DCE.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/DeadStoreElimination.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/DivRemPairs.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/EarlyCSE.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/FlattenCFGPass.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/Float2Int.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/GVN.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/GVNHoist.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/GVNSink.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/GuardWidening.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/IVUsersPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/IndVarSimplify.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/InductiveRangeCheckElimination.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/InferAddressSpaces.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/InstSimplifyPass.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/JumpThreading.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/LICM.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/LoopAccessAnalysisPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/LoopDataPrefetch.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/LoopDeletion.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/LoopDistribute.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/LoopFuse.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/LoopIdiomRecognize.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/LoopInstSimplify.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/LoopInterchange.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/LoopLoadElimination.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/LoopPassManager.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/LoopPredication.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/LoopRerollPass.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/LoopRotation.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/LoopSimplifyCFG.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/LoopSink.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/LoopStrengthReduce.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/LoopUnrollAndJamPass.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/LoopUnrollPass.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/LoopUnswitch.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/LoopVersioningLICM.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/LowerAtomic.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/LowerExpectIntrinsic.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/LowerGuardIntrinsic.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/LowerWidenableCondition.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/MakeGuardsExplicit.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/MemCpyOptimizer.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/MergeICmps.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/MergedLoadStoreMotion.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/NaryReassociate.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/NewGVN.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/PartiallyInlineLibCalls.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/PlaceSafepoints.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/Reassociate.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/Reg2Mem.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/RewriteStatepointsForGC.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/SCCP.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/SROA.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/Scalar.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/Scalarizer.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/SeparateConstOffsetFromGEP.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/SimpleLoopUnswitch.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/SimplifyCFGPass.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/Sink.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/SpeculateAroundPHIs.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/SpeculativeExecution.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/StraightLineStrengthReduce.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/StructurizeCFG.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/TailRecursionElimination.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Scalar/WarnMissedTransforms.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/ASanStackFrameLayout.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/AddDiscriminators.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/BasicBlockUtils.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/BreakCriticalEdges.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/BuildLibCalls.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/BypassSlowDivision.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/CallPromotionUtils.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/CanonicalizeAliases.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/CloneFunction.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/CloneModule.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/CodeExtractor.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/CtorUtils.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/DemoteRegToStack.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/EntryExitInstrumenter.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/EscapeEnumerator.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/Evaluator.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/FlattenCFG.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/FunctionComparator.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/FunctionImportUtils.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/GlobalStatus.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/GuardUtils.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/ImportedFunctionsInliningStatistics.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/InlineFunction.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/InstructionNamer.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/IntegerDivision.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/LCSSA.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/LibCallsShrinkWrap.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/Local.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/LoopRotationUtils.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/LoopSimplify.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/LoopUnroll.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/LoopUnrollAndJam.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/LoopUnrollPeel.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/LoopUnrollRuntime.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/LoopUtils.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/LoopVersioning.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/LowerInvoke.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/LowerMemIntrinsics.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/LowerSwitch.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/Mem2Reg.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/MetaRenamer.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/ModuleUtils.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/NameAnonGlobals.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/PredicateInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/PromoteMemoryToRegister.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/SSAUpdater.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/SSAUpdaterBulk.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/SanitizerStats.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/SimplifyCFG.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/SimplifyIndVar.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/SimplifyLibCalls.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/SizeOpts.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/SplitModule.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/StripGCRelocates.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/StripNonLineTableDebugInfo.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/SymbolRewriter.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/UnifyFunctionExitNodes.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/Utils.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/VNCoercion.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Utils/ValueMapper.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Vectorize/LoadStoreVectorizer.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Vectorize/LoopVectorizationLegality.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Vectorize/LoopVectorizationPlanner.h
/freebsd-11-stable/contrib/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Vectorize/SLPVectorizer.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Vectorize/VPRecipeBuilder.h
/freebsd-11-stable/contrib/llvm/lib/Transforms/Vectorize/VPlan.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Vectorize/VPlan.h
/freebsd-11-stable/contrib/llvm/lib/Transforms/Vectorize/VPlanDominatorTree.h
/freebsd-11-stable/contrib/llvm/lib/Transforms/Vectorize/VPlanHCFGBuilder.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Vectorize/VPlanHCFGBuilder.h
/freebsd-11-stable/contrib/llvm/lib/Transforms/Vectorize/VPlanHCFGTransforms.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Vectorize/VPlanHCFGTransforms.h
/freebsd-11-stable/contrib/llvm/lib/Transforms/Vectorize/VPlanLoopInfo.h
/freebsd-11-stable/contrib/llvm/lib/Transforms/Vectorize/VPlanPredicator.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Vectorize/VPlanPredicator.h
/freebsd-11-stable/contrib/llvm/lib/Transforms/Vectorize/VPlanSLP.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Vectorize/VPlanValue.h
/freebsd-11-stable/contrib/llvm/lib/Transforms/Vectorize/VPlanVerifier.cpp
/freebsd-11-stable/contrib/llvm/lib/Transforms/Vectorize/VPlanVerifier.h
/freebsd-11-stable/contrib/llvm/lib/Transforms/Vectorize/Vectorize.cpp
/freebsd-11-stable/contrib/llvm/lib/WindowsManifest/WindowsManifestMerger.cpp
/freebsd-11-stable/contrib/llvm/lib/XRay/BlockIndexer.cpp
/freebsd-11-stable/contrib/llvm/lib/XRay/BlockPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/XRay/BlockVerifier.cpp
/freebsd-11-stable/contrib/llvm/lib/XRay/FDRRecordProducer.cpp
/freebsd-11-stable/contrib/llvm/lib/XRay/FDRRecords.cpp
/freebsd-11-stable/contrib/llvm/lib/XRay/FDRTraceExpander.cpp
/freebsd-11-stable/contrib/llvm/lib/XRay/FDRTraceWriter.cpp
/freebsd-11-stable/contrib/llvm/lib/XRay/FileHeaderReader.cpp
/freebsd-11-stable/contrib/llvm/lib/XRay/InstrumentationMap.cpp
/freebsd-11-stable/contrib/llvm/lib/XRay/LogBuilderConsumer.cpp
/freebsd-11-stable/contrib/llvm/lib/XRay/Profile.cpp
/freebsd-11-stable/contrib/llvm/lib/XRay/RecordInitializer.cpp
/freebsd-11-stable/contrib/llvm/lib/XRay/RecordPrinter.cpp
/freebsd-11-stable/contrib/llvm/lib/XRay/Trace.cpp
/freebsd-11-stable/contrib/llvm/tools/bugpoint/BugDriver.cpp
/freebsd-11-stable/contrib/llvm/tools/bugpoint/BugDriver.h
/freebsd-11-stable/contrib/llvm/tools/bugpoint/CrashDebugger.cpp
/freebsd-11-stable/contrib/llvm/tools/bugpoint/ExecutionDriver.cpp
/freebsd-11-stable/contrib/llvm/tools/bugpoint/ExtractFunction.cpp
/freebsd-11-stable/contrib/llvm/tools/bugpoint/FindBugs.cpp
/freebsd-11-stable/contrib/llvm/tools/bugpoint/ListReducer.h
/freebsd-11-stable/contrib/llvm/tools/bugpoint/Miscompilation.cpp
/freebsd-11-stable/contrib/llvm/tools/bugpoint/OptimizerDriver.cpp
/freebsd-11-stable/contrib/llvm/tools/bugpoint/ToolRunner.cpp
/freebsd-11-stable/contrib/llvm/tools/bugpoint/ToolRunner.h
/freebsd-11-stable/contrib/llvm/tools/bugpoint/bugpoint.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/FREEBSD-Xlist
/freebsd-11-stable/contrib/llvm/tools/clang/LICENSE.TXT
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang-c/BuildSystem.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang-c/CXCompilationDatabase.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang-c/CXErrorCode.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang-c/CXString.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang-c/Documentation.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang-c/Index.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang-c/Platform.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/ARCMigrate/ARCMT.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/ARCMigrate/ARCMTActions.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/ARCMigrate/FileRemapper.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/APValue.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/AST.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/ASTConsumer.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/ASTContext.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/ASTContextAllocate.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/ASTDiagnostic.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/ASTDumper.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/ASTDumperUtils.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/ASTFwd.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/ASTImporter.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/ASTImporterLookupTable.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/ASTImporterSharedState.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/ASTLambda.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/ASTMutationListener.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/ASTNodeTraverser.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/ASTStructuralEquivalence.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/ASTTypeTraits.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/ASTUnresolvedSet.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/ASTVector.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/Attr.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/AttrIterator.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/AttrVisitor.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/Availability.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/BaseSubobject.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/BuiltinTypes.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/CXXInheritance.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/CanonicalType.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/CharUnits.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/Comment.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/CommentBriefParser.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/CommentCommandTraits.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/CommentDiagnostic.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/CommentLexer.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/CommentParser.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/CommentSema.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/CommentVisitor.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/ComparisonCategories.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/CurrentSourceLocExprScope.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/DataCollection.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/Decl.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/DeclAccessPair.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/DeclBase.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/DeclCXX.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/DeclContextInternals.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/DeclFriend.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/DeclGroup.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/DeclLookups.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/DeclObjC.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/DeclOpenMP.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/DeclTemplate.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/DeclVisitor.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/DeclarationName.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/DependentDiagnostic.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/EvaluatedExprVisitor.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/Expr.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/ExprCXX.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/ExprObjC.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/ExprOpenMP.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/ExternalASTMerger.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/ExternalASTSource.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/FormatString.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/GlobalDecl.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/JSONNodeDumper.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/LambdaCapture.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/LexicallyOrderedRecursiveASTVisitor.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/LocInfoType.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/Mangle.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/MangleNumberingContext.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/NSAPI.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/NestedNameSpecifier.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/NonTrivialTypeVisitor.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/ODRHash.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/OSLog.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/OpenMPClause.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/OperationKinds.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/OperationKinds.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/ParentMap.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/PrettyDeclStackTrace.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/PrettyPrinter.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/QualTypeNames.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/RawCommentList.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/RecordLayout.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/RecursiveASTVisitor.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/Redeclarable.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/SelectorLocationsKind.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/Stmt.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/StmtCXX.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/StmtDataCollectors.td
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/StmtGraphTraits.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/StmtIterator.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/StmtObjC.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/StmtOpenMP.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/StmtVisitor.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/TemplateArgumentVisitor.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/TemplateBase.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/TemplateName.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/TextNodeDumper.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/Type.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/TypeLoc.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/TypeLocNodes.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/TypeLocVisitor.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/TypeNodes.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/TypeOrdering.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/TypeVisitor.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/UnresolvedSet.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/VTTBuilder.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/AST/VTableBuilder.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/ASTMatchers/ASTMatchFinder.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/ASTMatchers/ASTMatchers.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/ASTMatchers/ASTMatchersInternal.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/ASTMatchers/ASTMatchersMacros.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/ASTMatchers/Dynamic/Diagnostics.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/ASTMatchers/Dynamic/Parser.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/ASTMatchers/Dynamic/Registry.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/ASTMatchers/Dynamic/VariantValue.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/CFGReachabilityAnalysis.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/Consumed.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/Dominators.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/ExprMutationAnalyzer.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/LiveVariables.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/PostOrderCFGView.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/ReachableCode.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/ThreadSafety.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/ThreadSafetyCommon.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/ThreadSafetyLogical.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/ThreadSafetyOps.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/ThreadSafetyTIL.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/ThreadSafetyTraverse.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/ThreadSafetyUtil.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/UninitializedValues.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Analysis/AnalysisDeclContext.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Analysis/AnalysisDiagnostic.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Analysis/AnyCall.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Analysis/BodyFarm.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Analysis/CFG.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Analysis/CFGStmtMap.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Analysis/CallGraph.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Analysis/CloneDetection.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Analysis/CodeInjector.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Analysis/ConstructionContext.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Analysis/DomainSpecific/CocoaConventions.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Analysis/DomainSpecific/ObjCNoReturn.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Analysis/FlowSensitive/DataflowValues.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Analysis/ProgramPoint.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Analysis/RetainSummaryManager.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Analysis/SelectorExtras.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Analysis/Support/BumpVector.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/ABI.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/AddressSpaces.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/AlignedAllocation.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/AllDiagnostics.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/Attr.td
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/AttrDocs.td
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/AttrKinds.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/AttrSubjectMatchRules.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/Attributes.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/BitmaskEnum.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/Builtins.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/Builtins.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsAArch64.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsAMDGPU.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsARM.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsHexagon.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsLe64.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsMips.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsNEON.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsNVPTX.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsPPC.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsSystemZ.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsWebAssembly.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsX86.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsX86_64.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsXCore.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/CapturedStmt.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/CharInfo.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/CodeGenOptions.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/CodeGenOptions.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/CommentOptions.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/Cuda.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/DebugInfoOptions.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/DeclNodes.td
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/Diagnostic.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/Diagnostic.td
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticAST.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticASTKinds.td
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticAnalysis.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticAnalysisKinds.td
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticCategories.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticCategories.td
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticComment.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticCommentKinds.td
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticCommonKinds.td
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticCrossTU.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticCrossTUKinds.td
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticDocs.td
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticDriver.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticDriverKinds.td
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticError.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticFrontend.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticFrontendKinds.td
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticGroups.td
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticIDs.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticLex.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticLexKinds.td
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticOptions.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticOptions.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticParse.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticParseKinds.td
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticRefactoring.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticRefactoringKinds.td
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticSema.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticSemaKinds.td
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticSerialization.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticSerializationKinds.td
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/ExceptionSpecificationType.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/ExpressionTraits.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/Features.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/FileManager.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/FileSystemOptions.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/FileSystemStatCache.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/FixedPoint.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/IdentifierTable.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/JsonSupport.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/LLVM.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/Lambda.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/LangOptions.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/LangOptions.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/Linkage.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/MSP430Target.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/MacroBuilder.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/MemoryBufferCache.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/Module.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/ObjCRuntime.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/OpenCLExtensionTypes.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/OpenCLExtensions.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/OpenCLImageTypes.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/OpenCLOptions.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/OpenMPKinds.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/OpenMPKinds.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/OperatorKinds.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/OperatorKinds.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/OperatorPrecedence.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/PartialDiagnostic.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/PlistSupport.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/PragmaKinds.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/PrettyStackTrace.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/SanitizerBlacklist.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/SanitizerSpecialCaseList.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/Sanitizers.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/Sanitizers.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/SourceLocation.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/SourceManager.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/SourceManagerInternals.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/Specifiers.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/Stack.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/StmtNodes.td
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/SyncScope.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/TargetBuiltins.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/TargetCXXABI.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/TargetInfo.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/TargetOptions.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/TemplateKinds.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/TokenKinds.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/TokenKinds.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/TypeTraits.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/Version.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/Visibility.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/X86Target.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/XRayInstr.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/XRayLists.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/arm_fp16.td
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/arm_neon.td
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Basic/arm_neon_incl.td
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/CodeGen/BackendUtil.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/CodeGen/CGFunctionInfo.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/CodeGen/CodeGenABITypes.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/CodeGen/CodeGenAction.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/CodeGen/ConstantInitBuilder.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/CodeGen/ConstantInitFuture.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/CodeGen/ModuleBuilder.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/CodeGen/ObjectFilePCHContainerOperations.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/CodeGen/SwiftCallingConv.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/CrossTU/CrossTUDiagnostic.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/CrossTU/CrossTranslationUnit.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/DirectoryWatcher
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Driver/Action.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Driver/CC1Options.td
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Driver/CLCompatOptions.td
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Driver/ClangOptionDocs.td
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Driver/Compilation.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Driver/DarwinSDKInfo.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Driver/Distro.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Driver/Driver.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Driver/DriverDiagnostic.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Driver/Job.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Driver/Multilib.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Driver/Options.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Driver/Options.td
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Driver/Phases.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Driver/SanitizerArgs.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Driver/Tool.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Driver/ToolChain.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Driver/Types.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Driver/Types.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Driver/Util.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Driver/XRayArgs.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Edit/Commit.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Edit/EditedSource.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Edit/EditsReceiver.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Edit/FileOffset.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Edit/Rewriters.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Format/Format.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/ASTConsumers.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/ASTUnit.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/ChainedDiagnosticConsumer.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/CommandLineSourceLoc.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/CompilerInstance.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/CompilerInvocation.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/DependencyOutputOptions.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/DiagnosticRenderer.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/FrontendAction.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/FrontendActions.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/FrontendDiagnostic.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/FrontendOptions.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/FrontendPluginRegistry.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/LangStandard.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/LangStandards.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/LayoutOverrideSource.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/LogDiagnosticPrinter.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/MigratorOptions.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/MultiplexConsumer.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/PCHContainerOperations.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/PrecompiledPreamble.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/PreprocessorOutputOptions.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/SerializedDiagnosticPrinter.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/SerializedDiagnosticReader.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/SerializedDiagnostics.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/TextDiagnostic.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/TextDiagnosticBuffer.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/TextDiagnosticPrinter.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/Utils.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Frontend/VerifyDiagnosticConsumer.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/FrontendTool/Utils.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Index/CodegenNameGenerator.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Index/CommentToXML.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Index/DeclOccurrence.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Index/IndexDataConsumer.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Index/IndexSymbol.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Index/IndexingAction.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Index/USRGeneration.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Lex/CodeCompletionHandler.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Lex/DependencyDirectivesSourceMinimizer.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Lex/DirectoryLookup.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Lex/ExternalPreprocessorSource.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Lex/HeaderMap.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Lex/HeaderMapTypes.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Lex/HeaderSearch.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Lex/HeaderSearchOptions.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Lex/LexDiagnostic.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Lex/Lexer.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Lex/LiteralSupport.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Lex/MacroArgs.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Lex/MacroInfo.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Lex/ModuleLoader.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Lex/ModuleMap.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Lex/MultipleIncludeOpt.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Lex/PPCallbacks.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Lex/PPConditionalDirectiveRecord.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Lex/Pragma.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Lex/PreprocessingRecord.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Lex/Preprocessor.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Lex/PreprocessorLexer.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Lex/PreprocessorOptions.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Lex/ScratchBuffer.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Lex/Token.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Lex/TokenConcatenation.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Lex/TokenLexer.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Lex/VariadicMacroSupport.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Parse/LoopHint.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Parse/ParseAST.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Parse/ParseDiagnostic.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Parse/Parser.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Parse/RAIIObjectsForParser.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Rewrite/Core/DeltaTree.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Rewrite/Core/HTMLRewrite.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Rewrite/Core/RewriteBuffer.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Rewrite/Core/RewriteRope.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Rewrite/Core/Rewriter.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Rewrite/Core/TokenRewriter.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Rewrite/Frontend/ASTConsumers.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Rewrite/Frontend/FixItRewriter.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Rewrite/Frontend/FrontendActions.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Rewrite/Frontend/Rewriters.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Sema/AnalysisBasedWarnings.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Sema/CXXFieldCollector.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Sema/CleanupInfo.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Sema/CodeCompleteConsumer.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Sema/CodeCompleteOptions.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Sema/DeclSpec.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Sema/DelayedDiagnostic.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Sema/Designator.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Sema/ExternalSemaSource.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Sema/IdentifierResolver.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Sema/Initialization.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Sema/Lookup.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Sema/MultiplexExternalSemaSource.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Sema/ObjCMethodList.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Sema/Overload.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Sema/Ownership.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Sema/ParsedAttr.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Sema/ParsedTemplate.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Sema/Scope.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Sema/ScopeInfo.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Sema/Sema.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Sema/SemaConsumer.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Sema/SemaDiagnostic.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Sema/SemaFixItUtils.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Sema/SemaInternal.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Sema/SemaLambda.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Sema/Template.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Sema/TemplateDeduction.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Sema/TemplateInstCallback.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Sema/TypoCorrection.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Sema/Weak.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Serialization/ASTBitCodes.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Serialization/ASTDeserializationListener.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Serialization/ASTReader.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Serialization/ASTWriter.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Serialization/ContinuousRangeMap.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Serialization/GlobalModuleIndex.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Serialization/InMemoryModuleCache.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Serialization/Module.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Serialization/ModuleFileExtension.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Serialization/ModuleManager.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Serialization/PCHContainerOperations.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Serialization/SerializationDiagnostic.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Checkers/BuiltinCheckerRegistration.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Checkers/CheckerBase.td
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Checkers/Checkers.td
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Checkers/LocalCheckers.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Checkers/MPIFunctionClassifier.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Checkers/SValExplainer.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/Analyses.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/AnalyzerOptions.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/AnalyzerOptions.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/BugReporter/BugReporter.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/BugReporter/BugReporterVisitors.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/BugReporter/BugType.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/BugReporter/CommonBugCategories.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/BugReporter/PathDiagnostic.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/Checker.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/CheckerManager.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/IssueHash.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathDiagnosticConsumers.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/APSIntType.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/AnalysisManager.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/BasicValueFactory.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/BlockCounter.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/CallEvent.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/CheckerContext.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/CheckerHelpers.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ConstraintManager.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/CoreEngine.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/DynamicTypeInfo.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/DynamicTypeMap.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/Environment.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ExplodedGraph.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ExprEngine.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/FunctionSummary.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/LoopUnrolling.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/LoopWidening.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/MemRegion.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ProgramState.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ProgramStateTrait.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ProgramState_Fwd.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/RangedConstraintManager.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/Regions.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SMTConstraintManager.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SMTConv.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SMTExpr.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SMTSolver.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SMTSort.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SValBuilder.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SValVisitor.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SVals.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SVals.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SimpleConstraintManager.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/Store.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/StoreRef.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SubEngine.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SummaryManager.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SymExpr.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SymbolManager.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/Symbols.def
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/TaintManager.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/TaintTag.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/WorkList.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/RetainSummaryManager.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Frontend/AnalysisConsumer.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Frontend/CheckerRegistration.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Frontend/CheckerRegistry.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Frontend/FrontendActions.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Frontend/ModelConsumer.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/ASTDiff/ASTDiff.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/ASTDiff/ASTDiffInternal.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/AllTUsExecution.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/ArgumentsAdjusters.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/CommonOptionsParser.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/CompilationDatabase.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/CompilationDatabasePluginRegistry.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/Core/Diagnostic.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/Core/Lookup.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/Core/Replacement.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/DependencyScanning
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/DiagnosticsYaml.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/Execution.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/FileMatchTrie.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/FixIt.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/Inclusions/HeaderIncludes.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/Inclusions/IncludeStyle.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/JSONCompilationDatabase.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/Refactoring.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/Refactoring/ASTSelection.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/Refactoring/AtomicChange.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/Refactoring/Extract/Extract.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/Refactoring/RangeSelector.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/Refactoring/RecursiveSymbolVisitor.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/Refactoring/RefactoringAction.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/Refactoring/RefactoringActionRule.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/Refactoring/RefactoringActionRuleRequirements.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/Refactoring/RefactoringActionRules.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/Refactoring/RefactoringActionRulesInternal.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/Refactoring/RefactoringDiagnostic.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/Refactoring/RefactoringOption.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/Refactoring/RefactoringOptionVisitor.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/Refactoring/RefactoringOptions.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/Refactoring/RefactoringResultConsumer.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/Refactoring/RefactoringRuleContext.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/Refactoring/Rename/RenamingAction.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/Refactoring/Rename/SymbolName.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/Refactoring/Rename/SymbolOccurrences.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/Refactoring/Rename/USRFinder.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/Refactoring/Rename/USRFindingAction.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/Refactoring/Rename/USRLocFinder.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/Refactoring/SourceCode.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/Refactoring/Stencil.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/Refactoring/Transformer.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/RefactoringCallbacks.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/ReplacementsYaml.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/StandaloneExecution.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/Syntax
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/ToolExecutorPluginRegistry.h
/freebsd-11-stable/contrib/llvm/tools/clang/include/clang/Tooling/Tooling.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/ARCMigrate/ARCMT.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/ARCMigrate/ARCMTActions.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/ARCMigrate/FileRemapper.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/ARCMigrate/Internals.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/ARCMigrate/ObjCMT.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/ARCMigrate/PlistReporter.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/ARCMigrate/TransAPIUses.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/ARCMigrate/TransARCAssign.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/ARCMigrate/TransAutoreleasePool.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/ARCMigrate/TransBlockObjCVariable.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/ARCMigrate/TransEmptyStatementsAndDealloc.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/ARCMigrate/TransGCAttrs.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/ARCMigrate/TransGCCalls.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/ARCMigrate/TransProperties.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/ARCMigrate/TransProtectedScope.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/ARCMigrate/TransRetainReleaseDealloc.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/ARCMigrate/TransUnbridgedCasts.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/ARCMigrate/TransUnusedInitDelegate.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/ARCMigrate/TransZeroOutPropsInDealloc.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/ARCMigrate/TransformActions.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/ARCMigrate/Transforms.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/ARCMigrate/Transforms.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/APValue.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/ASTConsumer.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/ASTContext.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/ASTDiagnostic.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/ASTDumper.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/ASTImporter.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/ASTImporterLookupTable.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/ASTStructuralEquivalence.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/ASTTypeTraits.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/AttrImpl.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/CXXABI.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/CXXInheritance.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/Comment.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/CommentBriefParser.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/CommentCommandTraits.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/CommentLexer.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/CommentParser.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/CommentSema.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/ComparisonCategories.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/DataCollection.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/Decl.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/DeclBase.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/DeclCXX.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/DeclFriend.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/DeclGroup.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/DeclObjC.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/DeclOpenMP.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/DeclPrinter.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/DeclTemplate.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/DeclarationName.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/Expr.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/ExprCXX.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/ExprClassification.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/ExprConstant.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/ExprObjC.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/ExternalASTMerger.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/ExternalASTSource.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/FormatString.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/InheritViz.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/ItaniumCXXABI.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/ItaniumMangle.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/JSONNodeDumper.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/Linkage.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/Mangle.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/MicrosoftCXXABI.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/MicrosoftMangle.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/NSAPI.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/NestedNameSpecifier.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/ODRHash.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/OpenMPClause.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/ParentMap.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/PrintfFormatString.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/QualTypeNames.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/RawCommentList.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/RecordLayout.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/RecordLayoutBuilder.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/ScanfFormatString.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/SelectorLocationsKind.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/Stmt.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/StmtCXX.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/StmtIterator.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/StmtObjC.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/StmtOpenMP.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/StmtPrinter.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/StmtProfile.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/StmtViz.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/TemplateBase.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/TemplateName.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/TextNodeDumper.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/Type.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/TypeLoc.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/TypePrinter.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/VTTBuilder.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/AST/VTableBuilder.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/ASTMatchers/ASTMatchFinder.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/ASTMatchers/ASTMatchersInternal.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/ASTMatchers/Dynamic/Diagnostics.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/ASTMatchers/Dynamic/Marshallers.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/ASTMatchers/Dynamic/Parser.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/ASTMatchers/Dynamic/Registry.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/ASTMatchers/Dynamic/VariantValue.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Analysis/AnalysisDeclContext.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Analysis/BodyFarm.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Analysis/CFG.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Analysis/CFGReachabilityAnalysis.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Analysis/CFGStmtMap.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Analysis/CallGraph.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Analysis/CloneDetection.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Analysis/CocoaConventions.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Analysis/CodeInjector.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Analysis/ConstructionContext.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Analysis/Consumed.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Analysis/Dominators.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Analysis/ExprMutationAnalyzer.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Analysis/LiveVariables.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Analysis/ObjCNoReturn.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Analysis/PostOrderCFGView.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Analysis/ProgramPoint.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Analysis/ReachableCode.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Analysis/RetainSummaryManager.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Analysis/ThreadSafety.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Analysis/ThreadSafetyCommon.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Analysis/ThreadSafetyLogical.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Analysis/ThreadSafetyTIL.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Analysis/UninitializedValues.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Analysis/plugins
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Builtins.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/CharInfo.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/CodeGenOptions.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Cuda.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Diagnostic.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/DiagnosticIDs.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/DiagnosticOptions.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/FileManager.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/FileSystemStatCache.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/FixedPoint.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/IdentifierTable.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/LangOptions.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/MemoryBufferCache.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Module.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/ObjCRuntime.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/OpenMPKinds.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/OperatorPrecedence.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/SanitizerBlacklist.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/SanitizerSpecialCaseList.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Sanitizers.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/SourceLocation.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/SourceManager.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/TargetInfo.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/AArch64.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/AArch64.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/AMDGPU.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/AMDGPU.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/ARC.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/ARC.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/ARM.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/ARM.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/AVR.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/AVR.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/BPF.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/BPF.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/Hexagon.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/Hexagon.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/Lanai.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/Lanai.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/Le64.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/Le64.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/MSP430.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/MSP430.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/Mips.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/Mips.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/NVPTX.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/NVPTX.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/OSTargets.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/OSTargets.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/PNaCl.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/PNaCl.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/PPC.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/PPC.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/RISCV.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/RISCV.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/SPIR.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/SPIR.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/Sparc.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/Sparc.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/SystemZ.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/SystemZ.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/TCE.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/TCE.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/WebAssembly.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/WebAssembly.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/X86.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/X86.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/XCore.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Targets/XCore.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/TokenKinds.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Version.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/Warnings.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/XRayInstr.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Basic/XRayLists.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/ABIInfo.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/Address.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/BackendUtil.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGAtomic.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGBlocks.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGBlocks.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGBuilder.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGBuiltin.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGCUDANV.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGCUDARuntime.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGCUDARuntime.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGCXX.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGCXXABI.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGCXXABI.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGCall.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGCall.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGClass.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGCleanup.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGCleanup.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGCoroutine.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGDebugInfo.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGDebugInfo.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGDecl.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGDeclCXX.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGException.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGExpr.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGExprAgg.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGExprCXX.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGExprComplex.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGExprConstant.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGExprScalar.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGGPUBuiltin.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGLoopInfo.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGLoopInfo.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGNonTrivialStruct.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGObjC.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGObjCGNU.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGObjCMac.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGObjCRuntime.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGObjCRuntime.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGOpenCLRuntime.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGOpenCLRuntime.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGOpenMPRuntime.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGOpenMPRuntime.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGOpenMPRuntimeNVPTX.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGOpenMPRuntimeNVPTX.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGRecordLayout.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGRecordLayoutBuilder.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGStmt.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGStmtOpenMP.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGVTT.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGVTables.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGVTables.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CGValue.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CodeGenABITypes.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CodeGenAction.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CodeGenFunction.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CodeGenFunction.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CodeGenModule.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CodeGenModule.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CodeGenPGO.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CodeGenPGO.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CodeGenTBAA.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CodeGenTBAA.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CodeGenTypeCache.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CodeGenTypes.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CodeGenTypes.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/ConstantEmitter.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/ConstantInitBuilder.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CoverageMappingGen.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/CoverageMappingGen.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/EHScopeStack.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/ItaniumCXXABI.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/MacroPPCallbacks.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/MacroPPCallbacks.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/MicrosoftCXXABI.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/ModuleBuilder.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/ObjectFilePCHContainerOperations.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/PatternInit.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/PatternInit.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/SanitizerMetadata.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/SanitizerMetadata.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/SwiftCallingConv.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/TargetInfo.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/TargetInfo.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/VarBypassDetector.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CodeGen/VarBypassDetector.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/CrossTU/CrossTranslationUnit.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/DirectoryWatcher
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/Action.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/Compilation.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/DarwinSDKInfo.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/Distro.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/Driver.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/DriverOptions.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/InputInfo.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/Job.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/Multilib.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/Phases.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/SanitizerArgs.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/Tool.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChain.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/AMDGPU.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/AMDGPU.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/AVR.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/AVR.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/Ananas.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/Ananas.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/Arch/AArch64.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/Arch/AArch64.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/Arch/ARM.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/Arch/ARM.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/Arch/Mips.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/Arch/Mips.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/Arch/PPC.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/Arch/PPC.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/Arch/RISCV.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/Arch/RISCV.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/Arch/Sparc.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/Arch/Sparc.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/Arch/SystemZ.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/Arch/SystemZ.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/Arch/X86.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/Arch/X86.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/BareMetal.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/BareMetal.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/Clang.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/Clang.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/CloudABI.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/CloudABI.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/CommonArgs.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/CommonArgs.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/Contiki.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/Contiki.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/CrossWindows.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/CrossWindows.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/Cuda.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/Cuda.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/Darwin.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/Darwin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/DragonFly.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/DragonFly.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/FreeBSD.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/FreeBSD.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/Fuchsia.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/Fuchsia.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/Gnu.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/Gnu.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/HIP.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/HIP.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/Haiku.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/Haiku.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/Hexagon.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/Hexagon.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/Hurd.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/Hurd.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/Lanai.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/Linux.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/Linux.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/MSP430.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/MSP430.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/MSVC.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/MSVC.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/MinGW.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/MinGW.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/Minix.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/Minix.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/MipsLinux.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/MipsLinux.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/Myriad.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/Myriad.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/NaCl.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/NaCl.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/NetBSD.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/NetBSD.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/OpenBSD.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/OpenBSD.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/PPCLinux.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/PPCLinux.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/PS4CPU.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/PS4CPU.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/RISCVToolchain.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/RISCVToolchain.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/Solaris.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/Solaris.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/TCE.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/TCE.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/WebAssembly.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/WebAssembly.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/XCore.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains/XCore.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/Types.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Driver/XRayArgs.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Edit/Commit.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Edit/EditedSource.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Edit/RewriteObjCFoundationAPI.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Format/AffectedRangeManager.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Format/AffectedRangeManager.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Format/BreakableToken.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Format/BreakableToken.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Format/ContinuationIndenter.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Format/ContinuationIndenter.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Format/Encoding.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Format/Format.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Format/FormatInternal.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Format/FormatToken.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Format/FormatToken.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Format/FormatTokenLexer.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Format/FormatTokenLexer.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Format/NamespaceEndCommentsFixer.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Format/NamespaceEndCommentsFixer.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Format/SortJavaScriptImports.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Format/SortJavaScriptImports.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Format/TokenAnalyzer.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Format/TokenAnalyzer.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Format/TokenAnnotator.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Format/TokenAnnotator.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Format/UnwrappedLineFormatter.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Format/UnwrappedLineFormatter.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Format/UnwrappedLineParser.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Format/UnwrappedLineParser.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Format/UsingDeclarationsSorter.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Format/UsingDeclarationsSorter.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Format/WhitespaceManager.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Format/WhitespaceManager.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/ASTConsumers.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/ASTMerge.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/ASTUnit.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/ChainedDiagnosticConsumer.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/ChainedIncludesSource.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/CompilerInstance.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/CompilerInvocation.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/CreateInvocationFromCommandLine.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/DependencyFile.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/DependencyGraph.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/DiagnosticRenderer.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/FrontendAction.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/FrontendActions.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/FrontendOptions.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/FrontendTiming.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/HeaderIncludeGen.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/InitHeaderSearch.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/InitPreprocessor.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/InterfaceStubFunctionsConsumer.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/LangStandards.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/LayoutOverrideSource.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/LogDiagnosticPrinter.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/ModuleDependencyCollector.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/MultiplexConsumer.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/PrecompiledPreamble.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/PrintPreprocessedOutput.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/Rewrite/FixItRewriter.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/Rewrite/FrontendActions.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/Rewrite/HTMLPrint.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/Rewrite/InclusionRewriter.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/Rewrite/RewriteMacros.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/Rewrite/RewriteModernObjC.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/Rewrite/RewriteObjC.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/Rewrite/RewriteTest.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/SerializedDiagnosticPrinter.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/SerializedDiagnosticReader.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/TestModuleFileExtension.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/TestModuleFileExtension.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/TextDiagnostic.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/TextDiagnosticBuffer.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/TextDiagnosticPrinter.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Frontend/VerifyDiagnosticConsumer.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/FrontendTool/ExecuteCompilerInvocation.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/__clang_cuda_builtin_vars.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/__clang_cuda_cmath.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/__clang_cuda_complex_builtins.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/__clang_cuda_device_functions.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/__clang_cuda_intrinsics.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/__clang_cuda_libdevice_declares.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/__clang_cuda_math_forward_declares.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/__clang_cuda_runtime_wrapper.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/__stddef_max_align_t.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/__wmmintrin_aes.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/__wmmintrin_pclmul.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/adxintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/altivec.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/ammintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/arm64intr.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/arm_acle.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/armintr.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/avx2intrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/avx512bf16intrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/avx512bitalgintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/avx512bwintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/avx512cdintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/avx512dqintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/avx512erintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/avx512fintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/avx512ifmaintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/avx512ifmavlintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/avx512pfintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/avx512vbmi2intrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/avx512vbmiintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/avx512vbmivlintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/avx512vlbf16intrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/avx512vlbitalgintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/avx512vlbwintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/avx512vlcdintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/avx512vldqintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/avx512vlintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/avx512vlvbmi2intrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/avx512vlvnniintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/avx512vlvp2intersectintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/avx512vnniintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/avx512vp2intersectintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/avx512vpopcntdqintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/avx512vpopcntdqvlintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/avxintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/bmi2intrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/bmiintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/cetintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/cldemoteintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/clflushoptintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/clwbintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/clzerointrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/cpuid.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/emmintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/enqcmdintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/f16cintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/float.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/fma4intrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/fmaintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/fxsrintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/gfniintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/htmintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/htmxlintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/ia32intrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/immintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/intrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/inttypes.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/invpcidintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/iso646.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/limits.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/lwpintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/lzcntintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/mm3dnow.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/mm_malloc.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/mmintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/module.modulemap
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/movdirintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/msa.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/mwaitxintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/nmmintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/opencl-c-base.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/opencl-c.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/openmp_wrappers
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/pconfigintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/pkuintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/pmmintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/popcntintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/ppc_wrappers
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/prfchwintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/ptwriteintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/rdseedintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/rtmintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/s390intrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/sgxintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/shaintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/smmintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/stdalign.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/stdarg.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/stdatomic.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/stdbool.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/stddef.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/stdint.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/stdnoreturn.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/tbmintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/tgmath.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/tmmintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/unwind.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/vadefs.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/vaesintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/varargs.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/vecintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/vpclmulqdqintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/waitpkgintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/wbnoinvdintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/wmmintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/x86intrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/xmmintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/xopintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/xsavecintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/xsaveintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/xsaveoptintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/xsavesintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Headers/xtestintrin.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Index/CodegenNameGenerator.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Index/CommentToXML.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Index/FileIndexRecord.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Index/FileIndexRecord.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Index/IndexBody.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Index/IndexDecl.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Index/IndexSymbol.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Index/IndexTypeSourceInfo.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Index/IndexingAction.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Index/IndexingContext.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Index/IndexingContext.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Index/SimpleFormatContext.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Index/USRGeneration.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Lex/DependencyDirectivesSourceMinimizer.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Lex/HeaderMap.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Lex/HeaderSearch.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Lex/Lexer.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Lex/LiteralSupport.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Lex/MacroArgs.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Lex/MacroInfo.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Lex/ModuleMap.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Lex/PPCaching.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Lex/PPCallbacks.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Lex/PPConditionalDirectiveRecord.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Lex/PPDirectives.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Lex/PPExpressions.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Lex/PPLexerChange.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Lex/PPMacroExpansion.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Lex/Pragma.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Lex/PreprocessingRecord.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Lex/Preprocessor.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Lex/PreprocessorLexer.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Lex/ScratchBuffer.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Lex/TokenConcatenation.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Lex/TokenLexer.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Lex/UnicodeCharSets.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Parse/ParseAST.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Parse/ParseCXXInlineMethods.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Parse/ParseDecl.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Parse/ParseDeclCXX.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Parse/ParseExpr.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Parse/ParseExprCXX.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Parse/ParseInit.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Parse/ParseObjc.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Parse/ParseOpenMP.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Parse/ParsePragma.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Parse/ParseStmt.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Parse/ParseStmtAsm.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Parse/ParseTemplate.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Parse/ParseTentative.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Parse/Parser.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Rewrite/DeltaTree.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Rewrite/HTMLRewrite.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Rewrite/RewriteRope.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Rewrite/Rewriter.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Rewrite/TokenRewriter.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/AnalysisBasedWarnings.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/CodeCompleteConsumer.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/CoroutineStmtBuilder.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/DeclSpec.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/DelayedDiagnostic.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/IdentifierResolver.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/JumpDiagnostics.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/MultiplexExternalSemaSource.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/OpenCLBuiltins.td
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/ParsedAttr.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/Scope.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/ScopeInfo.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/Sema.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/SemaAccess.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/SemaAttr.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/SemaCUDA.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/SemaCXXScopeSpec.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/SemaCast.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/SemaChecking.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/SemaCodeComplete.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/SemaConsumer.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/SemaCoroutine.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/SemaDecl.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/SemaDeclAttr.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/SemaDeclCXX.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/SemaDeclObjC.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/SemaExceptionSpec.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/SemaExpr.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/SemaExprCXX.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/SemaExprMember.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/SemaExprObjC.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/SemaFixItUtils.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/SemaInit.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/SemaLambda.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/SemaLookup.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/SemaModule.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/SemaObjCProperty.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/SemaOpenMP.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/SemaOverload.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/SemaPseudoObject.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/SemaStmt.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/SemaStmtAsm.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/SemaStmtAttr.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/SemaTemplate.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/SemaTemplateDeduction.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/SemaTemplateInstantiate.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/SemaTemplateInstantiateDecl.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/SemaTemplateVariadic.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/SemaType.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/TreeTransform.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/TypeLocBuilder.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Sema/TypeLocBuilder.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Serialization/ASTCommon.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Serialization/ASTCommon.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Serialization/ASTReader.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Serialization/ASTReaderDecl.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Serialization/ASTReaderInternals.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Serialization/ASTReaderStmt.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Serialization/ASTWriter.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Serialization/ASTWriterDecl.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Serialization/ASTWriterStmt.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Serialization/GeneratePCH.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Serialization/GlobalModuleIndex.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Serialization/InMemoryModuleCache.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Serialization/Module.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Serialization/ModuleFileExtension.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Serialization/ModuleManager.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Serialization/MultiOnDiskHashTable.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Serialization/PCHContainerOperations.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/AllocationState.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/AnalysisOrderChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/AnalyzerStatsChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ArrayBoundChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ArrayBoundCheckerV2.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/BasicObjCFoundationChecks.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/BlockInCriticalSectionChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/BoolAssignmentChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/BuiltinFunctionChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CStringChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CStringSyntaxChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CXXSelfAssignmentChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CallAndMessageChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CastSizeChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CastToStructChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CastValueChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CheckObjCDealloc.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CheckObjCInstMethSignature.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CheckSecuritySyntaxOnly.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CheckSizeofPointer.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CheckerDocumentation.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ChrootChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CloneChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ConversionChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DeadStoresChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DebugCheckers.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DeleteWithNonVirtualDtorChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DereferenceChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DirectIvarAssignment.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DivZeroChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DynamicTypeChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DynamicTypePropagation.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/EnumCastOutOfRangeChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ExprInspectionChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/FixedAddressChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/GCDAntipatternChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/GTestChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/GenericTaintChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/IdenticalExprChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/InnerPointerChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/InterCheckerAPI.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/IteratorChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/IvarInvalidationChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/LLVMConventionsChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/LocalizationChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MIGChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MPI-Checker/MPIBugReporter.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MPI-Checker/MPIBugReporter.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MPI-Checker/MPIChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MPI-Checker/MPIChecker.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MPI-Checker/MPIFunctionClassifier.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MPI-Checker/MPITypes.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MacOSKeychainAPIChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MacOSXAPIChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MallocChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MallocOverflowSecurityChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MallocSizeofChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MmapWriteExecChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/Move.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MoveChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/NSAutoreleasePoolChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/NSErrorChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/NoReturnFunctionChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/NonNullParamChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/NonnullGlobalConstantsChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/NullabilityChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/NumberObjectConversionChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/OSObjectCStyleCast.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCAtSyncChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCAutoreleaseWriteChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCContainersASTChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCContainersChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCMissingSuperCallChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCPropertyChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCSelfInitChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCSuperDeallocChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCUnusedIVarsChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/PaddingChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/PointerArithChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/PointerIterationChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/PointerSortingChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/PointerSubChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/PthreadLockChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/RetainCountChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/RetainCountChecker.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/RetainCountDiagnostics.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/RetainCountDiagnostics.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ReturnPointerRangeChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ReturnUndefChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ReturnValueChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/RunLoopAutoreleaseLeakChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/SimpleStreamChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/SmartPtrModeling.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/StackAddrEscapeChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/StdLibraryFunctionsChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/StreamChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/Taint.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/Taint.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/TaintTesterChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/TestAfterDivZeroChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/TraversalChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/TrustNonnullChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefBranchChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefCapturedBlockVarChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefResultChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefinedArraySubscriptChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefinedAssignmentChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UninitializedObject/UninitializedObject.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UninitializedObject/UninitializedObjectChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UninitializedObject/UninitializedPointee.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UnixAPIChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UnreachableCodeChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/VLASizeChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ValistChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/VforkChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/VirtualCallChecker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/APSIntType.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/AnalysisManager.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/AnalyzerOptions.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/BasicValueFactory.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/BlockCounter.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/BugReporter.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/BugReporterVisitors.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/CallEvent.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/Checker.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/CheckerContext.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/CheckerHelpers.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/CheckerManager.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/CommonBugCategories.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ConstraintManager.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/CoreEngine.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/DynamicTypeMap.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/Environment.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ExplodedGraph.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ExprEngine.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ExprEngineC.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ExprEngineCXX.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ExprEngineCallAndReturn.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ExprEngineObjC.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/FunctionSummary.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/HTMLDiagnostics.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/IssueHash.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/LoopUnrolling.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/LoopWidening.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/MemRegion.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/PathDiagnostic.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/PlistDiagnostics.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/PrettyStackTraceLocationContext.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ProgramState.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/RangeConstraintManager.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/RangedConstraintManager.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/RegionStore.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/RetainSummaryManager.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SMTConstraintManager.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SValBuilder.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SVals.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SarifDiagnostics.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SimpleConstraintManager.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SimpleSValBuilder.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/Store.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SubEngine.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SymbolManager.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/TaintManager.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/WorkList.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/Z3ConstraintManager.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Frontend/AnalysisConsumer.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Frontend/CheckerRegistration.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Frontend/CheckerRegistry.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Frontend/FrontendActions.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Frontend/ModelConsumer.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Frontend/ModelInjector.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Frontend/ModelInjector.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Tooling/ASTDiff/ASTDiff.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Tooling/AllTUsExecution.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Tooling/ArgumentsAdjusters.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Tooling/CommonOptionsParser.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Tooling/CompilationDatabase.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Tooling/Core/Diagnostic.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Tooling/Core/Lookup.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Tooling/Core/Replacement.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Tooling/DependencyScanning
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Tooling/Execution.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Tooling/FileMatchTrie.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Tooling/FixIt.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Tooling/GuessTargetAndModeCompilationDatabase.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Tooling/Inclusions/HeaderIncludes.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Tooling/Inclusions/IncludeStyle.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Tooling/InterpolatingCompilationDatabase.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Tooling/JSONCompilationDatabase.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Tooling/Refactoring.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Tooling/Refactoring/ASTSelection.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Tooling/Refactoring/ASTSelectionRequirements.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Tooling/Refactoring/AtomicChange.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Tooling/Refactoring/Extract/Extract.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Tooling/Refactoring/Extract/SourceExtraction.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Tooling/Refactoring/Extract/SourceExtraction.h
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Tooling/Refactoring/RangeSelector.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Tooling/Refactoring/RefactoringActions.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Tooling/Refactoring/Rename/RenamingAction.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Tooling/Refactoring/Rename/SymbolOccurrences.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Tooling/Refactoring/Rename/USRFinder.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Tooling/Refactoring/Rename/USRFindingAction.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Tooling/Refactoring/Rename/USRLocFinder.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Tooling/Refactoring/SourceCode.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Tooling/Refactoring/Stencil.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Tooling/Refactoring/Transformer.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Tooling/RefactoringCallbacks.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Tooling/StandaloneExecution.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Tooling/Syntax
/freebsd-11-stable/contrib/llvm/tools/clang/lib/Tooling/Tooling.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/tools/clang-format/ClangFormat.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/tools/driver/cc1_main.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/tools/driver/cc1as_main.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/tools/driver/cc1gen_reproducer_main.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/tools/driver/driver.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/utils/TableGen/ClangASTNodesEmitter.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/utils/TableGen/ClangAttrEmitter.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/utils/TableGen/ClangCommentCommandInfoEmitter.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/utils/TableGen/ClangCommentHTMLNamedCharacterReferenceEmitter.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/utils/TableGen/ClangCommentHTMLTagsEmitter.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/utils/TableGen/ClangDiagnosticsEmitter.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/utils/TableGen/ClangOpenCLBuiltinEmitter.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/utils/TableGen/ClangOptionDocEmitter.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/utils/TableGen/ClangSACheckersEmitter.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/utils/TableGen/NeonEmitter.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/utils/TableGen/TableGen.cpp
/freebsd-11-stable/contrib/llvm/tools/clang/utils/TableGen/TableGenBackends.h
/freebsd-11-stable/contrib/llvm/tools/llc/llc.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/CMakeLists.txt
/freebsd-11-stable/contrib/llvm/tools/lld/COFF/CMakeLists.txt
/freebsd-11-stable/contrib/llvm/tools/lld/COFF/Chunks.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/COFF/Chunks.h
/freebsd-11-stable/contrib/llvm/tools/lld/COFF/Config.h
/freebsd-11-stable/contrib/llvm/tools/lld/COFF/DLL.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/COFF/DLL.h
/freebsd-11-stable/contrib/llvm/tools/lld/COFF/DebugTypes.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/COFF/DebugTypes.h
/freebsd-11-stable/contrib/llvm/tools/lld/COFF/Driver.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/COFF/Driver.h
/freebsd-11-stable/contrib/llvm/tools/lld/COFF/DriverUtils.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/COFF/ICF.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/COFF/ICF.h
/freebsd-11-stable/contrib/llvm/tools/lld/COFF/InputFiles.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/COFF/InputFiles.h
/freebsd-11-stable/contrib/llvm/tools/lld/COFF/LTO.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/COFF/LTO.h
/freebsd-11-stable/contrib/llvm/tools/lld/COFF/MapFile.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/COFF/MapFile.h
/freebsd-11-stable/contrib/llvm/tools/lld/COFF/MarkLive.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/COFF/MarkLive.h
/freebsd-11-stable/contrib/llvm/tools/lld/COFF/MinGW.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/COFF/MinGW.h
/freebsd-11-stable/contrib/llvm/tools/lld/COFF/Options.td
/freebsd-11-stable/contrib/llvm/tools/lld/COFF/PDB.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/COFF/PDB.h
/freebsd-11-stable/contrib/llvm/tools/lld/COFF/SymbolTable.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/COFF/SymbolTable.h
/freebsd-11-stable/contrib/llvm/tools/lld/COFF/Symbols.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/COFF/Symbols.h
/freebsd-11-stable/contrib/llvm/tools/lld/COFF/TypeMerger.h
/freebsd-11-stable/contrib/llvm/tools/lld/COFF/Writer.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/COFF/Writer.h
/freebsd-11-stable/contrib/llvm/tools/lld/Common/Args.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/Common/CMakeLists.txt
/freebsd-11-stable/contrib/llvm/tools/lld/Common/ErrorHandler.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/Common/Filesystem.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/Common/Memory.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/Common/Reproduce.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/Common/Strings.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/Common/TargetOptionsCommandFlags.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/Common/Threads.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/Common/Timer.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/Common/Version.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/AArch64ErrataFix.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/AArch64ErrataFix.h
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/Arch/AArch64.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/Arch/AMDGPU.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/Arch/ARM.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/Arch/AVR.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/Arch/Hexagon.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/Arch/MSP430.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/Arch/Mips.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/Arch/MipsArchTree.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/Arch/PPC.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/Arch/PPC64.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/Arch/RISCV.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/Arch/SPARCV9.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/Arch/X86.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/Arch/X86_64.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/Bits.h
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/CMakeLists.txt
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/CallGraphSort.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/CallGraphSort.h
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/Config.h
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/DWARF.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/DWARF.h
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/Driver.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/Driver.h
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/DriverUtils.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/EhFrame.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/EhFrame.h
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/Filesystem.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/Filesystem.h
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/ICF.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/ICF.h
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/InputFiles.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/InputFiles.h
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/InputSection.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/InputSection.h
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/LTO.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/LTO.h
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/LinkerScript.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/LinkerScript.h
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/MapFile.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/MapFile.h
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/MarkLive.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/MarkLive.h
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/Options.td
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/OutputSections.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/OutputSections.h
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/Relocations.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/Relocations.h
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/ScriptLexer.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/ScriptLexer.h
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/ScriptParser.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/ScriptParser.h
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/SymbolTable.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/SymbolTable.h
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/Symbols.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/Symbols.h
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/SyntheticSections.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/SyntheticSections.h
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/Target.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/Target.h
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/Thunks.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/Thunks.h
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/Writer.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/ELF/Writer.h
/freebsd-11-stable/contrib/llvm/tools/lld/LICENSE.TXT
/freebsd-11-stable/contrib/llvm/tools/lld/docs/NewLLD.rst
/freebsd-11-stable/contrib/llvm/tools/lld/docs/Partitions.rst
/freebsd-11-stable/contrib/llvm/tools/lld/docs/ReleaseNotes.rst
/freebsd-11-stable/contrib/llvm/tools/lld/docs/WebAssembly.rst
/freebsd-11-stable/contrib/llvm/tools/lld/docs/conf.py
/freebsd-11-stable/contrib/llvm/tools/lld/docs/getting_started.rst
/freebsd-11-stable/contrib/llvm/tools/lld/docs/index.rst
/freebsd-11-stable/contrib/llvm/tools/lld/docs/ld.lld.1
/freebsd-11-stable/contrib/llvm/tools/lld/docs/missingkeyfunction.rst
/freebsd-11-stable/contrib/llvm/tools/lld/docs/partitions.dot
/freebsd-11-stable/contrib/llvm/tools/lld/docs/partitions.svg
/freebsd-11-stable/contrib/llvm/tools/lld/docs/sphinx_intro.rst
/freebsd-11-stable/contrib/llvm/tools/lld/include/lld/Common/Args.h
/freebsd-11-stable/contrib/llvm/tools/lld/include/lld/Common/Driver.h
/freebsd-11-stable/contrib/llvm/tools/lld/include/lld/Common/ErrorHandler.h
/freebsd-11-stable/contrib/llvm/tools/lld/include/lld/Common/Filesystem.h
/freebsd-11-stable/contrib/llvm/tools/lld/include/lld/Common/LLVM.h
/freebsd-11-stable/contrib/llvm/tools/lld/include/lld/Common/Memory.h
/freebsd-11-stable/contrib/llvm/tools/lld/include/lld/Common/Reproduce.h
/freebsd-11-stable/contrib/llvm/tools/lld/include/lld/Common/Strings.h
/freebsd-11-stable/contrib/llvm/tools/lld/include/lld/Common/TargetOptionsCommandFlags.h
/freebsd-11-stable/contrib/llvm/tools/lld/include/lld/Common/Threads.h
/freebsd-11-stable/contrib/llvm/tools/lld/include/lld/Common/Timer.h
/freebsd-11-stable/contrib/llvm/tools/lld/include/lld/Common/Version.h
/freebsd-11-stable/contrib/llvm/tools/lld/include/lld/Core/AbsoluteAtom.h
/freebsd-11-stable/contrib/llvm/tools/lld/include/lld/Core/ArchiveLibraryFile.h
/freebsd-11-stable/contrib/llvm/tools/lld/include/lld/Core/Atom.h
/freebsd-11-stable/contrib/llvm/tools/lld/include/lld/Core/DefinedAtom.h
/freebsd-11-stable/contrib/llvm/tools/lld/include/lld/Core/Error.h
/freebsd-11-stable/contrib/llvm/tools/lld/include/lld/Core/File.h
/freebsd-11-stable/contrib/llvm/tools/lld/include/lld/Core/Instrumentation.h
/freebsd-11-stable/contrib/llvm/tools/lld/include/lld/Core/LinkingContext.h
/freebsd-11-stable/contrib/llvm/tools/lld/include/lld/Core/Node.h
/freebsd-11-stable/contrib/llvm/tools/lld/include/lld/Core/Pass.h
/freebsd-11-stable/contrib/llvm/tools/lld/include/lld/Core/PassManager.h
/freebsd-11-stable/contrib/llvm/tools/lld/include/lld/Core/Reader.h
/freebsd-11-stable/contrib/llvm/tools/lld/include/lld/Core/Reference.h
/freebsd-11-stable/contrib/llvm/tools/lld/include/lld/Core/Resolver.h
/freebsd-11-stable/contrib/llvm/tools/lld/include/lld/Core/SharedLibraryAtom.h
/freebsd-11-stable/contrib/llvm/tools/lld/include/lld/Core/SharedLibraryFile.h
/freebsd-11-stable/contrib/llvm/tools/lld/include/lld/Core/Simple.h
/freebsd-11-stable/contrib/llvm/tools/lld/include/lld/Core/SymbolTable.h
/freebsd-11-stable/contrib/llvm/tools/lld/include/lld/Core/UndefinedAtom.h
/freebsd-11-stable/contrib/llvm/tools/lld/include/lld/Core/Writer.h
/freebsd-11-stable/contrib/llvm/tools/lld/include/lld/ReaderWriter/MachOLinkingContext.h
/freebsd-11-stable/contrib/llvm/tools/lld/include/lld/ReaderWriter/YamlContext.h
/freebsd-11-stable/contrib/llvm/tools/lld/lib/Core/DefinedAtom.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/lib/Core/Error.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/lib/Core/File.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/lib/Core/LinkingContext.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/lib/Core/Reader.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/lib/Core/Resolver.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/lib/Core/SymbolTable.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/lib/Core/Writer.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/lib/Driver/DarwinLdDriver.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/lib/ReaderWriter/FileArchive.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/ArchHandler.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/ArchHandler.h
/freebsd-11-stable/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/ArchHandler_arm.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/ArchHandler_arm64.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/ArchHandler_x86.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/ArchHandler_x86_64.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/Atoms.h
/freebsd-11-stable/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/CompactUnwindPass.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/DebugInfo.h
/freebsd-11-stable/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/ExecutableAtoms.h
/freebsd-11-stable/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/File.h
/freebsd-11-stable/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/FlatNamespaceFile.h
/freebsd-11-stable/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/GOTPass.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/LayoutPass.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/LayoutPass.h
/freebsd-11-stable/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/MachOLinkingContext.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/MachONormalizedFile.h
/freebsd-11-stable/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/MachONormalizedFileBinaryReader.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/MachONormalizedFileBinaryUtils.h
/freebsd-11-stable/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/MachONormalizedFileBinaryWriter.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/MachONormalizedFileFromAtoms.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/MachONormalizedFileToAtoms.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/MachONormalizedFileYAML.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/MachOPasses.h
/freebsd-11-stable/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/ObjCPass.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/SectCreateFile.h
/freebsd-11-stable/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/ShimPass.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/StubsPass.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/TLVPass.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/WriterMachO.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/lib/ReaderWriter/YAML/ReaderWriterYAML.cpp
/freebsd-11-stable/contrib/llvm/tools/lld/tools/lld/CMakeLists.txt
/freebsd-11-stable/contrib/llvm/tools/lld/tools/lld/lld.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/FREEBSD-Xlist
/freebsd-11-stable/contrib/llvm/tools/lldb/LICENSE.TXT
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/LLDB.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBAddress.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBAttachInfo.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBBlock.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBBreakpoint.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBBreakpointLocation.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBBreakpointName.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBBroadcaster.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBCommandInterpreter.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBCommandReturnObject.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBCommunication.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBCompileUnit.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBData.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBDebugger.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBDeclaration.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBDefines.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBError.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBEvent.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBExecutionContext.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBExpressionOptions.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBFileSpec.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBFileSpecList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBFrame.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBFunction.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBHostOS.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBInitializerOptions.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBInstruction.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBInstructionList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBLanguageRuntime.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBLaunchInfo.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBLineEntry.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBListener.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBMemoryRegionInfo.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBMemoryRegionInfoList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBModule.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBModuleSpec.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBPlatform.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBProcess.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBProcessInfo.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBQueue.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBQueueItem.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBReproducer.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBSection.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBSourceManager.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBStream.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBStringList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBStructuredData.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBSymbol.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBSymbolContext.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBSymbolContextList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBTarget.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBThread.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBThreadCollection.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBThreadPlan.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBTrace.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBTraceOptions.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBType.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBTypeCategory.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBTypeEnumMember.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBTypeFilter.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBTypeFormat.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBTypeNameSpecifier.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBTypeSummary.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBTypeSynthetic.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBUnixSignals.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBValue.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBValueList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBVariablesOptions.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/API/SBWatchpoint.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Breakpoint/Breakpoint.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointID.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointIDList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointLocation.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointLocationCollection.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointLocationList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointName.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointOptions.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointPrecondition.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointResolver.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointResolverAddress.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointResolverFileLine.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointResolverFileRegex.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointResolverName.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointResolverScripted.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointSite.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointSiteList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Breakpoint/Stoppoint.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Breakpoint/StoppointCallbackContext.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Breakpoint/StoppointLocation.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Breakpoint/Watchpoint.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Breakpoint/WatchpointList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Breakpoint/WatchpointOptions.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/Address.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/AddressRange.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/AddressResolver.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/AddressResolverFileLine.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/AddressResolverName.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/Architecture.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ClangForward.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/Communication.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/Debugger.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/Disassembler.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/DumpDataExtractor.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/DumpRegisterValue.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/EmulateInstruction.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/FileLineResolver.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/FileSpecList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/FormatEntity.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/Highlighter.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/IOHandler.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/IOStreamMacros.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/LoadedModuleInfoList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/Mangled.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/MappedHash.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/Module.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ModuleChild.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ModuleList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ModuleSpec.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/Opcode.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/PluginInterface.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/PluginManager.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/RangeMap.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/RichManglingContext.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/STLUtils.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/SearchFilter.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/Section.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/SourceManager.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/StreamAsynchronousIO.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/StreamBuffer.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/StreamFile.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/StructuredDataImpl.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ThreadSafeDenseMap.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ThreadSafeDenseSet.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ThreadSafeSTLMap.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ThreadSafeSTLVector.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ThreadSafeValue.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/UniqueCStringMap.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/UserSettingsController.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/Value.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ValueObject.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ValueObjectCast.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ValueObjectChild.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ValueObjectConstResult.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ValueObjectConstResultCast.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ValueObjectConstResultChild.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ValueObjectConstResultImpl.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ValueObjectDynamicValue.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ValueObjectList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ValueObjectMemory.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ValueObjectRegister.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ValueObjectSyntheticFilter.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/ValueObjectVariable.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Core/dwarf.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/DataFormatters/CXXFunctionPointer.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/DataFormatters/DataVisualization.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/DataFormatters/DumpValueObjectOptions.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/DataFormatters/FormatCache.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/DataFormatters/FormatClasses.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/DataFormatters/FormatManager.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/DataFormatters/FormattersContainer.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/DataFormatters/FormattersHelpers.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/DataFormatters/LanguageCategory.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/DataFormatters/StringPrinter.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/DataFormatters/TypeCategory.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/DataFormatters/TypeCategoryMap.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/DataFormatters/TypeFormat.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/DataFormatters/TypeSummary.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/DataFormatters/TypeSynthetic.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/DataFormatters/TypeValidator.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/DataFormatters/ValueObjectPrinter.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/DataFormatters/VectorIterator.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/DataFormatters/VectorType.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Expression/DWARFExpression.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Expression/DiagnosticManager.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Expression/DynamicCheckerFunctions.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Expression/Expression.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Expression/ExpressionParser.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Expression/ExpressionSourceCode.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Expression/ExpressionTypeSystemHelper.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Expression/ExpressionVariable.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Expression/FunctionCaller.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Expression/IRDynamicChecks.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Expression/IRExecutionUnit.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Expression/IRInterpreter.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Expression/IRMemoryMap.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Expression/LLVMUserExpression.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Expression/Materializer.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Expression/REPL.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Expression/UserExpression.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Expression/UtilityFunction.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/Config.h.cmake
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/ConnectionFileDescriptor.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/Debug.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/Editline.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/File.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/FileAction.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/FileCache.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/FileSystem.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/Host.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/HostGetOpt.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/HostInfo.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/HostInfoBase.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/HostNativeProcess.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/HostNativeProcessBase.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/HostNativeThread.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/HostNativeThreadBase.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/HostNativeThreadForward.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/HostProcess.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/HostThread.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/LockFile.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/LockFileBase.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/MainLoop.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/MainLoopBase.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/MonitoringProcessLauncher.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/OptionParser.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/Pipe.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/PipeBase.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/PosixApi.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/ProcessLaunchInfo.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/ProcessLauncher.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/ProcessRunLock.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/PseudoTerminal.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/SafeMachO.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/Socket.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/SocketAddress.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/StringConvert.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/Symbols.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/TaskPool.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/Terminal.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/ThreadLauncher.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/Time.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/XML.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/common/NativeBreakpointList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/common/NativeProcessProtocol.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/common/NativeRegisterContext.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/common/NativeThreadProtocol.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/common/NativeWatchpointList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/common/TCPSocket.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/common/UDPSocket.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/freebsd/HostInfoFreeBSD.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/netbsd/HostInfoNetBSD.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/openbsd/HostInfoOpenBSD.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/posix/ConnectionFileDescriptorPosix.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/posix/DomainSocket.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/posix/Fcntl.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/posix/HostInfoPosix.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/posix/HostProcessPosix.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/posix/HostThreadPosix.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/posix/LockFilePosix.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/posix/PipePosix.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Host/posix/ProcessLauncherPosixFork.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Initialization/SystemInitializer.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Initialization/SystemInitializerCommon.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Initialization/SystemLifetimeManager.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/CommandAlias.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/CommandCompletions.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/CommandHistory.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/CommandInterpreter.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/CommandObject.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/CommandObjectMultiword.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/CommandObjectRegexCommand.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/CommandOptionValidators.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/CommandReturnObject.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionArgParser.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionGroupArchitecture.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionGroupBoolean.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionGroupFile.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionGroupFormat.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionGroupOutputFile.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionGroupPlatform.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionGroupString.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionGroupUInt64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionGroupUUID.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionGroupValueObjectDisplay.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionGroupVariable.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionGroupWatchpoint.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValue.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueArch.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueArgs.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueArray.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueBoolean.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueChar.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueDictionary.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueEnumeration.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueFileSpec.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueFileSpecList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueFormat.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueFormatEntity.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueLanguage.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValuePathMappings.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueProperties.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueRegex.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueSInt64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueString.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueUInt64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValueUUID.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/OptionValues.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/Options.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/Property.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/ScriptInterpreter.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/ArmUnwindInfo.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/Block.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/ClangASTContext.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/ClangASTImporter.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/ClangExternalASTSourceCallbacks.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/ClangExternalASTSourceCommon.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/ClangUtil.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/CompactUnwindInfo.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/CompileUnit.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/CompilerDecl.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/CompilerDeclContext.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/CompilerType.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/CxxModuleHandler.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/DWARFCallFrameInfo.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/DebugMacros.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/DeclVendor.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/Declaration.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/FuncUnwinders.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/Function.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/LineEntry.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/LineTable.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/LocateSymbolFile.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/ObjectContainer.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/ObjectFile.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/PostfixExpression.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/SourceModule.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/Symbol.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/SymbolContext.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/SymbolContextScope.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/SymbolFile.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/SymbolVendor.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/Symtab.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/TaggedASTType.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/Type.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/TypeList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/TypeMap.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/TypeSystem.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/UnwindPlan.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/UnwindTable.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/Variable.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/VariableList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/VerifyDecl.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ABI.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/CPPLanguageRuntime.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/DynamicLoader.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ExecutionContext.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ExecutionContextScope.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/FileAction.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/InstrumentationRuntime.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/InstrumentationRuntimeStopInfo.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/JITLoader.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/JITLoaderList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/Language.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/LanguageRuntime.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/Memory.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/MemoryHistory.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/MemoryRegionInfo.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ModuleCache.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ObjCLanguageRuntime.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/OperatingSystem.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/PathMappingList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/Platform.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/Process.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ProcessInfo.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ProcessLaunchInfo.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ProcessStructReader.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/Queue.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/QueueItem.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/QueueList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/RegisterCheckpoint.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/RegisterContext.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/RegisterNumber.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/RemoteAwarePlatform.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/SectionLoadHistory.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/SectionLoadList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/StackFrame.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/StackFrameList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/StackFrameRecognizer.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/StackID.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/StopInfo.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/StructuredDataPlugin.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/SystemRuntime.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/Target.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/TargetList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/Thread.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ThreadCollection.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ThreadList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlan.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanBase.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanCallFunction.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanCallFunctionUsingABI.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanCallOnFunctionExit.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanCallUserExpression.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanPython.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanRunToAddress.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanShouldStopHere.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanStepInRange.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanStepInstruction.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanStepOut.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanStepOverBreakpoint.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanStepOverRange.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanStepRange.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanStepThrough.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanStepUntil.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ThreadPlanTracer.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/ThreadSpec.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/UnixSignals.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/Unwind.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Target/UnwindAssembly.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/AnsiTerminal.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/ArchSpec.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/Args.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/Baton.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/Broadcaster.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/CleanUp.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/CompletionRequest.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/Connection.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/ConstString.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/DataBuffer.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/DataBufferHeap.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/DataBufferLLVM.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/DataEncoder.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/DataExtractor.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/Endian.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/Environment.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/Event.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/FileCollector.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/FileSpec.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/Flags.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/IOObject.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/Iterable.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/JSON.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/LLDBAssert.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/Listener.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/Log.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/Logging.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/NameMatches.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/Predicate.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/ProcessInfo.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/RangeMap.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/RegisterValue.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/RegularExpression.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/Reproducer.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/ReproducerInstrumentation.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/Scalar.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/SelectHelper.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/SharedCluster.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/SharingPtr.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/State.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/Status.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/Stream.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/StreamCallback.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/StreamGDBRemote.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/StreamString.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/StreamTee.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/StringExtractor.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/StringExtractorGDBRemote.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/StringLexer.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/StringList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/StructuredData.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/TildeExpressionResolver.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/Timeout.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/Timer.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/TraceOptions.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/UUID.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/UriParser.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/UserID.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/UserIDResolver.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/VASPrintf.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/Utility/VMRange.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/lldb-defines.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/lldb-enumerations.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/lldb-forward.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/lldb-private-defines.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/lldb-private-enumerations.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/lldb-private-forward.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/lldb-private-interfaces.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/lldb-private-types.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/lldb-private.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/lldb-public.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/lldb-types.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/lldb-versioning.h
/freebsd-11-stable/contrib/llvm/tools/lldb/include/lldb/module.modulemap
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBAddress.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBAttachInfo.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBBlock.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBBreakpoint.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBBreakpointLocation.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBBreakpointName.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBBreakpointOptionCommon.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBBreakpointOptionCommon.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBBroadcaster.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBCommandInterpreter.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBCommandReturnObject.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBCommunication.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBCompileUnit.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBData.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBDebugger.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBDeclaration.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBError.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBEvent.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBExecutionContext.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBExpressionOptions.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBFileSpec.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBFileSpecList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBFrame.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBFunction.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBHostOS.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBInitializerOptions.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBInstruction.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBInstructionList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBLanguageRuntime.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBLaunchInfo.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBLineEntry.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBListener.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBMemoryRegionInfo.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBMemoryRegionInfoList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBModule.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBModuleSpec.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBPlatform.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBProcess.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBProcessInfo.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBQueue.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBQueueItem.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBReproducer.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBReproducerPrivate.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBSection.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBSourceManager.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBStream.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBStringList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBStructuredData.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBSymbol.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBSymbolContext.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBSymbolContextList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBTarget.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBThread.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBThreadCollection.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBThreadPlan.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBTrace.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBTraceOptions.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBType.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBTypeCategory.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBTypeEnumMember.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBTypeFilter.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBTypeFormat.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBTypeNameSpecifier.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBTypeSummary.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBTypeSynthetic.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBUnixSignals.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBValue.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBValueList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBVariablesOptions.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SBWatchpoint.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SystemInitializerFull.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/SystemInitializerFull.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/API/Utils.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Breakpoint/Breakpoint.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointID.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointIDList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointLocation.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointLocationCollection.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointLocationList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointName.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointOptions.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointPrecondition.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointResolver.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointResolverAddress.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointResolverFileLine.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointResolverFileRegex.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointResolverName.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointResolverScripted.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointSite.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Breakpoint/BreakpointSiteList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Breakpoint/Stoppoint.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Breakpoint/StoppointCallbackContext.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Breakpoint/StoppointLocation.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Breakpoint/Watchpoint.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Breakpoint/WatchpointList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Breakpoint/WatchpointOptions.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandCompletions.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectApropos.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectApropos.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectBreakpoint.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectBreakpoint.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectBreakpointCommand.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectBreakpointCommand.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectBugreport.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectBugreport.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectCommands.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectCommands.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectDisassemble.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectDisassemble.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectExpression.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectExpression.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectFrame.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectFrame.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectGUI.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectGUI.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectHelp.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectHelp.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectLanguage.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectLanguage.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectLog.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectLog.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectMemory.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectMemory.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectMultiword.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectPlatform.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectPlatform.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectPlugin.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectPlugin.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectProcess.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectProcess.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectQuit.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectQuit.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectRegister.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectRegister.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectReproducer.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectReproducer.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectSettings.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectSettings.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectSource.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectSource.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectStats.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectStats.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectTarget.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectTarget.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectThread.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectThread.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectType.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectType.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectVersion.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectVersion.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectWatchpoint.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectWatchpoint.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectWatchpointCommand.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/CommandObjectWatchpointCommand.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/Options.td
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Commands/OptionsBase.td
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/Address.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/AddressRange.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/AddressResolver.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/AddressResolverFileLine.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/AddressResolverName.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/Communication.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/Debugger.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/Disassembler.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/DumpDataExtractor.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/DumpRegisterValue.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/DynamicLoader.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/EmulateInstruction.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/FileLineResolver.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/FileSpecList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/FormatEntity.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/Highlighter.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/IOHandler.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/Mangled.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/Module.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/ModuleChild.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/ModuleList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/Opcode.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/PluginManager.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/RichManglingContext.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/SearchFilter.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/Section.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/SourceManager.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/StreamAsynchronousIO.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/StreamFile.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/UserSettingsController.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/Value.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/ValueObject.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/ValueObjectCast.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/ValueObjectChild.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/ValueObjectConstResult.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/ValueObjectConstResultCast.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/ValueObjectConstResultChild.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/ValueObjectConstResultImpl.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/ValueObjectDynamicValue.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/ValueObjectList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/ValueObjectMemory.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/ValueObjectRegister.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/ValueObjectSyntheticFilter.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Core/ValueObjectVariable.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/DataFormatters/CXXFunctionPointer.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/DataFormatters/DataVisualization.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/DataFormatters/DumpValueObjectOptions.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/DataFormatters/FormatCache.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/DataFormatters/FormatClasses.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/DataFormatters/FormatManager.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/DataFormatters/FormattersHelpers.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/DataFormatters/LanguageCategory.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/DataFormatters/StringPrinter.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/DataFormatters/TypeCategory.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/DataFormatters/TypeCategoryMap.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/DataFormatters/TypeFormat.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/DataFormatters/TypeSummary.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/DataFormatters/TypeSynthetic.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/DataFormatters/TypeValidator.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/DataFormatters/ValueObjectPrinter.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/DataFormatters/VectorType.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Expression/DWARFExpression.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Expression/DiagnosticManager.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Expression/Expression.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Expression/ExpressionSourceCode.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Expression/ExpressionVariable.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Expression/FunctionCaller.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Expression/IRDynamicChecks.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Expression/IRExecutionUnit.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Expression/IRInterpreter.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Expression/IRMemoryMap.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Expression/LLVMUserExpression.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Expression/Materializer.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Expression/REPL.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Expression/UserExpression.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Expression/UtilityFunction.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/Editline.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/File.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/FileAction.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/FileCache.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/FileSystem.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/GetOptInc.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/Host.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/HostInfoBase.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/HostNativeThreadBase.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/HostProcess.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/HostThread.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/LockFileBase.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/MainLoop.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/MonitoringProcessLauncher.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/NativeProcessProtocol.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/NativeRegisterContext.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/NativeThreadProtocol.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/NativeWatchpointList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/OptionParser.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/PipeBase.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/ProcessLaunchInfo.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/ProcessRunLock.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/PseudoTerminal.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/Socket.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/SocketAddress.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/StringConvert.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/Symbols.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/TCPSocket.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/TaskPool.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/Terminal.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/ThreadLauncher.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/UDPSocket.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/common/XML.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/freebsd/Host.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/freebsd/HostInfoFreeBSD.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/netbsd/Host.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/netbsd/HostInfoNetBSD.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/openbsd/Host.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/openbsd/HostInfoOpenBSD.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/posix/ConnectionFileDescriptorPosix.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/posix/DomainSocket.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/posix/FileSystem.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/posix/HostInfoPosix.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/posix/HostProcessPosix.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/posix/HostThreadPosix.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/posix/LockFilePosix.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/posix/PipePosix.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Host/posix/ProcessLauncherPosixFork.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Initialization/SystemInitializer.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Initialization/SystemInitializerCommon.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Initialization/SystemLifetimeManager.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/CommandAlias.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/CommandHistory.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/CommandInterpreter.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/CommandObject.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/CommandObjectRegexCommand.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/CommandObjectScript.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/CommandObjectScript.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/CommandOptionValidators.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/CommandReturnObject.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionArgParser.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupArchitecture.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupBoolean.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupFile.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupFormat.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupOutputFile.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupPlatform.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupString.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupUInt64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupUUID.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupValueObjectDisplay.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupVariable.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionGroupWatchpoint.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionValue.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionValueArch.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionValueArgs.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionValueArray.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionValueBoolean.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionValueChar.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionValueDictionary.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionValueEnumeration.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionValueFileSpec.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionValueFileSpecLIst.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionValueFormat.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionValueFormatEntity.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionValueLanguage.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionValuePathMappings.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionValueProperties.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionValueRegex.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionValueSInt64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionValueString.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionValueUInt64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/OptionValueUUID.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/Options.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/Property.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/ScriptInterpreter.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Interpreter/embedded_interpreter.py
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ABI/MacOSX-arm/ABIMacOSX_arm.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ABI/MacOSX-arm/ABIMacOSX_arm.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ABI/MacOSX-arm64/ABIMacOSX_arm64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ABI/MacOSX-arm64/ABIMacOSX_arm64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ABI/MacOSX-i386/ABIMacOSX_i386.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ABI/MacOSX-i386/ABIMacOSX_i386.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-arm/ABISysV_arm.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-arm/ABISysV_arm.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-arm64/ABISysV_arm64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-arm64/ABISysV_arm64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-hexagon/ABISysV_hexagon.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-hexagon/ABISysV_hexagon.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-i386/ABISysV_i386.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-i386/ABISysV_i386.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-mips/ABISysV_mips.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-mips/ABISysV_mips.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-mips64/ABISysV_mips64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-mips64/ABISysV_mips64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-ppc/ABISysV_ppc.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-ppc/ABISysV_ppc.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-ppc64/ABISysV_ppc64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-ppc64/ABISysV_ppc64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-s390x/ABISysV_s390x.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-s390x/ABISysV_s390x.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-x86_64/ABISysV_x86_64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-x86_64/ABISysV_x86_64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ABI/Windows-x86_64
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Architecture/Arm/ArchitectureArm.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Architecture/Arm/ArchitectureArm.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Architecture/Mips/ArchitectureMips.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Architecture/Mips/ArchitectureMips.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Architecture/PPC64/ArchitecturePPC64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Architecture/PPC64/ArchitecturePPC64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Disassembler/llvm/DisassemblerLLVMC.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Disassembler/llvm/DisassemblerLLVMC.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/Hexagon-DYLD/DynamicLoaderHexagonDYLD.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/Hexagon-DYLD/DynamicLoaderHexagonDYLD.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/Hexagon-DYLD/HexagonDYLDRendezvous.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/Hexagon-DYLD/HexagonDYLDRendezvous.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/AuxVector.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/AuxVector.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/DYLDRendezvous.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/DYLDRendezvous.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/DynamicLoaderPOSIXDYLD.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/DynamicLoaderPOSIXDYLD.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/Static/DynamicLoaderStatic.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/Static/DynamicLoaderStatic.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/Windows-DYLD/DynamicLoaderWindowsDYLD.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/Windows-DYLD/DynamicLoaderWindowsDYLD.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ASTDumper.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ASTDumper.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ASTResultSynthesizer.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ASTResultSynthesizer.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ASTStructExtractor.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ASTStructExtractor.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ASTUtils.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ASTUtils.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangASTSource.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangASTSource.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangDiagnostic.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionDeclMap.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionDeclMap.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionHelper.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionParser.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionParser.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionSourceCode.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionSourceCode.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionVariable.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionVariable.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangFunctionCaller.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangFunctionCaller.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangHost.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangHost.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangModulesDeclVendor.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangModulesDeclVendor.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangPersistentVariables.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangPersistentVariables.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangUserExpression.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangUserExpression.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangUtilityFunction.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangUtilityFunction.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/IRDynamicChecks.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/IRDynamicChecks.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/IRForTarget.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/IRForTarget.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ModuleDependencyCollector.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Go
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Instruction/ARM/EmulateInstructionARM.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Instruction/ARM/EmulateInstructionARM.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Instruction/ARM/EmulationStateARM.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Instruction/ARM/EmulationStateARM.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Instruction/ARM64/EmulateInstructionARM64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Instruction/ARM64/EmulateInstructionARM64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Instruction/MIPS/EmulateInstructionMIPS.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Instruction/MIPS/EmulateInstructionMIPS.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Instruction/MIPS64/EmulateInstructionMIPS64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Instruction/MIPS64/EmulateInstructionMIPS64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Instruction/PPC64/EmulateInstructionPPC64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Instruction/PPC64/EmulateInstructionPPC64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/InstrumentationRuntime/ASan/ASanRuntime.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/InstrumentationRuntime/ASan/ASanRuntime.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/InstrumentationRuntime/MainThreadChecker/MainThreadCheckerRuntime.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/InstrumentationRuntime/MainThreadChecker/MainThreadCheckerRuntime.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/InstrumentationRuntime/TSan/TSanRuntime.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/InstrumentationRuntime/TSan/TSanRuntime.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/InstrumentationRuntime/UBSan/UBSanRuntime.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/InstrumentationRuntime/UBSan/UBSanRuntime.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/JITLoader/GDB/JITLoaderGDB.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/JITLoader/GDB/JITLoaderGDB.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/BlockPointer.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/BlockPointer.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/CPlusPlusLanguage.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/CPlusPlusLanguage.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/CPlusPlusNameParser.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/CPlusPlusNameParser.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/CxxStringTypes.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/CxxStringTypes.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibCxx.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibCxx.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibCxxAtomic.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibCxxAtomic.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibCxxBitset.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibCxxInitializerList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibCxxList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibCxxMap.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibCxxOptional.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibCxxQueue.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibCxxTuple.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibCxxUnorderedMap.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibCxxVariant.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibCxxVariant.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibCxxVector.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibStdcpp.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibStdcpp.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibStdcppTuple.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibStdcppUniquePointer.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/MSVCUndecoratedNameParser.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/MSVCUndecoratedNameParser.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/ClangCommon/ClangHighlighter.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/ClangCommon/ClangHighlighter.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/Go
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/Java
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/OCaml
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/CF.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/CF.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/Cocoa.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/Cocoa.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/CoreMedia.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/CoreMedia.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/NSArray.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/NSDictionary.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/NSDictionary.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/NSError.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/NSException.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/NSIndexPath.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/NSSet.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/NSSet.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/NSString.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/NSString.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/ObjCLanguage.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/ObjCLanguage.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/ObjCPlusPlus/ObjCPlusPlusLanguage.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Language/ObjCPlusPlus/ObjCPlusPlusLanguage.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/CPlusPlus/CPPLanguageRuntime.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/CPlusPlus/CPPLanguageRuntime.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/CPlusPlus/ItaniumABI/ItaniumABILanguageRuntime.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/CPlusPlus/ItaniumABI/ItaniumABILanguageRuntime.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/Go
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/Java
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCClassDescriptorV2.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCClassDescriptorV2.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCDeclVendor.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCDeclVendor.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntime.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntime.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV1.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV1.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV2.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV2.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCTrampolineHandler.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCTrampolineHandler.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCTypeEncodingParser.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCTypeEncodingParser.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleThreadPlanStepThroughObjCTrampoline.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleThreadPlanStepThroughObjCTrampoline.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/ObjCLanguageRuntime.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/ObjCLanguageRuntime.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptExpressionOpts.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptExpressionOpts.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptRuntime.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptRuntime.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptScriptGroup.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptScriptGroup.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptx86ABIFixups.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptx86ABIFixups.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/MemoryHistory/asan/MemoryHistoryASan.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/MemoryHistory/asan/MemoryHistoryASan.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ObjectContainer/BSD-Archive/ObjectContainerBSDArchive.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ObjectContainer/BSD-Archive/ObjectContainerBSDArchive.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ObjectFile/Breakpad/BreakpadRecords.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ObjectFile/Breakpad/BreakpadRecords.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ObjectFile/Breakpad/ObjectFileBreakpad.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ObjectFile/Breakpad/ObjectFileBreakpad.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ObjectFile/ELF/ELFHeader.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ObjectFile/ELF/ELFHeader.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ObjectFile/JIT/ObjectFileJIT.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ObjectFile/JIT/ObjectFileJIT.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/OperatingSystem/Go
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/OperatingSystem/Python/OperatingSystemPython.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/OperatingSystem/Python/OperatingSystemPython.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Platform/FreeBSD/PlatformFreeBSD.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Platform/FreeBSD/PlatformFreeBSD.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Platform/NetBSD/PlatformNetBSD.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Platform/NetBSD/PlatformNetBSD.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Platform/OpenBSD/PlatformOpenBSD.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Platform/OpenBSD/PlatformOpenBSD.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Platform/POSIX/PlatformPOSIX.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Platform/POSIX/PlatformPOSIX.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Platform/gdb-server/PlatformRemoteGDBServer.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Platform/gdb-server/PlatformRemoteGDBServer.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Darwin/CFBundle.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Darwin/CFBundle.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Darwin/CFString.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Darwin/CFString.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Darwin/CFUtils.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Darwin/DarwinProcessLauncher.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Darwin/DarwinProcessLauncher.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Darwin/LaunchFlavor.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Darwin/MachException.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Darwin/MachException.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Darwin/NativeProcessDarwin.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Darwin/NativeProcessDarwin.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Darwin/NativeThreadDarwin.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Darwin/NativeThreadDarwin.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Darwin/NativeThreadListDarwin.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Darwin/NativeThreadListDarwin.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/FreeBSDThread.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/FreeBSDThread.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/POSIXStopInfo.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/POSIXStopInfo.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/ProcessFreeBSD.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/ProcessFreeBSD.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/ProcessMonitor.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/ProcessMonitor.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIX.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_arm.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_arm.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_arm64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_arm64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_mips64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_mips64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_powerpc.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_powerpc.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_x86.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_x86.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/NetBSD/NativeProcessNetBSD.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/NetBSD/NativeProcessNetBSD.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/NetBSD/NativeRegisterContextNetBSD.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/NetBSD/NativeRegisterContextNetBSD.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/NetBSD/NativeRegisterContextNetBSD_x86_64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/NetBSD/NativeRegisterContextNetBSD_x86_64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/NetBSD/NativeThreadNetBSD.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/NetBSD/NativeThreadNetBSD.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/POSIX/CrashReason.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/POSIX/CrashReason.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/POSIX/NativeProcessELF.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/POSIX/NativeProcessELF.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/POSIX/ProcessMessage.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/POSIX/ProcessMessage.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/POSIX/ProcessPOSIXLog.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/POSIX/ProcessPOSIXLog.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/ARMDefines.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/ARMUtils.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/AuxVector.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/AuxVector.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/DynamicRegisterInfo.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/DynamicRegisterInfo.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/FreeBSDSignals.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/FreeBSDSignals.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/GDBRemoteSignals.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/GDBRemoteSignals.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/HistoryThread.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/HistoryThread.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/HistoryUnwind.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/HistoryUnwind.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/InferiorCallPOSIX.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/InferiorCallPOSIX.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/InstructionUtils.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/LinuxProcMaps.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/LinuxProcMaps.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/LinuxSignals.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/LinuxSignals.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/MipsLinuxSignals.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/MipsLinuxSignals.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/NativeRegisterContextRegisterInfo.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/NativeRegisterContextRegisterInfo.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/NetBSDSignals.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/NetBSDSignals.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextDarwinConstants.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextDarwin_arm.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextDarwin_arm.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextDarwin_arm64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextDarwin_arm64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextDarwin_i386.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextDarwin_i386.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextDarwin_x86_64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextDarwin_x86_64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextDummy.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextDummy.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_i386.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_i386.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_mips64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_mips64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_powerpc.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_powerpc.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_x86_64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_x86_64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextHistory.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextHistory.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLLDB.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLLDB.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_i386.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_i386.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_mips.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_mips.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_mips64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_mips64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_s390x.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_s390x.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_x86_64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_x86_64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextMacOSXFrameBackchain.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextMacOSXFrameBackchain.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextMach_arm.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextMach_arm.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextMach_i386.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextMach_i386.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextMach_x86_64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextMach_x86_64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextMemory.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextMemory.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextNetBSD_x86_64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextNetBSD_x86_64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextOpenBSD_i386.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextOpenBSD_i386.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextOpenBSD_x86_64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextOpenBSD_x86_64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_arm.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_arm.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_arm64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_arm64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_mips64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_mips64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_powerpc.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_powerpc.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_ppc64le.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_ppc64le.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_s390x.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_s390x.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_x86.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_x86.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextThreadMemory.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextThreadMemory.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContext_mips.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContext_powerpc.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContext_s390x.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContext_x86.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfoInterface.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfoPOSIX_arm.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfoPOSIX_arm.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfoPOSIX_arm64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfoPOSIX_arm64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfoPOSIX_ppc64le.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfoPOSIX_ppc64le.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfos_arm.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfos_arm64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfos_i386.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfos_mips.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfos_mips64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfos_powerpc.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfos_ppc64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfos_ppc64le.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfos_s390x.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfos_x86_64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/StopInfoMachException.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/StopInfoMachException.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/ThreadMemory.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/ThreadMemory.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/UnwindLLDB.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/UnwindLLDB.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/UnwindMacOSXFrameBackchain.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/UnwindMacOSXFrameBackchain.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/lldb-arm-register-enums.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/lldb-arm64-register-enums.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/lldb-mips-freebsd-register-enums.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/lldb-mips-linux-register-enums.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/lldb-ppc64-register-enums.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/lldb-ppc64le-register-enums.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/lldb-s390x-register-enums.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/lldb-x86-register-enums.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/ProcessElfCore.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/ProcessElfCore.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterContextPOSIXCore_arm.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterContextPOSIXCore_arm.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterContextPOSIXCore_arm64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterContextPOSIXCore_arm64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterContextPOSIXCore_mips64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterContextPOSIXCore_mips64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterContextPOSIXCore_powerpc.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterContextPOSIXCore_powerpc.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterContextPOSIXCore_ppc64le.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterContextPOSIXCore_ppc64le.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterContextPOSIXCore_s390x.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterContextPOSIXCore_s390x.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterContextPOSIXCore_x86_64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterContextPOSIXCore_x86_64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterUtilities.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterUtilities.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/ThreadElfCore.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/ThreadElfCore.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteClientBase.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteClientBase.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationHistory.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationHistory.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationReplayServer.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationReplayServer.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServer.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServer.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerCommon.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerCommon.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerPlatform.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerPlatform.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteRegisterContext.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteRegisterContext.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemoteLog.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemoteLog.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/ThreadGDBRemote.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/ThreadGDBRemote.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/minidump/MinidumpParser.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/minidump/MinidumpParser.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/minidump/MinidumpTypes.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/minidump/MinidumpTypes.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/minidump/NtStructures.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/minidump/ProcessMinidump.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/minidump/ProcessMinidump.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/minidump/RegisterContextMinidump_ARM.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/minidump/RegisterContextMinidump_ARM.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/minidump/RegisterContextMinidump_ARM64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/minidump/RegisterContextMinidump_ARM64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/minidump/RegisterContextMinidump_x86_32.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/minidump/RegisterContextMinidump_x86_32.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/minidump/RegisterContextMinidump_x86_64.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/minidump/RegisterContextMinidump_x86_64.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/minidump/ThreadMinidump.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/Process/minidump/ThreadMinidump.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ScriptInterpreter/None/ScriptInterpreterNone.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ScriptInterpreter/None/ScriptInterpreterNone.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ScriptInterpreter/Python/PythonDataObjects.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ScriptInterpreter/Python/PythonDataObjects.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ScriptInterpreter/Python/PythonExceptionState.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ScriptInterpreter/Python/PythonExceptionState.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPythonImpl.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/ScriptInterpreter/Python/lldb-python.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/StructuredData/DarwinLog/StructuredDataDarwinLog.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/StructuredData/DarwinLog/StructuredDataDarwinLog.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/Breakpad/SymbolFileBreakpad.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/Breakpad/SymbolFileBreakpad.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/AppleDWARFIndex.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/AppleDWARFIndex.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DIERef.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DIERef.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParser.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParserClang.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParserClang.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFAbbreviationDeclaration.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFAbbreviationDeclaration.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFAttribute.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFAttribute.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFBaseDIE.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFBaseDIE.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFCompileUnit.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFCompileUnit.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFContext.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFContext.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDIE.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDIE.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDIECollection.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDIECollection.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDataExtractor.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDataExtractor.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugAbbrev.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugAbbrev.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugArangeSet.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugArangeSet.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugAranges.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugAranges.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugInfo.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugInfo.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugInfoEntry.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugInfoEntry.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugLine.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugLine.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugMacinfo.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugMacinfo.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugMacinfoEntry.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugMacinfoEntry.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugMacro.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugMacro.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugRanges.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugRanges.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDeclContext.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDeclContext.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDefines.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDefines.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFFormValue.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFFormValue.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFIndex.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFIndex.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFTypeUnit.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFTypeUnit.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFUnit.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFUnit.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DebugNamesDWARFIndex.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DebugNamesDWARFIndex.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/HashedNameToDIE.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/HashedNameToDIE.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/LogChannelDWARF.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/LogChannelDWARF.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/ManualDWARFIndex.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/ManualDWARFIndex.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/NameToDIE.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/NameToDIE.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFDebugMap.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFDebugMap.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFDwo.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFDwo.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFDwoDwp.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFDwoDwp.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFDwp.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFDwp.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/UniqueDWARFASTType.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/UniqueDWARFASTType.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/NativePDB/CodeViewRegisterMapping.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/NativePDB/CodeViewRegisterMapping.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/NativePDB/CompileUnitIndex.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/NativePDB/CompileUnitIndex.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/NativePDB/DWARFLocationExpression.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/NativePDB/DWARFLocationExpression.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/NativePDB/PdbAstBuilder.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/NativePDB/PdbAstBuilder.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/NativePDB/PdbFPOProgramToDWARFExpression.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/NativePDB/PdbFPOProgramToDWARFExpression.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/NativePDB/PdbIndex.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/NativePDB/PdbIndex.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/NativePDB/PdbSymUid.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/NativePDB/PdbSymUid.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/NativePDB/PdbUtil.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/NativePDB/PdbUtil.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/NativePDB/SymbolFileNativePDB.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/NativePDB/SymbolFileNativePDB.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/NativePDB/UdtRecordCompleter.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/NativePDB/UdtRecordCompleter.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/PDB/PDBASTParser.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/PDB/PDBASTParser.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/PDB/PDBLocationToDWARFExpression.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/PDB/PDBLocationToDWARFExpression.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/PDB/SymbolFilePDB.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/PDB/SymbolFilePDB.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/Symtab/SymbolFileSymtab.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/Symtab/SymbolFileSymtab.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolVendor/ELF/SymbolVendorELF.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolVendor/ELF/SymbolVendorELF.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/UnwindAssembly/InstEmulation/UnwindAssemblyInstEmulation.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/UnwindAssembly/InstEmulation/UnwindAssemblyInstEmulation.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/UnwindAssembly/x86/UnwindAssembly-x86.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/UnwindAssembly/x86/UnwindAssembly-x86.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/UnwindAssembly/x86/x86AssemblyInspectionEngine.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Plugins/UnwindAssembly/x86/x86AssemblyInspectionEngine.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/ArmUnwindInfo.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/Block.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/ClangASTContext.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/ClangASTImporter.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/ClangExternalASTSourceCallbacks.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/ClangExternalASTSourceCommon.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/ClangUtil.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/CompactUnwindInfo.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/CompileUnit.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/CompilerDecl.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/CompilerDeclContext.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/CompilerType.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/CxxModuleHandler.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/DWARFCallFrameInfo.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/DebugMacros.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/DeclVendor.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/Declaration.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/FuncUnwinders.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/Function.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/LineEntry.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/LineTable.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/LocateSymbolFile.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/LocateSymbolFileMacOSX.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/ObjectFile.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/PostfixExpression.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/Symbol.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/SymbolContext.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/SymbolFile.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/SymbolVendor.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/Symtab.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/Type.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/TypeList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/TypeMap.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/TypeSystem.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/UnwindPlan.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/UnwindTable.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/Variable.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/VariableList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Symbol/VerifyDecl.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ABI.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/CPPLanguageRuntime.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ExecutionContext.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/FileAction.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/InstrumentationRuntime.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/InstrumentationRuntimeStopInfo.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/JITLoader.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/JITLoaderList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/Language.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/LanguageRuntime.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/Memory.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/MemoryHistory.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ModuleCache.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ObjCLanguageRuntime.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/OperatingSystem.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/PathMappingList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/Platform.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/Process.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ProcessInfo.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ProcessLaunchInfo.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/Queue.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/QueueItem.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/QueueList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/RegisterContext.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/RegisterNumber.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/RemoteAwarePlatform.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/SectionLoadHistory.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/SectionLoadList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/StackFrame.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/StackFrameList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/StackFrameRecognizer.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/StackID.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/StopInfo.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/StructuredDataPlugin.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/SystemRuntime.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/Target.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/TargetList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/Thread.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadCollection.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadPlan.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadPlanBase.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadPlanCallFunction.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadPlanCallFunctionUsingABI.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadPlanCallOnFunctionExit.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadPlanCallUserExpression.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadPlanPython.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadPlanRunToAddress.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadPlanShouldStopHere.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadPlanStepInRange.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadPlanStepInstruction.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadPlanStepOut.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadPlanStepOverBreakpoint.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadPlanStepOverRange.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadPlanStepRange.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadPlanStepThrough.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadPlanStepUntil.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadPlanTracer.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/ThreadSpec.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/UnixSignals.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Target/UnwindAssembly.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/ARM64_DWARF_Registers.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/ARM64_ehframe_Registers.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/ARM_DWARF_Registers.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/ARM_ehframe_Registers.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/ArchSpec.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/Args.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/Baton.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/Broadcaster.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/CompletionRequest.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/Connection.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/ConstString.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/DataBufferHeap.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/DataBufferLLVM.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/DataEncoder.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/DataExtractor.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/Environment.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/Event.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/FileCollector.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/FileSpec.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/IOObject.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/JSON.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/LLDBAssert.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/Listener.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/Log.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/Logging.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/NameMatches.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/PPC64LE_DWARF_Registers.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/PPC64LE_ehframe_Registers.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/PPC64_DWARF_Registers.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/ProcessInfo.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/RegisterValue.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/RegularExpression.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/Reproducer.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/ReproducerInstrumentation.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/Scalar.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/SelectHelper.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/SharingPtr.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/State.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/Status.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/Stream.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/StreamCallback.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/StreamGDBRemote.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/StreamString.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/StringExtractor.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/StringExtractorGDBRemote.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/StringLexer.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/StringList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/StructuredData.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/TildeExpressionResolver.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/Timer.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/UUID.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/UriParser.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/UserID.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/UserIDResolver.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/UuidCompatibility.h
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/VASprintf.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/Utility/VMRange.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/source/lldb.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/argdumper/argdumper.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/driver/Driver.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/driver/Driver.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/driver/Options.td
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/driver/Platform.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/driver/Platform.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-instr
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgContext.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgContext.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgSet.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgSet.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValBase.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValBase.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValConsume.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValConsume.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValFile.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValFile.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValListBase.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValListBase.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValListOfN.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValListOfN.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValNumber.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValNumber.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValOptionLong.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValOptionLong.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValOptionShort.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValOptionShort.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValPrintValues.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValPrintValues.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValString.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValString.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValThreadGrp.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdArgValThreadGrp.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdBase.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdBase.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmd.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmd.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdBreak.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdBreak.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdData.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdData.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdEnviro.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdEnviro.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdExec.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdExec.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdFile.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdFile.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdGdbInfo.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdGdbInfo.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdGdbSet.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdGdbSet.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdGdbShow.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdGdbShow.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdGdbThread.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdGdbThread.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdMiscellanous.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdMiscellanous.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdStack.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdStack.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdSupportInfo.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdSupportInfo.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdSupportList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdSupportList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdSymbol.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdSymbol.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdTarget.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdTarget.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdThread.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdThread.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdTrace.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdTrace.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdVar.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCmdVar.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCommands.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdCommands.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdData.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdData.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdFactory.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdFactory.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdInterpreter.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdInterpreter.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdInvoker.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdInvoker.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdMgr.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdMgr.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdMgrSetCmdDeleteCallback.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmdMgrSetCmdDeleteCallback.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnBase.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnBase.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnConfig.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBBroadcaster.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBBroadcaster.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBDebugSessionInfo.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBDebugSessionInfo.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBDebugSessionInfoVarObj.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBDebugSessionInfoVarObj.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBDebugger.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBDebugger.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBDebuggerHandleEvents.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBDebuggerHandleEvents.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBProxySBValue.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBProxySBValue.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBUtilSBValue.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBUtilSBValue.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLog.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLog.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLogMediumFile.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnLogMediumFile.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnMIOutOfBandRecord.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnMIOutOfBandRecord.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnMIResultRecord.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnMIResultRecord.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnMIValue.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnMIValue.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnMIValueConst.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnMIValueConst.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnMIValueList.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnMIValueList.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnMIValueResult.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnMIValueResult.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnMIValueTuple.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnMIValueTuple.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnResources.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnResources.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnStreamStderr.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnStreamStderr.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnStreamStdin.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnStreamStdin.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnStreamStdout.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnStreamStdout.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnThreadMgrStd.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MICmnThreadMgrStd.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MIDataTypes.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MIDriver.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MIDriver.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MIDriverBase.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MIDriverBase.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MIDriverMain.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MIDriverMgr.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MIDriverMgr.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilDateTimeStd.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilDateTimeStd.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilDebug.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilDebug.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilFileStd.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilFileStd.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilMapIdToVariant.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilMapIdToVariant.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilSingletonBase.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilSingletonHelper.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilString.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilString.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilThreadBaseStd.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilThreadBaseStd.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilVariant.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/MIUtilVariant.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-mi/Platform.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-server/Acceptor.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-server/Acceptor.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-server/Darwin/resources/lldb-server-entitlements.plist
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-server/Darwin/resources/lldb-server-macos-entitlements.plist
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-server/LLDBServerUtilities.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-server/LLDBServerUtilities.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-server/SystemInitializerLLGS.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-server/SystemInitializerLLGS.h
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-server/lldb-gdbserver.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-server/lldb-platform.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/tools/lldb-server/lldb-server.cpp
/freebsd-11-stable/contrib/llvm/tools/lldb/utils
/freebsd-11-stable/contrib/llvm/tools/lli/RemoteJITUtils.h
/freebsd-11-stable/contrib/llvm/tools/lli/lli.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-ar/llvm-ar.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-as/llvm-as.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-bcanalyzer/llvm-bcanalyzer.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-cov/CodeCoverage.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-cov/CoverageExporter.h
/freebsd-11-stable/contrib/llvm/tools/llvm-cov/CoverageExporterJson.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-cov/CoverageExporterJson.h
/freebsd-11-stable/contrib/llvm/tools/llvm-cov/CoverageExporterLcov.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-cov/CoverageExporterLcov.h
/freebsd-11-stable/contrib/llvm/tools/llvm-cov/CoverageFilters.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-cov/CoverageFilters.h
/freebsd-11-stable/contrib/llvm/tools/llvm-cov/CoverageReport.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-cov/CoverageReport.h
/freebsd-11-stable/contrib/llvm/tools/llvm-cov/CoverageSummaryInfo.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-cov/CoverageSummaryInfo.h
/freebsd-11-stable/contrib/llvm/tools/llvm-cov/CoverageViewOptions.h
/freebsd-11-stable/contrib/llvm/tools/llvm-cov/RenderingSupport.h
/freebsd-11-stable/contrib/llvm/tools/llvm-cov/SourceCoverageView.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-cov/SourceCoverageView.h
/freebsd-11-stable/contrib/llvm/tools/llvm-cov/SourceCoverageViewHTML.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-cov/SourceCoverageViewHTML.h
/freebsd-11-stable/contrib/llvm/tools/llvm-cov/SourceCoverageViewText.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-cov/SourceCoverageViewText.h
/freebsd-11-stable/contrib/llvm/tools/llvm-cov/TestingSupport.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-cov/gcov.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-cov/llvm-cov.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-cxxdump/Error.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-cxxdump/Error.h
/freebsd-11-stable/contrib/llvm/tools/llvm-cxxdump/llvm-cxxdump.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-cxxdump/llvm-cxxdump.h
/freebsd-11-stable/contrib/llvm/tools/llvm-cxxfilt/llvm-cxxfilt.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-cxxmap/llvm-cxxmap.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-diff/DiffConsumer.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-diff/DiffConsumer.h
/freebsd-11-stable/contrib/llvm/tools/llvm-diff/DiffLog.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-diff/DiffLog.h
/freebsd-11-stable/contrib/llvm/tools/llvm-diff/DifferenceEngine.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-diff/DifferenceEngine.h
/freebsd-11-stable/contrib/llvm/tools/llvm-diff/llvm-diff.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-dis/llvm-dis.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-dwarfdump/Statistics.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-dwarfdump/llvm-dwarfdump.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-extract/llvm-extract.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-link/llvm-link.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-lto/llvm-lto.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-lto2/llvm-lto2.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-mc/Disassembler.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-mc/Disassembler.h
/freebsd-11-stable/contrib/llvm/tools/llvm-mc/llvm-mc.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-mca/CodeRegion.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-mca/CodeRegion.h
/freebsd-11-stable/contrib/llvm/tools/llvm-mca/CodeRegionGenerator.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-mca/CodeRegionGenerator.h
/freebsd-11-stable/contrib/llvm/tools/llvm-mca/PipelinePrinter.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-mca/PipelinePrinter.h
/freebsd-11-stable/contrib/llvm/tools/llvm-mca/Views/BottleneckAnalysis.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-mca/Views/BottleneckAnalysis.h
/freebsd-11-stable/contrib/llvm/tools/llvm-mca/Views/DispatchStatistics.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-mca/Views/DispatchStatistics.h
/freebsd-11-stable/contrib/llvm/tools/llvm-mca/Views/InstructionInfoView.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-mca/Views/InstructionInfoView.h
/freebsd-11-stable/contrib/llvm/tools/llvm-mca/Views/RegisterFileStatistics.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-mca/Views/RegisterFileStatistics.h
/freebsd-11-stable/contrib/llvm/tools/llvm-mca/Views/ResourcePressureView.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-mca/Views/ResourcePressureView.h
/freebsd-11-stable/contrib/llvm/tools/llvm-mca/Views/RetireControlUnitStatistics.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-mca/Views/RetireControlUnitStatistics.h
/freebsd-11-stable/contrib/llvm/tools/llvm-mca/Views/SchedulerStatistics.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-mca/Views/SchedulerStatistics.h
/freebsd-11-stable/contrib/llvm/tools/llvm-mca/Views/SummaryView.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-mca/Views/SummaryView.h
/freebsd-11-stable/contrib/llvm/tools/llvm-mca/Views/TimelineView.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-mca/Views/TimelineView.h
/freebsd-11-stable/contrib/llvm/tools/llvm-mca/Views/View.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-mca/Views/View.h
/freebsd-11-stable/contrib/llvm/tools/llvm-mca/include
/freebsd-11-stable/contrib/llvm/tools/llvm-mca/lib
/freebsd-11-stable/contrib/llvm/tools/llvm-mca/llvm-mca.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-modextract/llvm-modextract.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-nm/llvm-nm.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-objcopy/Buffer.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-objcopy/Buffer.h
/freebsd-11-stable/contrib/llvm/tools/llvm-objcopy/COFF/COFFObjcopy.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-objcopy/COFF/COFFObjcopy.h
/freebsd-11-stable/contrib/llvm/tools/llvm-objcopy/COFF/Object.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-objcopy/COFF/Object.h
/freebsd-11-stable/contrib/llvm/tools/llvm-objcopy/COFF/Reader.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-objcopy/COFF/Reader.h
/freebsd-11-stable/contrib/llvm/tools/llvm-objcopy/COFF/Writer.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-objcopy/COFF/Writer.h
/freebsd-11-stable/contrib/llvm/tools/llvm-objcopy/CopyConfig.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-objcopy/CopyConfig.h
/freebsd-11-stable/contrib/llvm/tools/llvm-objcopy/ELF/ELFObjcopy.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-objcopy/ELF/ELFObjcopy.h
/freebsd-11-stable/contrib/llvm/tools/llvm-objcopy/ELF/Object.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-objcopy/ELF/Object.h
/freebsd-11-stable/contrib/llvm/tools/llvm-objcopy/MachO
/freebsd-11-stable/contrib/llvm/tools/llvm-objcopy/ObjcopyOpts.td
/freebsd-11-stable/contrib/llvm/tools/llvm-objcopy/StripOpts.td
/freebsd-11-stable/contrib/llvm/tools/llvm-objcopy/llvm-objcopy.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-objcopy/llvm-objcopy.h
/freebsd-11-stable/contrib/llvm/tools/llvm-objdump/COFFDump.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-objdump/ELFDump.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-objdump/MachODump.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-objdump/WasmDump.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-objdump/llvm-objdump.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-objdump/llvm-objdump.h
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/BytesOutputStyle.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/BytesOutputStyle.h
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/DumpOutputStyle.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/DumpOutputStyle.h
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/ExplainOutputStyle.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/ExplainOutputStyle.h
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/FormatUtil.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/FormatUtil.h
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/InputFile.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/InputFile.h
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/LinePrinter.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/LinePrinter.h
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/MinimalSymbolDumper.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/MinimalSymbolDumper.h
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/MinimalTypeDumper.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/MinimalTypeDumper.h
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/OutputStyle.h
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/PdbYaml.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/PdbYaml.h
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/PrettyBuiltinDumper.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/PrettyBuiltinDumper.h
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/PrettyClassDefinitionDumper.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/PrettyClassDefinitionDumper.h
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/PrettyClassLayoutGraphicalDumper.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/PrettyClassLayoutGraphicalDumper.h
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/PrettyCompilandDumper.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/PrettyCompilandDumper.h
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/PrettyEnumDumper.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/PrettyEnumDumper.h
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/PrettyExternalSymbolDumper.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/PrettyExternalSymbolDumper.h
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/PrettyFunctionDumper.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/PrettyFunctionDumper.h
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/PrettyTypeDumper.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/PrettyTypeDumper.h
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/PrettyTypedefDumper.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/PrettyTypedefDumper.h
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/PrettyVariableDumper.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/PrettyVariableDumper.h
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/StreamUtil.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/StreamUtil.h
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/TypeReferenceTracker.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/TypeReferenceTracker.h
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/YAMLOutputStyle.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/YAMLOutputStyle.h
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/llvm-pdbutil.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-pdbutil/llvm-pdbutil.h
/freebsd-11-stable/contrib/llvm/tools/llvm-profdata/llvm-profdata.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-readobj/ARMEHABIPrinter.h
/freebsd-11-stable/contrib/llvm/tools/llvm-readobj/ARMWinEHPrinter.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-readobj/ARMWinEHPrinter.h
/freebsd-11-stable/contrib/llvm/tools/llvm-readobj/COFFDumper.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-readobj/COFFImportDumper.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-readobj/DwarfCFIEHPrinter.h
/freebsd-11-stable/contrib/llvm/tools/llvm-readobj/ELFDumper.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-readobj/Error.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-readobj/Error.h
/freebsd-11-stable/contrib/llvm/tools/llvm-readobj/MachODumper.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-readobj/ObjDumper.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-readobj/ObjDumper.h
/freebsd-11-stable/contrib/llvm/tools/llvm-readobj/StackMapPrinter.h
/freebsd-11-stable/contrib/llvm/tools/llvm-readobj/WasmDumper.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-readobj/Win64EHDumper.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-readobj/Win64EHDumper.h
/freebsd-11-stable/contrib/llvm/tools/llvm-readobj/WindowsResourceDumper.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-readobj/WindowsResourceDumper.h
/freebsd-11-stable/contrib/llvm/tools/llvm-readobj/XCOFFDumper.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-readobj/llvm-readobj.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-readobj/llvm-readobj.h
/freebsd-11-stable/contrib/llvm/tools/llvm-rtdyld/llvm-rtdyld.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-stress/llvm-stress.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-symbolizer/llvm-symbolizer.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-xray/func-id-helper.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-xray/func-id-helper.h
/freebsd-11-stable/contrib/llvm/tools/llvm-xray/llvm-xray.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-xray/trie-node.h
/freebsd-11-stable/contrib/llvm/tools/llvm-xray/xray-account.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-xray/xray-account.h
/freebsd-11-stable/contrib/llvm/tools/llvm-xray/xray-color-helper.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-xray/xray-color-helper.h
/freebsd-11-stable/contrib/llvm/tools/llvm-xray/xray-converter.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-xray/xray-converter.h
/freebsd-11-stable/contrib/llvm/tools/llvm-xray/xray-extract.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-xray/xray-fdr-dump.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-xray/xray-graph-diff.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-xray/xray-graph-diff.h
/freebsd-11-stable/contrib/llvm/tools/llvm-xray/xray-graph.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-xray/xray-graph.h
/freebsd-11-stable/contrib/llvm/tools/llvm-xray/xray-registry.cpp
/freebsd-11-stable/contrib/llvm/tools/llvm-xray/xray-registry.h
/freebsd-11-stable/contrib/llvm/tools/llvm-xray/xray-stacks.cpp
/freebsd-11-stable/contrib/llvm/tools/opt/AnalysisWrappers.cpp
/freebsd-11-stable/contrib/llvm/tools/opt/BreakpointPrinter.cpp
/freebsd-11-stable/contrib/llvm/tools/opt/BreakpointPrinter.h
/freebsd-11-stable/contrib/llvm/tools/opt/Debugify.cpp
/freebsd-11-stable/contrib/llvm/tools/opt/Debugify.h
/freebsd-11-stable/contrib/llvm/tools/opt/GraphPrinters.cpp
/freebsd-11-stable/contrib/llvm/tools/opt/NewPMDriver.cpp
/freebsd-11-stable/contrib/llvm/tools/opt/NewPMDriver.h
/freebsd-11-stable/contrib/llvm/tools/opt/PassPrinters.cpp
/freebsd-11-stable/contrib/llvm/tools/opt/PassPrinters.h
/freebsd-11-stable/contrib/llvm/tools/opt/PrintSCC.cpp
/freebsd-11-stable/contrib/llvm/tools/opt/opt.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/AsmMatcherEmitter.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/AsmWriterEmitter.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/AsmWriterInst.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/AsmWriterInst.h
/freebsd-11-stable/contrib/llvm/utils/TableGen/Attributes.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/CTagsEmitter.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/CallingConvEmitter.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/CodeEmitterGen.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/CodeGenDAGPatterns.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/CodeGenDAGPatterns.h
/freebsd-11-stable/contrib/llvm/utils/TableGen/CodeGenHwModes.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/CodeGenHwModes.h
/freebsd-11-stable/contrib/llvm/utils/TableGen/CodeGenInstruction.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/CodeGenInstruction.h
/freebsd-11-stable/contrib/llvm/utils/TableGen/CodeGenIntrinsics.h
/freebsd-11-stable/contrib/llvm/utils/TableGen/CodeGenMapTable.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/CodeGenRegisters.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/CodeGenRegisters.h
/freebsd-11-stable/contrib/llvm/utils/TableGen/CodeGenSchedule.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/CodeGenSchedule.h
/freebsd-11-stable/contrib/llvm/utils/TableGen/CodeGenTarget.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/CodeGenTarget.h
/freebsd-11-stable/contrib/llvm/utils/TableGen/DAGISelEmitter.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/DAGISelMatcher.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/DAGISelMatcher.h
/freebsd-11-stable/contrib/llvm/utils/TableGen/DAGISelMatcherEmitter.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/DAGISelMatcherGen.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/DAGISelMatcherOpt.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/DFAPacketizerEmitter.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/DisassemblerEmitter.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/ExegesisEmitter.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/FastISelEmitter.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/FixedLenDecoderEmitter.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/GlobalISelEmitter.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/InfoByHwMode.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/InfoByHwMode.h
/freebsd-11-stable/contrib/llvm/utils/TableGen/InstrDocsEmitter.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/InstrInfoEmitter.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/IntrinsicEmitter.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/OptParserEmitter.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/PredicateExpander.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/PredicateExpander.h
/freebsd-11-stable/contrib/llvm/utils/TableGen/PseudoLoweringEmitter.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/RISCVCompressInstEmitter.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/RegisterBankEmitter.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/RegisterInfoEmitter.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/SDNodeProperties.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/SDNodeProperties.h
/freebsd-11-stable/contrib/llvm/utils/TableGen/SearchableTableEmitter.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/SequenceToOffsetTable.h
/freebsd-11-stable/contrib/llvm/utils/TableGen/SubtargetEmitter.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/SubtargetFeatureInfo.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/SubtargetFeatureInfo.h
/freebsd-11-stable/contrib/llvm/utils/TableGen/TableGen.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/TableGenBackends.h
/freebsd-11-stable/contrib/llvm/utils/TableGen/Types.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/Types.h
/freebsd-11-stable/contrib/llvm/utils/TableGen/WebAssemblyDisassemblerEmitter.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/WebAssemblyDisassemblerEmitter.h
/freebsd-11-stable/contrib/llvm/utils/TableGen/X86DisassemblerShared.h
/freebsd-11-stable/contrib/llvm/utils/TableGen/X86DisassemblerTables.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/X86DisassemblerTables.h
/freebsd-11-stable/contrib/llvm/utils/TableGen/X86EVEX2VEXTablesEmitter.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/X86FoldTablesEmitter.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/X86ModRMFilters.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/X86ModRMFilters.h
/freebsd-11-stable/contrib/llvm/utils/TableGen/X86RecognizableInstr.cpp
/freebsd-11-stable/contrib/llvm/utils/TableGen/X86RecognizableInstr.h
/freebsd-11-stable/contrib/openmp/FREEBSD-Xlist
/freebsd-11-stable/contrib/openmp/LICENSE.txt
/freebsd-11-stable/contrib/openmp/runtime/src/dllexports
/freebsd-11-stable/contrib/openmp/runtime/src/exports_so.txt
/freebsd-11-stable/contrib/openmp/runtime/src/extractExternal.cpp
/freebsd-11-stable/contrib/openmp/runtime/src/i18n/en_US.txt
/freebsd-11-stable/contrib/openmp/runtime/src/include/30
/freebsd-11-stable/contrib/openmp/runtime/src/include/40
/freebsd-11-stable/contrib/openmp/runtime/src/include/45
/freebsd-11-stable/contrib/openmp/runtime/src/include/50
/freebsd-11-stable/contrib/openmp/runtime/src/include/omp-tools.h.var
/freebsd-11-stable/contrib/openmp/runtime/src/include/omp.h.var
/freebsd-11-stable/contrib/openmp/runtime/src/include/omp_lib.f.var
/freebsd-11-stable/contrib/openmp/runtime/src/include/omp_lib.f90.var
/freebsd-11-stable/contrib/openmp/runtime/src/include/omp_lib.h.var
/freebsd-11-stable/contrib/openmp/runtime/src/kmp.h
/freebsd-11-stable/contrib/openmp/runtime/src/kmp_affinity.cpp
/freebsd-11-stable/contrib/openmp/runtime/src/kmp_affinity.h
/freebsd-11-stable/contrib/openmp/runtime/src/kmp_alloc.cpp
/freebsd-11-stable/contrib/openmp/runtime/src/kmp_atomic.cpp
/freebsd-11-stable/contrib/openmp/runtime/src/kmp_atomic.h
/freebsd-11-stable/contrib/openmp/runtime/src/kmp_barrier.cpp
/freebsd-11-stable/contrib/openmp/runtime/src/kmp_cancel.cpp
/freebsd-11-stable/contrib/openmp/runtime/src/kmp_config.h.cmake
/freebsd-11-stable/contrib/openmp/runtime/src/kmp_csupport.cpp
/freebsd-11-stable/contrib/openmp/runtime/src/kmp_debug.cpp
/freebsd-11-stable/contrib/openmp/runtime/src/kmp_debug.h
/freebsd-11-stable/contrib/openmp/runtime/src/kmp_debugger.cpp
/freebsd-11-stable/contrib/openmp/runtime/src/kmp_debugger.h
/freebsd-11-stable/contrib/openmp/runtime/src/kmp_dispatch.cpp
/freebsd-11-stable/contrib/openmp/runtime/src/kmp_dispatch.h
/freebsd-11-stable/contrib/openmp/runtime/src/kmp_dispatch_hier.h
/freebsd-11-stable/contrib/openmp/runtime/src/kmp_environment.cpp
/freebsd-11-stable/contrib/openmp/runtime/src/kmp_environment.h
/freebsd-11-stable/contrib/openmp/runtime/src/kmp_error.cpp
/freebsd-11-stable/contrib/openmp/runtime/src/kmp_error.h
/freebsd-11-stable/contrib/openmp/runtime/src/kmp_ftn_cdecl.cpp
/freebsd-11-stable/contrib/openmp/runtime/src/kmp_ftn_entry.h
/freebsd-11-stable/contrib/openmp/runtime/src/kmp_ftn_extra.cpp
/freebsd-11-stable/contrib/openmp/runtime/src/kmp_ftn_os.h
/freebsd-11-stable/contrib/openmp/runtime/src/kmp_ftn_stdcall.cpp
/freebsd-11-stable/contrib/openmp/runtime/src/kmp_global.cpp
/freebsd-11-stable/contrib/openmp/runtime/src/kmp_gsupport.cpp
/freebsd-11-stable/contrib/openmp/runtime/src/kmp_i18n.cpp
/freebsd-11-stable/contrib/openmp/runtime/src/kmp_i18n.h
/freebsd-11-stable/contrib/openmp/runtime/src/kmp_import.cpp
/freebsd-11-stable/contrib/openmp/runtime/src/kmp_io.cpp
/freebsd-11-stable/contrib/openmp/runtime/src/kmp_io.h
/freebsd-11-stable/contrib/openmp/runtime/src/kmp_itt.cpp
/freebsd-11-stable/contrib/openmp/runtime/src/kmp_itt.h
/freebsd-11-stable/contrib/openmp/runtime/src/kmp_itt.inl
/freebsd-11-stable/contrib/openmp/runtime/src/kmp_lock.cpp
/freebsd-11-stable/contrib/openmp/runtime/src/kmp_lock.h
/freebsd-11-stable/contrib/openmp/runtime/src/kmp_omp.h
/freebsd-11-stable/contrib/openmp/runtime/src/kmp_os.h
/freebsd-11-stable/contrib/openmp/runtime/src/kmp_platform.h
/freebsd-11-stable/contrib/openmp/runtime/src/kmp_runtime.cpp
/freebsd-11-stable/contrib/openmp/runtime/src/kmp_safe_c_api.h
/freebsd-11-stable/contrib/openmp/runtime/src/kmp_sched.cpp
/freebsd-11-stable/contrib/openmp/runtime/src/kmp_settings.cpp
/freebsd-11-stable/contrib/openmp/runtime/src/kmp_settings.h
/freebsd-11-stable/contrib/openmp/runtime/src/kmp_stats.cpp
/freebsd-11-stable/contrib/openmp/runtime/src/kmp_stats.h
/freebsd-11-stable/contrib/openmp/runtime/src/kmp_stats_timing.cpp
/freebsd-11-stable/contrib/openmp/runtime/src/kmp_stats_timing.h
/freebsd-11-stable/contrib/openmp/runtime/src/kmp_str.cpp
/freebsd-11-stable/contrib/openmp/runtime/src/kmp_str.h
/freebsd-11-stable/contrib/openmp/runtime/src/kmp_stub.cpp
/freebsd-11-stable/contrib/openmp/runtime/src/kmp_stub.h
/freebsd-11-stable/contrib/openmp/runtime/src/kmp_taskdeps.cpp
/freebsd-11-stable/contrib/openmp/runtime/src/kmp_taskdeps.h
/freebsd-11-stable/contrib/openmp/runtime/src/kmp_tasking.cpp
/freebsd-11-stable/contrib/openmp/runtime/src/kmp_taskq.cpp
/freebsd-11-stable/contrib/openmp/runtime/src/kmp_threadprivate.cpp
/freebsd-11-stable/contrib/openmp/runtime/src/kmp_utility.cpp
/freebsd-11-stable/contrib/openmp/runtime/src/kmp_version.cpp
/freebsd-11-stable/contrib/openmp/runtime/src/kmp_version.h
/freebsd-11-stable/contrib/openmp/runtime/src/kmp_wait_release.cpp
/freebsd-11-stable/contrib/openmp/runtime/src/kmp_wait_release.h
/freebsd-11-stable/contrib/openmp/runtime/src/kmp_wrapper_getpid.h
/freebsd-11-stable/contrib/openmp/runtime/src/kmp_wrapper_malloc.h
/freebsd-11-stable/contrib/openmp/runtime/src/libomp.rc.var
/freebsd-11-stable/contrib/openmp/runtime/src/ompt-event-specific.h
/freebsd-11-stable/contrib/openmp/runtime/src/ompt-general.cpp
/freebsd-11-stable/contrib/openmp/runtime/src/ompt-internal.h
/freebsd-11-stable/contrib/openmp/runtime/src/ompt-specific.cpp
/freebsd-11-stable/contrib/openmp/runtime/src/ompt-specific.h
/freebsd-11-stable/contrib/openmp/runtime/src/test-touch.c
/freebsd-11-stable/contrib/openmp/runtime/src/thirdparty/ittnotify/disable_warnings.h
/freebsd-11-stable/contrib/openmp/runtime/src/thirdparty/ittnotify/ittnotify.h
/freebsd-11-stable/contrib/openmp/runtime/src/thirdparty/ittnotify/ittnotify_config.h
/freebsd-11-stable/contrib/openmp/runtime/src/thirdparty/ittnotify/ittnotify_static.c
/freebsd-11-stable/contrib/openmp/runtime/src/thirdparty/ittnotify/ittnotify_static.h
/freebsd-11-stable/contrib/openmp/runtime/src/thirdparty/ittnotify/ittnotify_types.h
/freebsd-11-stable/contrib/openmp/runtime/src/thirdparty/ittnotify/legacy/ittnotify.h
/freebsd-11-stable/contrib/openmp/runtime/src/tsan_annotations.cpp
/freebsd-11-stable/contrib/openmp/runtime/src/tsan_annotations.h
/freebsd-11-stable/contrib/openmp/runtime/src/z_Linux_asm.S
/freebsd-11-stable/contrib/openmp/runtime/src/z_Linux_util.cpp
/freebsd-11-stable/contrib/openmp/runtime/src/z_Windows_NT-586_asm.asm
/freebsd-11-stable/contrib/openmp/runtime/src/z_Windows_NT-586_util.cpp
/freebsd-11-stable/contrib/openmp/runtime/src/z_Windows_NT_util.cpp
/freebsd-11-stable/etc/mtree/BSD.debug.dist
/freebsd-11-stable/etc/mtree/BSD.usr.dist
/freebsd-11-stable/lib/Makefile
/freebsd-11-stable/lib/atf/libatf-c++/Makefile
/freebsd-11-stable/lib/clang/freebsd_cc_version.h
/freebsd-11-stable/lib/clang/headers/Makefile
/freebsd-11-stable/lib/clang/include/VCSVersion.inc
/freebsd-11-stable/lib/clang/include/clang/Basic/Version.inc
/freebsd-11-stable/lib/clang/include/clang/Config/config.h
/freebsd-11-stable/lib/clang/include/lld/Common/Version.inc
/freebsd-11-stable/lib/clang/include/lldb/Host/Config.h
/freebsd-11-stable/lib/clang/include/llvm/Config/abi-breaking.h
/freebsd-11-stable/lib/clang/include/llvm/Config/config.h
/freebsd-11-stable/lib/clang/include/llvm/Config/llvm-config.h
/freebsd-11-stable/lib/clang/include/llvm/Support/VCSRevision.h
/freebsd-11-stable/lib/clang/libclang/Makefile
/freebsd-11-stable/lib/clang/liblldb/Makefile
/freebsd-11-stable/lib/clang/libllvm/Makefile
/freebsd-11-stable/lib/clang/libllvmminimal/Makefile
/freebsd-11-stable/lib/clang/llvm.build.mk
/freebsd-11-stable/lib/libc++/Makefile
/freebsd-11-stable/lib/libc++fs
/freebsd-11-stable/lib/libclang_rt/Makefile
/freebsd-11-stable/lib/libclang_rt/Makefile.inc
/freebsd-11-stable/lib/libclang_rt/cfi
/freebsd-11-stable/lib/libclang_rt/cfi_diag
/freebsd-11-stable/lib/libclang_rt/dd
/freebsd-11-stable/lib/libclang_rt/fuzzer/Makefile
/freebsd-11-stable/lib/libclang_rt/fuzzer_no_main/Makefile
/freebsd-11-stable/lib/libclang_rt/include/Makefile
/freebsd-11-stable/lib/libclang_rt/msan_cxx/Makefile
/freebsd-11-stable/lib/libclang_rt/profile/Makefile
/freebsd-11-stable/lib/libclang_rt/safestack/Makefile
/freebsd-11-stable/lib/libclang_rt/ubsan_standalone/Makefile
/freebsd-11-stable/lib/libclang_rt/xray
/freebsd-11-stable/lib/libclang_rt/xray-basic
/freebsd-11-stable/lib/libclang_rt/xray-fdr
/freebsd-11-stable/lib/libclang_rt/xray-profiling
/freebsd-11-stable/lib/libcompiler_rt/Makefile
/freebsd-11-stable/lib/libcompiler_rt/Makefile.inc
/freebsd-11-stable/lib/libdevdctl/Makefile
/freebsd-11-stable/lib/libgcc_s/Makefile
/freebsd-11-stable/lib/libgcc_s/Symbol.map
/freebsd-11-stable/lib/libgcc_s/SymbolDefault.map
/freebsd-11-stable/lib/libgcc_s/Version.map
/freebsd-11-stable/lib/libgcc_s/Versions.def
/freebsd-11-stable/lib/libgcc_s/arm
/freebsd-11-stable/lib/libgcc_s/arm/Symbol.map
/freebsd-11-stable/lib/libomp/Makefile
/freebsd-11-stable/lib/libomp/kmp_config.h
/freebsd-11-stable/lib/libomp/kmp_i18n_default.inc
/freebsd-11-stable/lib/libomp/kmp_i18n_id.inc
/freebsd-11-stable/lib/libomp/omp-tools.h
/freebsd-11-stable/lib/libomp/omp.h
Makefile
/freebsd-11-stable/libexec/atf/atf-check/Makefile
/freebsd-11-stable/libexec/atf/atf-sh/Makefile
/freebsd-11-stable/share/man/man5/src.conf.5
/freebsd-11-stable/share/mk/atf.test.mk
/freebsd-11-stable/share/mk/bsd.sys.mk
/freebsd-11-stable/share/mk/src.opts.mk
/freebsd-11-stable/sys/conf/kmod.mk
/freebsd-11-stable/sys/sys/param.h
/freebsd-11-stable/tools/build/mk/OptionalObsoleteFiles.inc
/freebsd-11-stable/usr.bin/clang/Makefile
/freebsd-11-stable/usr.bin/clang/Makefile.inc
/freebsd-11-stable/usr.bin/clang/clang-tblgen/Makefile
/freebsd-11-stable/usr.bin/clang/clang.prog.mk
/freebsd-11-stable/usr.bin/clang/lld/Makefile
/freebsd-11-stable/usr.bin/clang/lldb-tblgen
/freebsd-11-stable/usr.bin/clang/lldb/Makefile
/freebsd-11-stable/usr.bin/clang/llvm-mca/Makefile
/freebsd-11-stable/usr.bin/clang/llvm-objcopy/Makefile
/freebsd-11-stable/usr.bin/clang/llvm-pdbutil/Makefile
/freebsd-11-stable/usr.bin/clang/llvm.prog.mk
339767 26-Oct-2018 mmacy

hwpmc: Enable hwpmc support for AMD Family 17H devices

Adds new counters and events for family 17H devices.
Adds libpmc support for family 17H devices.

Direct commit to 11 as this is supported by way of JSON
counter descriptions on 12 & HEAD.

Submitted by: Girish Nandibasappa
Differential Revision: https://reviews.freebsd.org/D17464

331722 29-Mar-2018 eadler

Revert r330897:

This was intended to be a non-functional change. It wasn't. The commit
message was thus wrong. In addition it broke arm, and merged crypto
related code.

Revert with prejudice.

This revert skips files touched in r316370 since that commit was since
MFCed. This revert also skips files that require $FreeBSD$ property
changes.

Thank you to those who helped me get out of this mess including but not
limited to gonzo, kevans, rgrimes.

Requested by: gjb (re)


/freebsd-11-stable/bin/cat/cat.c
/freebsd-11-stable/bin/chflags/chflags.c
/freebsd-11-stable/bin/chmod/chmod.c
/freebsd-11-stable/bin/cp/cp.c
/freebsd-11-stable/bin/cp/extern.h
/freebsd-11-stable/bin/cp/utils.c
/freebsd-11-stable/bin/date/date.c
/freebsd-11-stable/bin/date/extern.h
/freebsd-11-stable/bin/date/netdate.c
/freebsd-11-stable/bin/dd/args.c
/freebsd-11-stable/bin/dd/conv.c
/freebsd-11-stable/bin/dd/conv_tab.c
/freebsd-11-stable/bin/dd/dd.c
/freebsd-11-stable/bin/dd/dd.h
/freebsd-11-stable/bin/dd/extern.h
/freebsd-11-stable/bin/dd/misc.c
/freebsd-11-stable/bin/dd/position.c
/freebsd-11-stable/bin/df/df.c
/freebsd-11-stable/bin/domainname/domainname.c
/freebsd-11-stable/bin/echo/echo.c
/freebsd-11-stable/bin/ed/cbc.c
/freebsd-11-stable/bin/hostname/hostname.c
/freebsd-11-stable/bin/kill/kill.c
/freebsd-11-stable/bin/ln/ln.c
/freebsd-11-stable/bin/ls/cmp.c
/freebsd-11-stable/bin/ls/extern.h
/freebsd-11-stable/bin/ls/ls.c
/freebsd-11-stable/bin/ls/ls.h
/freebsd-11-stable/bin/ls/print.c
/freebsd-11-stable/bin/ls/util.c
/freebsd-11-stable/bin/mkdir/mkdir.c
/freebsd-11-stable/bin/mv/mv.c
/freebsd-11-stable/bin/pax/ar_io.c
/freebsd-11-stable/bin/pax/ar_subs.c
/freebsd-11-stable/bin/pax/buf_subs.c
/freebsd-11-stable/bin/pax/cache.c
/freebsd-11-stable/bin/pax/cache.h
/freebsd-11-stable/bin/pax/cpio.c
/freebsd-11-stable/bin/pax/cpio.h
/freebsd-11-stable/bin/pax/extern.h
/freebsd-11-stable/bin/pax/file_subs.c
/freebsd-11-stable/bin/pax/ftree.c
/freebsd-11-stable/bin/pax/ftree.h
/freebsd-11-stable/bin/pax/gen_subs.c
/freebsd-11-stable/bin/pax/options.c
/freebsd-11-stable/bin/pax/options.h
/freebsd-11-stable/bin/pax/pat_rep.c
/freebsd-11-stable/bin/pax/pat_rep.h
/freebsd-11-stable/bin/pax/pax.c
/freebsd-11-stable/bin/pax/pax.h
/freebsd-11-stable/bin/pax/sel_subs.c
/freebsd-11-stable/bin/pax/sel_subs.h
/freebsd-11-stable/bin/pax/tables.c
/freebsd-11-stable/bin/pax/tables.h
/freebsd-11-stable/bin/pax/tar.c
/freebsd-11-stable/bin/pax/tar.h
/freebsd-11-stable/bin/pax/tty_subs.c
/freebsd-11-stable/bin/ps/extern.h
/freebsd-11-stable/bin/ps/fmt.c
/freebsd-11-stable/bin/ps/keyword.c
/freebsd-11-stable/bin/ps/nlist.c
/freebsd-11-stable/bin/ps/print.c
/freebsd-11-stable/bin/ps/ps.c
/freebsd-11-stable/bin/ps/ps.h
/freebsd-11-stable/bin/pwd/pwd.c
/freebsd-11-stable/bin/realpath/realpath.c
/freebsd-11-stable/bin/rm/rm.c
/freebsd-11-stable/bin/rmdir/rmdir.c
/freebsd-11-stable/bin/sh/bltin/bltin.h
/freebsd-11-stable/bin/sh/bltin/echo.c
/freebsd-11-stable/bin/sh/mail.h
/freebsd-11-stable/bin/sh/main.c
/freebsd-11-stable/bin/sh/main.h
/freebsd-11-stable/bin/sh/memalloc.c
/freebsd-11-stable/bin/sh/memalloc.h
/freebsd-11-stable/bin/sh/miscbltin.c
/freebsd-11-stable/bin/sh/mknodes.c
/freebsd-11-stable/bin/sh/mksyntax.c
/freebsd-11-stable/bin/sh/myhistedit.h
/freebsd-11-stable/bin/sh/mystring.c
/freebsd-11-stable/bin/sh/mystring.h
/freebsd-11-stable/bin/sh/options.c
/freebsd-11-stable/bin/sh/options.h
/freebsd-11-stable/bin/sh/output.c
/freebsd-11-stable/bin/sh/output.h
/freebsd-11-stable/bin/sh/parser.c
/freebsd-11-stable/bin/sh/parser.h
/freebsd-11-stable/bin/sh/redir.c
/freebsd-11-stable/bin/sh/redir.h
/freebsd-11-stable/bin/sh/shell.h
/freebsd-11-stable/bin/sh/show.c
/freebsd-11-stable/bin/sh/show.h
/freebsd-11-stable/bin/sh/trap.c
/freebsd-11-stable/bin/sh/trap.h
/freebsd-11-stable/bin/sh/var.c
/freebsd-11-stable/bin/sh/var.h
/freebsd-11-stable/include/_ctype.h
/freebsd-11-stable/include/a.out.h
/freebsd-11-stable/include/ar.h
/freebsd-11-stable/include/arpa/ftp.h
/freebsd-11-stable/include/arpa/inet.h
/freebsd-11-stable/include/arpa/nameser.h
/freebsd-11-stable/include/arpa/nameser_compat.h
/freebsd-11-stable/include/arpa/telnet.h
/freebsd-11-stable/include/arpa/tftp.h
/freebsd-11-stable/include/assert.h
/freebsd-11-stable/include/bitstring.h
/freebsd-11-stable/include/complex.h
/freebsd-11-stable/include/cpio.h
/freebsd-11-stable/include/ctype.h
/freebsd-11-stable/include/db.h
/freebsd-11-stable/include/dirent.h
/freebsd-11-stable/include/dlfcn.h
/freebsd-11-stable/include/elf-hints.h
/freebsd-11-stable/include/elf.h
/freebsd-11-stable/include/err.h
/freebsd-11-stable/include/fmtmsg.h
/freebsd-11-stable/include/fnmatch.h
/freebsd-11-stable/include/fstab.h
/freebsd-11-stable/include/fts.h
/freebsd-11-stable/include/getopt.h
/freebsd-11-stable/include/glob.h
/freebsd-11-stable/include/grp.h
/freebsd-11-stable/include/hesiod.h
/freebsd-11-stable/include/iconv.h
/freebsd-11-stable/include/inttypes.h
/freebsd-11-stable/include/iso646.h
/freebsd-11-stable/include/kenv.h
/freebsd-11-stable/include/langinfo.h
/freebsd-11-stable/include/libgen.h
/freebsd-11-stable/include/limits.h
/freebsd-11-stable/include/link.h
/freebsd-11-stable/include/locale.h
/freebsd-11-stable/include/malloc_np.h
/freebsd-11-stable/include/memory.h
/freebsd-11-stable/include/mk-osreldate.sh
/freebsd-11-stable/include/monetary.h
/freebsd-11-stable/include/mpool.h
/freebsd-11-stable/include/mqueue.h
/freebsd-11-stable/include/ndbm.h
/freebsd-11-stable/include/netdb.h
/freebsd-11-stable/include/nl_types.h
/freebsd-11-stable/include/nlist.h
/freebsd-11-stable/include/nss.h
/freebsd-11-stable/include/nsswitch.h
/freebsd-11-stable/include/paths.h
/freebsd-11-stable/include/printf.h
/freebsd-11-stable/include/proc_service.h
/freebsd-11-stable/include/protocols/dumprestore.h
/freebsd-11-stable/include/protocols/routed.h
/freebsd-11-stable/include/protocols/rwhod.h
/freebsd-11-stable/include/protocols/talkd.h
/freebsd-11-stable/include/protocols/timed.h
/freebsd-11-stable/include/pthread.h
/freebsd-11-stable/include/pthread_np.h
/freebsd-11-stable/include/pwd.h
/freebsd-11-stable/include/ranlib.h
/freebsd-11-stable/include/regex.h
/freebsd-11-stable/include/resolv.h
/freebsd-11-stable/include/rpc/auth.h
/freebsd-11-stable/include/rpc/auth_des.h
/freebsd-11-stable/include/rpc/auth_kerb.h
/freebsd-11-stable/include/rpc/auth_unix.h
/freebsd-11-stable/include/rpc/clnt.h
/freebsd-11-stable/include/rpc/clnt_soc.h
/freebsd-11-stable/include/rpc/des.h
/freebsd-11-stable/include/rpc/des_crypt.h
/freebsd-11-stable/include/rpc/nettype.h
/freebsd-11-stable/include/rpc/pmap_clnt.h
/freebsd-11-stable/include/rpc/pmap_prot.h
/freebsd-11-stable/include/rpc/pmap_rmt.h
/freebsd-11-stable/include/rpc/raw.h
/freebsd-11-stable/include/rpc/rpc.h
/freebsd-11-stable/include/rpc/rpc_com.h
/freebsd-11-stable/include/rpc/rpc_msg.h
/freebsd-11-stable/include/rpc/rpcb_clnt.h
/freebsd-11-stable/include/rpc/rpcent.h
/freebsd-11-stable/include/rpc/rpcsec_gss.h
/freebsd-11-stable/include/rpc/svc.h
/freebsd-11-stable/include/rpc/svc_auth.h
/freebsd-11-stable/include/rpc/svc_dg.h
/freebsd-11-stable/include/rpc/svc_soc.h
/freebsd-11-stable/include/rpc/xdr.h
/freebsd-11-stable/include/rpcsvc/nis_tags.h
/freebsd-11-stable/include/rpcsvc/yp_prot.h
/freebsd-11-stable/include/rpcsvc/ypclnt.h
/freebsd-11-stable/include/runetype.h
/freebsd-11-stable/include/semaphore.h
/freebsd-11-stable/include/setjmp.h
/freebsd-11-stable/include/signal.h
/freebsd-11-stable/include/spawn.h
/freebsd-11-stable/include/stab.h
/freebsd-11-stable/include/stdalign.h
/freebsd-11-stable/include/stdbool.h
/freebsd-11-stable/include/stddef.h
/freebsd-11-stable/include/stdio.h
/freebsd-11-stable/include/stdlib.h
/freebsd-11-stable/include/stdnoreturn.h
/freebsd-11-stable/include/string.h
/freebsd-11-stable/include/stringlist.h
/freebsd-11-stable/include/strings.h
/freebsd-11-stable/include/sysexits.h
/freebsd-11-stable/include/tar.h
/freebsd-11-stable/include/termios.h
/freebsd-11-stable/include/tgmath.h
/freebsd-11-stable/include/time.h
/freebsd-11-stable/include/timeconv.h
/freebsd-11-stable/include/timers.h
/freebsd-11-stable/include/ttyent.h
/freebsd-11-stable/include/uchar.h
/freebsd-11-stable/include/ulimit.h
/freebsd-11-stable/include/unistd.h
/freebsd-11-stable/include/utime.h
/freebsd-11-stable/include/utmpx.h
/freebsd-11-stable/include/uuid.h
/freebsd-11-stable/include/varargs.h
/freebsd-11-stable/include/wchar.h
/freebsd-11-stable/include/wctype.h
/freebsd-11-stable/include/wordexp.h
/freebsd-11-stable/include/xlocale.h
/freebsd-11-stable/include/xlocale/_ctype.h
/freebsd-11-stable/include/xlocale/_inttypes.h
/freebsd-11-stable/include/xlocale/_langinfo.h
/freebsd-11-stable/include/xlocale/_locale.h
/freebsd-11-stable/include/xlocale/_monetary.h
/freebsd-11-stable/include/xlocale/_stdio.h
/freebsd-11-stable/include/xlocale/_stdlib.h
/freebsd-11-stable/include/xlocale/_string.h
/freebsd-11-stable/include/xlocale/_time.h
/freebsd-11-stable/include/xlocale/_uchar.h
/freebsd-11-stable/include/xlocale/_wchar.h
/freebsd-11-stable/lib/csu/amd64/crt1.c
/freebsd-11-stable/lib/csu/arm/crt1.c
/freebsd-11-stable/lib/csu/common/crtbrand.c
/freebsd-11-stable/lib/csu/common/ignore_init.c
/freebsd-11-stable/lib/csu/common/notes.h
/freebsd-11-stable/lib/csu/mips/crt1.c
/freebsd-11-stable/lib/csu/powerpc/crt1.c
/freebsd-11-stable/lib/csu/powerpc64/crt1.c
/freebsd-11-stable/lib/csu/sparc64/crt1.c
/freebsd-11-stable/lib/libarchive/config_freebsd.h
/freebsd-11-stable/lib/libbluetooth/bluetooth.c
/freebsd-11-stable/lib/libbluetooth/bluetooth.h
/freebsd-11-stable/lib/libbluetooth/dev.c
/freebsd-11-stable/lib/libbluetooth/hci.c
/freebsd-11-stable/lib/libbsdstat/bsdstat.c
/freebsd-11-stable/lib/libbsdstat/bsdstat.h
/freebsd-11-stable/lib/libc/amd64/SYS.h
/freebsd-11-stable/lib/libc/amd64/_fpmath.h
/freebsd-11-stable/lib/libc/amd64/gen/_set_tp.c
/freebsd-11-stable/lib/libc/amd64/gen/getcontextx.c
/freebsd-11-stable/lib/libc/amd64/gen/makecontext.c
/freebsd-11-stable/lib/libc/amd64/gen/signalcontext.c
/freebsd-11-stable/lib/libc/amd64/string/strcpy.c
/freebsd-11-stable/lib/libc/amd64/sys/amd64_get_fsbase.c
/freebsd-11-stable/lib/libc/amd64/sys/amd64_get_gsbase.c
/freebsd-11-stable/lib/libc/amd64/sys/amd64_set_fsbase.c
/freebsd-11-stable/lib/libc/amd64/sys/amd64_set_gsbase.c
/freebsd-11-stable/lib/libc/arm/SYS.h
/freebsd-11-stable/lib/libc/arm/_fpmath.h
/freebsd-11-stable/lib/libc/arm/aeabi/aeabi_atexit.c
/freebsd-11-stable/lib/libc/arm/aeabi/aeabi_double.c
/freebsd-11-stable/lib/libc/arm/aeabi/aeabi_float.c
/freebsd-11-stable/lib/libc/arm/aeabi/aeabi_unwind_cpp.c
/freebsd-11-stable/lib/libc/arm/gen/_set_tp.c
/freebsd-11-stable/lib/libc/arm/gen/arm_initfini.c
/freebsd-11-stable/lib/libc/arm/gen/fabs.c
/freebsd-11-stable/lib/libc/arm/gen/flt_rounds.c
/freebsd-11-stable/lib/libc/arm/gen/getcontextx.c
/freebsd-11-stable/lib/libc/arm/gen/makecontext.c
/freebsd-11-stable/lib/libc/arm/gen/signalcontext.c
/freebsd-11-stable/lib/libc/arm/sys/__vdso_gettc.c
/freebsd-11-stable/lib/libc/compat-43/creat.c
/freebsd-11-stable/lib/libc/compat-43/gethostid.c
/freebsd-11-stable/lib/libc/compat-43/getwd.c
/freebsd-11-stable/lib/libc/compat-43/killpg.c
/freebsd-11-stable/lib/libc/compat-43/sethostid.c
/freebsd-11-stable/lib/libc/compat-43/setpgrp.c
/freebsd-11-stable/lib/libc/compat-43/setrgid.c
/freebsd-11-stable/lib/libc/compat-43/setruid.c
/freebsd-11-stable/lib/libc/compat-43/sigcompat.c
/freebsd-11-stable/lib/libc/db/btree/bt_close.c
/freebsd-11-stable/lib/libc/db/btree/bt_conv.c
/freebsd-11-stable/lib/libc/db/btree/bt_debug.c
/freebsd-11-stable/lib/libc/db/btree/bt_delete.c
/freebsd-11-stable/lib/libc/db/btree/bt_get.c
/freebsd-11-stable/lib/libc/db/btree/bt_open.c
/freebsd-11-stable/lib/libc/db/btree/bt_overflow.c
/freebsd-11-stable/lib/libc/db/btree/bt_page.c
/freebsd-11-stable/lib/libc/db/btree/bt_put.c
/freebsd-11-stable/lib/libc/db/btree/bt_search.c
/freebsd-11-stable/lib/libc/db/btree/bt_seq.c
/freebsd-11-stable/lib/libc/db/btree/bt_split.c
/freebsd-11-stable/lib/libc/db/btree/bt_utils.c
/freebsd-11-stable/lib/libc/db/btree/btree.h
/freebsd-11-stable/lib/libc/db/btree/extern.h
/freebsd-11-stable/lib/libc/db/db/db.c
/freebsd-11-stable/lib/libc/db/hash/extern.h
/freebsd-11-stable/lib/libc/db/hash/hash.c
/freebsd-11-stable/lib/libc/db/hash/hash.h
/freebsd-11-stable/lib/libc/db/hash/hash_bigkey.c
/freebsd-11-stable/lib/libc/db/hash/hash_buf.c
/freebsd-11-stable/lib/libc/db/hash/hash_func.c
/freebsd-11-stable/lib/libc/db/hash/hash_log2.c
/freebsd-11-stable/lib/libc/db/hash/hash_page.c
/freebsd-11-stable/lib/libc/db/hash/ndbm.c
/freebsd-11-stable/lib/libc/db/hash/page.h
/freebsd-11-stable/lib/libc/db/mpool/mpool-compat.c
/freebsd-11-stable/lib/libc/db/mpool/mpool.c
/freebsd-11-stable/lib/libc/db/recno/extern.h
/freebsd-11-stable/lib/libc/db/recno/rec_close.c
/freebsd-11-stable/lib/libc/db/recno/rec_delete.c
/freebsd-11-stable/lib/libc/db/recno/rec_get.c
/freebsd-11-stable/lib/libc/db/recno/rec_open.c
/freebsd-11-stable/lib/libc/db/recno/rec_put.c
/freebsd-11-stable/lib/libc/db/recno/rec_search.c
/freebsd-11-stable/lib/libc/db/recno/rec_seq.c
/freebsd-11-stable/lib/libc/db/recno/rec_utils.c
/freebsd-11-stable/lib/libc/db/recno/recno.h
/freebsd-11-stable/lib/libc/db/test/btree.tests/main.c
/freebsd-11-stable/lib/libc/db/test/dbtest.c
/freebsd-11-stable/lib/libc/db/test/hash.tests/driver2.c
/freebsd-11-stable/lib/libc/db/test/hash.tests/tcreat3.c
/freebsd-11-stable/lib/libc/db/test/hash.tests/tdel.c
/freebsd-11-stable/lib/libc/db/test/hash.tests/thash4.c
/freebsd-11-stable/lib/libc/db/test/hash.tests/tread2.c
/freebsd-11-stable/lib/libc/db/test/hash.tests/tseq.c
/freebsd-11-stable/lib/libc/db/test/hash.tests/tverify.c
/freebsd-11-stable/lib/libc/gdtoa/_hdtoa.c
/freebsd-11-stable/lib/libc/gdtoa/_hldtoa.c
/freebsd-11-stable/lib/libc/gdtoa/_ldtoa.c
/freebsd-11-stable/lib/libc/gdtoa/machdep_ldisQ.c
/freebsd-11-stable/lib/libc/gdtoa/machdep_ldisd.c
/freebsd-11-stable/lib/libc/gdtoa/machdep_ldisx.c
/freebsd-11-stable/lib/libc/gen/__getosreldate.c
/freebsd-11-stable/lib/libc/gen/__xuname.c
/freebsd-11-stable/lib/libc/gen/_once_stub.c
/freebsd-11-stable/lib/libc/gen/_pthread_stubs.c
/freebsd-11-stable/lib/libc/gen/_spinlock_stub.c
/freebsd-11-stable/lib/libc/gen/_thread_init.c
/freebsd-11-stable/lib/libc/gen/alarm.c
/freebsd-11-stable/lib/libc/gen/assert.c
/freebsd-11-stable/lib/libc/gen/auxv.c
/freebsd-11-stable/lib/libc/gen/cap_sandboxed.c
/freebsd-11-stable/lib/libc/gen/clock.c
/freebsd-11-stable/lib/libc/gen/clock_getcpuclockid.c
/freebsd-11-stable/lib/libc/gen/closedir.c
/freebsd-11-stable/lib/libc/gen/confstr.c
/freebsd-11-stable/lib/libc/gen/crypt.c
/freebsd-11-stable/lib/libc/gen/ctermid.c
/freebsd-11-stable/lib/libc/gen/daemon.c
/freebsd-11-stable/lib/libc/gen/devname.c
/freebsd-11-stable/lib/libc/gen/dirfd.c
/freebsd-11-stable/lib/libc/gen/disklabel.c
/freebsd-11-stable/lib/libc/gen/dlfcn.c
/freebsd-11-stable/lib/libc/gen/dup3.c
/freebsd-11-stable/lib/libc/gen/elf_utils.c
/freebsd-11-stable/lib/libc/gen/err.c
/freebsd-11-stable/lib/libc/gen/errlst.c
/freebsd-11-stable/lib/libc/gen/errno.c
/freebsd-11-stable/lib/libc/gen/exec.c
/freebsd-11-stable/lib/libc/gen/fdevname.c
/freebsd-11-stable/lib/libc/gen/feature_present.c
/freebsd-11-stable/lib/libc/gen/fmtcheck.c
/freebsd-11-stable/lib/libc/gen/fmtmsg.c
/freebsd-11-stable/lib/libc/gen/fnmatch.c
/freebsd-11-stable/lib/libc/gen/fpclassify.c
/freebsd-11-stable/lib/libc/gen/frexp.c
/freebsd-11-stable/lib/libc/gen/fstab.c
/freebsd-11-stable/lib/libc/gen/ftok.c
/freebsd-11-stable/lib/libc/gen/fts-compat.c
/freebsd-11-stable/lib/libc/gen/fts-compat.h
/freebsd-11-stable/lib/libc/gen/fts.c
/freebsd-11-stable/lib/libc/gen/gen-private.h
/freebsd-11-stable/lib/libc/gen/getbootfile.c
/freebsd-11-stable/lib/libc/gen/getbsize.c
/freebsd-11-stable/lib/libc/gen/getcap.c
/freebsd-11-stable/lib/libc/gen/getcwd.c
/freebsd-11-stable/lib/libc/gen/getdomainname.c
/freebsd-11-stable/lib/libc/gen/getgrent.c
/freebsd-11-stable/lib/libc/gen/getgrouplist.c
/freebsd-11-stable/lib/libc/gen/gethostname.c
/freebsd-11-stable/lib/libc/gen/getloadavg.c
/freebsd-11-stable/lib/libc/gen/getlogin.c
/freebsd-11-stable/lib/libc/gen/getmntinfo.c
/freebsd-11-stable/lib/libc/gen/getnetgrent.c
/freebsd-11-stable/lib/libc/gen/getosreldate.c
/freebsd-11-stable/lib/libc/gen/getpagesize.c
/freebsd-11-stable/lib/libc/gen/getpagesizes.c
/freebsd-11-stable/lib/libc/gen/getpeereid.c
/freebsd-11-stable/lib/libc/gen/getpwent.c
/freebsd-11-stable/lib/libc/gen/getttyent.c
/freebsd-11-stable/lib/libc/gen/getusershell.c
/freebsd-11-stable/lib/libc/gen/getutxent.c
/freebsd-11-stable/lib/libc/gen/getvfsbyname.c
/freebsd-11-stable/lib/libc/gen/glob.c
/freebsd-11-stable/lib/libc/gen/initgroups.c
/freebsd-11-stable/lib/libc/gen/isatty.c
/freebsd-11-stable/lib/libc/gen/isinf.c
/freebsd-11-stable/lib/libc/gen/isnan.c
/freebsd-11-stable/lib/libc/gen/libc_dlopen.c
/freebsd-11-stable/lib/libc/gen/lockf.c
/freebsd-11-stable/lib/libc/gen/nice.c
/freebsd-11-stable/lib/libc/gen/nlist.c
/freebsd-11-stable/lib/libc/gen/opendir.c
/freebsd-11-stable/lib/libc/gen/pause.c
/freebsd-11-stable/lib/libc/gen/popen.c
/freebsd-11-stable/lib/libc/gen/posix_spawn.c
/freebsd-11-stable/lib/libc/gen/psignal.c
/freebsd-11-stable/lib/libc/gen/pututxline.c
/freebsd-11-stable/lib/libc/gen/pw_scan.c
/freebsd-11-stable/lib/libc/gen/pw_scan.h
/freebsd-11-stable/lib/libc/gen/raise.c
/freebsd-11-stable/lib/libc/gen/readdir.c
/freebsd-11-stable/lib/libc/gen/rewinddir.c
/freebsd-11-stable/lib/libc/gen/scandir.c
/freebsd-11-stable/lib/libc/gen/seekdir.c
/freebsd-11-stable/lib/libc/gen/sem.c
/freebsd-11-stable/lib/libc/gen/sem_new.c
/freebsd-11-stable/lib/libc/gen/semctl.c
/freebsd-11-stable/lib/libc/gen/setdomainname.c
/freebsd-11-stable/lib/libc/gen/sethostname.c
/freebsd-11-stable/lib/libc/gen/setjmperr.c
/freebsd-11-stable/lib/libc/gen/setmode.c
/freebsd-11-stable/lib/libc/gen/siginterrupt.c
/freebsd-11-stable/lib/libc/gen/siglist.c
/freebsd-11-stable/lib/libc/gen/signal.c
/freebsd-11-stable/lib/libc/gen/sigsetops.c
/freebsd-11-stable/lib/libc/gen/sleep.c
/freebsd-11-stable/lib/libc/gen/stringlist.c
/freebsd-11-stable/lib/libc/gen/strtofflags.c
/freebsd-11-stable/lib/libc/gen/sysconf.c
/freebsd-11-stable/lib/libc/gen/sysctl.c
/freebsd-11-stable/lib/libc/gen/sysctlnametomib.c
/freebsd-11-stable/lib/libc/gen/syslog.c
/freebsd-11-stable/lib/libc/gen/telldir.c
/freebsd-11-stable/lib/libc/gen/telldir.h
/freebsd-11-stable/lib/libc/gen/termios.c
/freebsd-11-stable/lib/libc/gen/time.c
/freebsd-11-stable/lib/libc/gen/times.c
/freebsd-11-stable/lib/libc/gen/timezone.c
/freebsd-11-stable/lib/libc/gen/tls.c
/freebsd-11-stable/lib/libc/gen/ttyname.c
/freebsd-11-stable/lib/libc/gen/ttyslot.c
/freebsd-11-stable/lib/libc/gen/ualarm.c
/freebsd-11-stable/lib/libc/gen/ulimit.c
/freebsd-11-stable/lib/libc/gen/uname.c
/freebsd-11-stable/lib/libc/gen/unvis-compat.c
/freebsd-11-stable/lib/libc/gen/usleep.c
/freebsd-11-stable/lib/libc/gen/utime.c
/freebsd-11-stable/lib/libc/gen/utxdb.c
/freebsd-11-stable/lib/libc/gen/utxdb.h
/freebsd-11-stable/lib/libc/gen/valloc.c
/freebsd-11-stable/lib/libc/gen/wait.c
/freebsd-11-stable/lib/libc/gen/wait3.c
/freebsd-11-stable/lib/libc/gen/waitid.c
/freebsd-11-stable/lib/libc/gen/waitpid.c
/freebsd-11-stable/lib/libc/gen/wordexp.c
/freebsd-11-stable/lib/libc/gmon/gmon.c
/freebsd-11-stable/lib/libc/gmon/mcount.c
/freebsd-11-stable/lib/libc/i386/SYS.h
/freebsd-11-stable/lib/libc/i386/_fpmath.h
/freebsd-11-stable/lib/libc/i386/gen/_set_tp.c
/freebsd-11-stable/lib/libc/i386/gen/getcontextx.c
/freebsd-11-stable/lib/libc/i386/gen/makecontext.c
/freebsd-11-stable/lib/libc/i386/gen/signalcontext.c
/freebsd-11-stable/lib/libc/i386/sys/i386_clr_watch.c
/freebsd-11-stable/lib/libc/i386/sys/i386_get_fsbase.c
/freebsd-11-stable/lib/libc/i386/sys/i386_get_gsbase.c
/freebsd-11-stable/lib/libc/i386/sys/i386_get_ioperm.c
/freebsd-11-stable/lib/libc/i386/sys/i386_get_ldt.c
/freebsd-11-stable/lib/libc/i386/sys/i386_set_fsbase.c
/freebsd-11-stable/lib/libc/i386/sys/i386_set_gsbase.c
/freebsd-11-stable/lib/libc/i386/sys/i386_set_ioperm.c
/freebsd-11-stable/lib/libc/i386/sys/i386_set_ldt.c
/freebsd-11-stable/lib/libc/i386/sys/i386_set_watch.c
/freebsd-11-stable/lib/libc/i386/sys/i386_vm86.c
/freebsd-11-stable/lib/libc/iconv/__iconv.c
/freebsd-11-stable/lib/libc/iconv/__iconv_free_list.c
/freebsd-11-stable/lib/libc/iconv/__iconv_get_list.c
/freebsd-11-stable/lib/libc/iconv/_strtol.h
/freebsd-11-stable/lib/libc/iconv/_strtoul.h
/freebsd-11-stable/lib/libc/iconv/bsd_iconv.c
/freebsd-11-stable/lib/libc/iconv/citrus_aliasname_local.h
/freebsd-11-stable/lib/libc/iconv/citrus_bcs.c
/freebsd-11-stable/lib/libc/iconv/citrus_bcs.h
/freebsd-11-stable/lib/libc/iconv/citrus_bcs_strtol.c
/freebsd-11-stable/lib/libc/iconv/citrus_bcs_strtoul.c
/freebsd-11-stable/lib/libc/iconv/citrus_csmapper.c
/freebsd-11-stable/lib/libc/iconv/citrus_csmapper.h
/freebsd-11-stable/lib/libc/iconv/citrus_db.c
/freebsd-11-stable/lib/libc/iconv/citrus_db.h
/freebsd-11-stable/lib/libc/iconv/citrus_db_factory.c
/freebsd-11-stable/lib/libc/iconv/citrus_db_factory.h
/freebsd-11-stable/lib/libc/iconv/citrus_db_file.h
/freebsd-11-stable/lib/libc/iconv/citrus_db_hash.c
/freebsd-11-stable/lib/libc/iconv/citrus_db_hash.h
/freebsd-11-stable/lib/libc/iconv/citrus_esdb.c
/freebsd-11-stable/lib/libc/iconv/citrus_esdb.h
/freebsd-11-stable/lib/libc/iconv/citrus_esdb_file.h
/freebsd-11-stable/lib/libc/iconv/citrus_fix_grouping.h
/freebsd-11-stable/lib/libc/iconv/citrus_hash.c
/freebsd-11-stable/lib/libc/iconv/citrus_hash.h
/freebsd-11-stable/lib/libc/iconv/citrus_iconv.c
/freebsd-11-stable/lib/libc/iconv/citrus_iconv.h
/freebsd-11-stable/lib/libc/iconv/citrus_iconv_local.h
/freebsd-11-stable/lib/libc/iconv/citrus_lock.h
/freebsd-11-stable/lib/libc/iconv/citrus_lookup.c
/freebsd-11-stable/lib/libc/iconv/citrus_lookup.h
/freebsd-11-stable/lib/libc/iconv/citrus_lookup_factory.c
/freebsd-11-stable/lib/libc/iconv/citrus_lookup_factory.h
/freebsd-11-stable/lib/libc/iconv/citrus_lookup_file.h
/freebsd-11-stable/lib/libc/iconv/citrus_mapper.c
/freebsd-11-stable/lib/libc/iconv/citrus_mapper.h
/freebsd-11-stable/lib/libc/iconv/citrus_mapper_local.h
/freebsd-11-stable/lib/libc/iconv/citrus_memstream.c
/freebsd-11-stable/lib/libc/iconv/citrus_memstream.h
/freebsd-11-stable/lib/libc/iconv/citrus_mmap.c
/freebsd-11-stable/lib/libc/iconv/citrus_mmap.h
/freebsd-11-stable/lib/libc/iconv/citrus_module.c
/freebsd-11-stable/lib/libc/iconv/citrus_module.h
/freebsd-11-stable/lib/libc/iconv/citrus_namespace.h
/freebsd-11-stable/lib/libc/iconv/citrus_none.c
/freebsd-11-stable/lib/libc/iconv/citrus_none.h
/freebsd-11-stable/lib/libc/iconv/citrus_pivot_factory.c
/freebsd-11-stable/lib/libc/iconv/citrus_pivot_factory.h
/freebsd-11-stable/lib/libc/iconv/citrus_pivot_file.h
/freebsd-11-stable/lib/libc/iconv/citrus_prop.c
/freebsd-11-stable/lib/libc/iconv/citrus_prop.h
/freebsd-11-stable/lib/libc/iconv/citrus_region.h
/freebsd-11-stable/lib/libc/iconv/citrus_stdenc.c
/freebsd-11-stable/lib/libc/iconv/citrus_stdenc.h
/freebsd-11-stable/lib/libc/iconv/citrus_stdenc_local.h
/freebsd-11-stable/lib/libc/iconv/citrus_stdenc_template.h
/freebsd-11-stable/lib/libc/iconv/citrus_types.h
/freebsd-11-stable/lib/libc/iconv/iconv-internal.h
/freebsd-11-stable/lib/libc/iconv/iconv.c
/freebsd-11-stable/lib/libc/iconv/iconv_canonicalize.c
/freebsd-11-stable/lib/libc/iconv/iconv_close.c
/freebsd-11-stable/lib/libc/iconv/iconv_compat.c
/freebsd-11-stable/lib/libc/iconv/iconv_open.c
/freebsd-11-stable/lib/libc/iconv/iconv_open_into.c
/freebsd-11-stable/lib/libc/iconv/iconv_set_relocation_prefix.c
/freebsd-11-stable/lib/libc/iconv/iconvctl.c
/freebsd-11-stable/lib/libc/iconv/iconvlist.c
/freebsd-11-stable/lib/libc/include/compat.h
/freebsd-11-stable/lib/libc/include/errlst.h
/freebsd-11-stable/lib/libc/include/fpmath.h
/freebsd-11-stable/lib/libc/include/libc_private.h
/freebsd-11-stable/lib/libc/include/namespace.h
/freebsd-11-stable/lib/libc/include/nscache.h
/freebsd-11-stable/lib/libc/include/nscachedcli.h
/freebsd-11-stable/lib/libc/include/nss_tls.h
/freebsd-11-stable/lib/libc/include/reentrant.h
/freebsd-11-stable/lib/libc/include/spinlock.h
/freebsd-11-stable/lib/libc/include/un-namespace.h
/freebsd-11-stable/lib/libc/inet/inet_addr.c
/freebsd-11-stable/lib/libc/inet/inet_lnaof.c
/freebsd-11-stable/lib/libc/inet/inet_makeaddr.c
/freebsd-11-stable/lib/libc/inet/inet_netof.c
/freebsd-11-stable/lib/libc/inet/inet_network.c
/freebsd-11-stable/lib/libc/inet/inet_ntoa.c
/freebsd-11-stable/lib/libc/locale/ascii.c
/freebsd-11-stable/lib/libc/locale/btowc.c
/freebsd-11-stable/lib/libc/locale/c16rtomb.c
/freebsd-11-stable/lib/libc/locale/c32rtomb.c
/freebsd-11-stable/lib/libc/locale/cXXrtomb_iconv.h
/freebsd-11-stable/lib/libc/locale/collate.c
/freebsd-11-stable/lib/libc/locale/collate.h
/freebsd-11-stable/lib/libc/locale/collcmp.c
/freebsd-11-stable/lib/libc/locale/ctype.c
/freebsd-11-stable/lib/libc/locale/euc.c
/freebsd-11-stable/lib/libc/locale/fix_grouping.c
/freebsd-11-stable/lib/libc/locale/gb18030.c
/freebsd-11-stable/lib/libc/locale/gb2312.c
/freebsd-11-stable/lib/libc/locale/gbk.c
/freebsd-11-stable/lib/libc/locale/isctype.c
/freebsd-11-stable/lib/libc/locale/iswctype.c
/freebsd-11-stable/lib/libc/locale/ldpart.c
/freebsd-11-stable/lib/libc/locale/ldpart.h
/freebsd-11-stable/lib/libc/locale/lmessages.c
/freebsd-11-stable/lib/libc/locale/lmessages.h
/freebsd-11-stable/lib/libc/locale/lmonetary.c
/freebsd-11-stable/lib/libc/locale/lmonetary.h
/freebsd-11-stable/lib/libc/locale/lnumeric.c
/freebsd-11-stable/lib/libc/locale/lnumeric.h
/freebsd-11-stable/lib/libc/locale/localeconv.c
/freebsd-11-stable/lib/libc/locale/mblen.c
/freebsd-11-stable/lib/libc/locale/mblocal.h
/freebsd-11-stable/lib/libc/locale/mbrlen.c
/freebsd-11-stable/lib/libc/locale/mbrtoc16.c
/freebsd-11-stable/lib/libc/locale/mbrtoc32.c
/freebsd-11-stable/lib/libc/locale/mbrtocXX_iconv.h
/freebsd-11-stable/lib/libc/locale/mbrtowc.c
/freebsd-11-stable/lib/libc/locale/mbsinit.c
/freebsd-11-stable/lib/libc/locale/mbsnrtowcs.c
/freebsd-11-stable/lib/libc/locale/mbsrtowcs.c
/freebsd-11-stable/lib/libc/locale/mbstowcs.c
/freebsd-11-stable/lib/libc/locale/mbtowc.c
/freebsd-11-stable/lib/libc/locale/mskanji.c
/freebsd-11-stable/lib/libc/locale/nextwctype.c
/freebsd-11-stable/lib/libc/locale/nl_langinfo.c
/freebsd-11-stable/lib/libc/locale/none.c
/freebsd-11-stable/lib/libc/locale/rpmatch.c
/freebsd-11-stable/lib/libc/locale/rune.c
/freebsd-11-stable/lib/libc/locale/runefile.h
/freebsd-11-stable/lib/libc/locale/runetype.c
/freebsd-11-stable/lib/libc/locale/setlocale.c
/freebsd-11-stable/lib/libc/locale/setlocale.h
/freebsd-11-stable/lib/libc/locale/setrunelocale.c
/freebsd-11-stable/lib/libc/locale/table.c
/freebsd-11-stable/lib/libc/locale/tolower.c
/freebsd-11-stable/lib/libc/locale/toupper.c
/freebsd-11-stable/lib/libc/locale/utf8.c
/freebsd-11-stable/lib/libc/locale/wcrtomb.c
/freebsd-11-stable/lib/libc/locale/wcsftime.c
/freebsd-11-stable/lib/libc/locale/wcsnrtombs.c
/freebsd-11-stable/lib/libc/locale/wcsrtombs.c
/freebsd-11-stable/lib/libc/locale/wcstod.c
/freebsd-11-stable/lib/libc/locale/wcstof.c
/freebsd-11-stable/lib/libc/locale/wcstoimax.c
/freebsd-11-stable/lib/libc/locale/wcstol.c
/freebsd-11-stable/lib/libc/locale/wcstold.c
/freebsd-11-stable/lib/libc/locale/wcstoll.c
/freebsd-11-stable/lib/libc/locale/wcstombs.c
/freebsd-11-stable/lib/libc/locale/wcstoul.c
/freebsd-11-stable/lib/libc/locale/wcstoull.c
/freebsd-11-stable/lib/libc/locale/wcstoumax.c
/freebsd-11-stable/lib/libc/locale/wctob.c
/freebsd-11-stable/lib/libc/locale/wctomb.c
/freebsd-11-stable/lib/libc/locale/wctrans.c
/freebsd-11-stable/lib/libc/locale/wctype.c
/freebsd-11-stable/lib/libc/locale/wcwidth.c
/freebsd-11-stable/lib/libc/locale/xlocale.c
/freebsd-11-stable/lib/libc/locale/xlocale_private.h
/freebsd-11-stable/lib/libc/mips/SYS.h
/freebsd-11-stable/lib/libc/mips/_fpmath.h
/freebsd-11-stable/lib/libc/mips/gen/_set_tp.c
/freebsd-11-stable/lib/libc/mips/gen/fabs.c
/freebsd-11-stable/lib/libc/mips/gen/longjmp.c
/freebsd-11-stable/lib/libc/mips/gen/makecontext.c
/freebsd-11-stable/lib/libc/mips/gen/signalcontext.c
/freebsd-11-stable/lib/libc/net/ether_addr.c
/freebsd-11-stable/lib/libc/net/gai_strerror.c
/freebsd-11-stable/lib/libc/net/getaddrinfo.c
/freebsd-11-stable/lib/libc/net/gethostbydns.c
/freebsd-11-stable/lib/libc/net/gethostbyht.c
/freebsd-11-stable/lib/libc/net/gethostbynis.c
/freebsd-11-stable/lib/libc/net/gethostnamadr.c
/freebsd-11-stable/lib/libc/net/getifmaddrs.c
/freebsd-11-stable/lib/libc/net/getnameinfo.c
/freebsd-11-stable/lib/libc/net/getnetbydns.c
/freebsd-11-stable/lib/libc/net/getnetbyht.c
/freebsd-11-stable/lib/libc/net/getnetbynis.c
/freebsd-11-stable/lib/libc/net/getnetnamadr.c
/freebsd-11-stable/lib/libc/net/getproto.c
/freebsd-11-stable/lib/libc/net/getprotoent.c
/freebsd-11-stable/lib/libc/net/getprotoname.c
/freebsd-11-stable/lib/libc/net/getservent.c
/freebsd-11-stable/lib/libc/net/ip6opt.c
/freebsd-11-stable/lib/libc/net/linkaddr.c
/freebsd-11-stable/lib/libc/net/map_v4v6.c
/freebsd-11-stable/lib/libc/net/name6.c
/freebsd-11-stable/lib/libc/net/netdb_private.h
/freebsd-11-stable/lib/libc/net/nscache.c
/freebsd-11-stable/lib/libc/net/nscachedcli.c
/freebsd-11-stable/lib/libc/net/nsdispatch.c
/freebsd-11-stable/lib/libc/net/nslexer.l
/freebsd-11-stable/lib/libc/net/nsparser.y
/freebsd-11-stable/lib/libc/net/nss_backends.h
/freebsd-11-stable/lib/libc/net/nss_compat.c
/freebsd-11-stable/lib/libc/net/ntoh.c
/freebsd-11-stable/lib/libc/net/rcmd.c
/freebsd-11-stable/lib/libc/net/rcmdsh.c
/freebsd-11-stable/lib/libc/net/recv.c
/freebsd-11-stable/lib/libc/net/rthdr.c
/freebsd-11-stable/lib/libc/net/sctp_sys_calls.c
/freebsd-11-stable/lib/libc/net/send.c
/freebsd-11-stable/lib/libc/net/sockatmark.c
/freebsd-11-stable/lib/libc/net/sourcefilter.c
/freebsd-11-stable/lib/libc/net/vars.c
/freebsd-11-stable/lib/libc/posix1e/acl_branding.c
/freebsd-11-stable/lib/libc/posix1e/acl_calc_mask.c
/freebsd-11-stable/lib/libc/posix1e/acl_compat.c
/freebsd-11-stable/lib/libc/posix1e/acl_copy.c
/freebsd-11-stable/lib/libc/posix1e/acl_delete.c
/freebsd-11-stable/lib/libc/posix1e/acl_delete_entry.c
/freebsd-11-stable/lib/libc/posix1e/acl_entry.c
/freebsd-11-stable/lib/libc/posix1e/acl_flag.c
/freebsd-11-stable/lib/libc/posix1e/acl_free.c
/freebsd-11-stable/lib/libc/posix1e/acl_from_text.c
/freebsd-11-stable/lib/libc/posix1e/acl_from_text_nfs4.c
/freebsd-11-stable/lib/libc/posix1e/acl_get.c
/freebsd-11-stable/lib/libc/posix1e/acl_id_to_name.c
/freebsd-11-stable/lib/libc/posix1e/acl_init.c
/freebsd-11-stable/lib/libc/posix1e/acl_perm.c
/freebsd-11-stable/lib/libc/posix1e/acl_set.c
/freebsd-11-stable/lib/libc/posix1e/acl_strip.c
/freebsd-11-stable/lib/libc/posix1e/acl_support.c
/freebsd-11-stable/lib/libc/posix1e/acl_support.h
/freebsd-11-stable/lib/libc/posix1e/acl_support_nfs4.c
/freebsd-11-stable/lib/libc/posix1e/acl_to_text.c
/freebsd-11-stable/lib/libc/posix1e/acl_to_text_nfs4.c
/freebsd-11-stable/lib/libc/posix1e/acl_valid.c
/freebsd-11-stable/lib/libc/posix1e/extattr.c
/freebsd-11-stable/lib/libc/posix1e/mac.c
/freebsd-11-stable/lib/libc/posix1e/mac_exec.c
/freebsd-11-stable/lib/libc/posix1e/mac_get.c
/freebsd-11-stable/lib/libc/posix1e/mac_set.c
/freebsd-11-stable/lib/libc/powerpc/SYS.h
/freebsd-11-stable/lib/libc/powerpc/_fpmath.h
/freebsd-11-stable/lib/libc/powerpc/gen/_set_tp.c
/freebsd-11-stable/lib/libc/powerpc/gen/flt_rounds.c
/freebsd-11-stable/lib/libc/powerpc/gen/fpgetmask.c
/freebsd-11-stable/lib/libc/powerpc/gen/fpgetround.c
/freebsd-11-stable/lib/libc/powerpc/gen/fpgetsticky.c
/freebsd-11-stable/lib/libc/powerpc/gen/fpsetmask.c
/freebsd-11-stable/lib/libc/powerpc/gen/fpsetround.c
/freebsd-11-stable/lib/libc/powerpc/gen/makecontext.c
/freebsd-11-stable/lib/libc/powerpc/gen/signalcontext.c
/freebsd-11-stable/lib/libc/powerpc/gen/syncicache.c
/freebsd-11-stable/lib/libc/powerpc64/SYS.h
/freebsd-11-stable/lib/libc/powerpc64/_fpmath.h
/freebsd-11-stable/lib/libc/powerpc64/gen/_set_tp.c
/freebsd-11-stable/lib/libc/powerpc64/gen/flt_rounds.c
/freebsd-11-stable/lib/libc/powerpc64/gen/fpgetmask.c
/freebsd-11-stable/lib/libc/powerpc64/gen/fpgetround.c
/freebsd-11-stable/lib/libc/powerpc64/gen/fpgetsticky.c
/freebsd-11-stable/lib/libc/powerpc64/gen/fpsetmask.c
/freebsd-11-stable/lib/libc/powerpc64/gen/fpsetround.c
/freebsd-11-stable/lib/libc/powerpc64/gen/makecontext.c
/freebsd-11-stable/lib/libc/powerpc64/gen/signalcontext.c
/freebsd-11-stable/lib/libc/powerpc64/gen/syncicache.c
/freebsd-11-stable/lib/libc/quad/TESTS/divrem.c
/freebsd-11-stable/lib/libc/quad/TESTS/mul.c
/freebsd-11-stable/lib/libc/quad/adddi3.c
/freebsd-11-stable/lib/libc/quad/anddi3.c
/freebsd-11-stable/lib/libc/quad/ashldi3.c
/freebsd-11-stable/lib/libc/quad/ashrdi3.c
/freebsd-11-stable/lib/libc/quad/cmpdi2.c
/freebsd-11-stable/lib/libc/quad/divdi3.c
/freebsd-11-stable/lib/libc/quad/fixdfdi.c
/freebsd-11-stable/lib/libc/quad/fixsfdi.c
/freebsd-11-stable/lib/libc/quad/fixunsdfdi.c
/freebsd-11-stable/lib/libc/quad/fixunssfdi.c
/freebsd-11-stable/lib/libc/quad/floatdidf.c
/freebsd-11-stable/lib/libc/quad/floatdisf.c
/freebsd-11-stable/lib/libc/quad/floatunsdidf.c
/freebsd-11-stable/lib/libc/quad/iordi3.c
/freebsd-11-stable/lib/libc/quad/lshldi3.c
/freebsd-11-stable/lib/libc/quad/lshrdi3.c
/freebsd-11-stable/lib/libc/quad/moddi3.c
/freebsd-11-stable/lib/libc/quad/muldi3.c
/freebsd-11-stable/lib/libc/quad/negdi2.c
/freebsd-11-stable/lib/libc/quad/notdi2.c
/freebsd-11-stable/lib/libc/quad/qdivrem.c
/freebsd-11-stable/lib/libc/quad/quad.h
/freebsd-11-stable/lib/libc/quad/subdi3.c
/freebsd-11-stable/lib/libc/quad/ucmpdi2.c
/freebsd-11-stable/lib/libc/quad/udivdi3.c
/freebsd-11-stable/lib/libc/quad/umoddi3.c
/freebsd-11-stable/lib/libc/quad/xordi3.c
/freebsd-11-stable/lib/libc/regex/cname.h
/freebsd-11-stable/lib/libc/regex/engine.c
/freebsd-11-stable/lib/libc/regex/regcomp.c
/freebsd-11-stable/lib/libc/regex/regerror.c
/freebsd-11-stable/lib/libc/regex/regex2.h
/freebsd-11-stable/lib/libc/regex/regexec.c
/freebsd-11-stable/lib/libc/regex/regfree.c
/freebsd-11-stable/lib/libc/regex/utils.h
/freebsd-11-stable/lib/libc/resolv/h_errno.c
/freebsd-11-stable/lib/libc/resolv/herror.c
/freebsd-11-stable/lib/libc/resolv/res_comp.c
/freebsd-11-stable/lib/libc/resolv/res_debug.c
/freebsd-11-stable/lib/libc/resolv/res_init.c
/freebsd-11-stable/lib/libc/resolv/res_mkquery.c
/freebsd-11-stable/lib/libc/resolv/res_query.c
/freebsd-11-stable/lib/libc/resolv/res_send.c
/freebsd-11-stable/lib/libc/resolv/res_state.c
/freebsd-11-stable/lib/libc/rpc/auth_des.c
/freebsd-11-stable/lib/libc/rpc/auth_none.c
/freebsd-11-stable/lib/libc/rpc/auth_unix.c
/freebsd-11-stable/lib/libc/rpc/authdes_prot.c
/freebsd-11-stable/lib/libc/rpc/authunix_prot.c
/freebsd-11-stable/lib/libc/rpc/bindresvport.c
/freebsd-11-stable/lib/libc/rpc/clnt_bcast.c
/freebsd-11-stable/lib/libc/rpc/clnt_dg.c
/freebsd-11-stable/lib/libc/rpc/clnt_generic.c
/freebsd-11-stable/lib/libc/rpc/clnt_perror.c
/freebsd-11-stable/lib/libc/rpc/clnt_raw.c
/freebsd-11-stable/lib/libc/rpc/clnt_simple.c
/freebsd-11-stable/lib/libc/rpc/clnt_vc.c
/freebsd-11-stable/lib/libc/rpc/crypt_client.c
/freebsd-11-stable/lib/libc/rpc/des_crypt.c
/freebsd-11-stable/lib/libc/rpc/des_soft.c
/freebsd-11-stable/lib/libc/rpc/getnetconfig.c
/freebsd-11-stable/lib/libc/rpc/getnetpath.c
/freebsd-11-stable/lib/libc/rpc/getpublickey.c
/freebsd-11-stable/lib/libc/rpc/getrpcent.c
/freebsd-11-stable/lib/libc/rpc/getrpcport.c
/freebsd-11-stable/lib/libc/rpc/key_call.c
/freebsd-11-stable/lib/libc/rpc/key_prot_xdr.c
/freebsd-11-stable/lib/libc/rpc/mt_misc.h
/freebsd-11-stable/lib/libc/rpc/netname.c
/freebsd-11-stable/lib/libc/rpc/netnamer.c
/freebsd-11-stable/lib/libc/rpc/pmap_clnt.c
/freebsd-11-stable/lib/libc/rpc/pmap_getmaps.c
/freebsd-11-stable/lib/libc/rpc/pmap_getport.c
/freebsd-11-stable/lib/libc/rpc/pmap_prot.c
/freebsd-11-stable/lib/libc/rpc/pmap_prot2.c
/freebsd-11-stable/lib/libc/rpc/pmap_rmt.c
/freebsd-11-stable/lib/libc/rpc/rpc_callmsg.c
/freebsd-11-stable/lib/libc/rpc/rpc_com.h
/freebsd-11-stable/lib/libc/rpc/rpc_commondata.c
/freebsd-11-stable/lib/libc/rpc/rpc_dtablesize.c
/freebsd-11-stable/lib/libc/rpc/rpc_generic.c
/freebsd-11-stable/lib/libc/rpc/rpc_prot.c
/freebsd-11-stable/lib/libc/rpc/rpc_soc.c
/freebsd-11-stable/lib/libc/rpc/rpcb_clnt.c
/freebsd-11-stable/lib/libc/rpc/rpcb_prot.c
/freebsd-11-stable/lib/libc/rpc/rpcb_st_xdr.c
/freebsd-11-stable/lib/libc/rpc/rpcdname.c
/freebsd-11-stable/lib/libc/rpc/rpcsec_gss_stub.c
/freebsd-11-stable/lib/libc/rpc/rtime.c
/freebsd-11-stable/lib/libc/rpc/svc.c
/freebsd-11-stable/lib/libc/rpc/svc_auth.c
/freebsd-11-stable/lib/libc/rpc/svc_auth_des.c
/freebsd-11-stable/lib/libc/rpc/svc_auth_unix.c
/freebsd-11-stable/lib/libc/rpc/svc_dg.c
/freebsd-11-stable/lib/libc/rpc/svc_generic.c
/freebsd-11-stable/lib/libc/rpc/svc_raw.c
/freebsd-11-stable/lib/libc/rpc/svc_run.c
/freebsd-11-stable/lib/libc/rpc/svc_simple.c
/freebsd-11-stable/lib/libc/rpc/svc_vc.c
/freebsd-11-stable/lib/libc/softfloat/fpgetmask.c
/freebsd-11-stable/lib/libc/softfloat/fpgetround.c
/freebsd-11-stable/lib/libc/softfloat/fpgetsticky.c
/freebsd-11-stable/lib/libc/softfloat/fpsetmask.c
/freebsd-11-stable/lib/libc/softfloat/fpsetround.c
/freebsd-11-stable/lib/libc/softfloat/fpsetsticky.c
/freebsd-11-stable/lib/libc/sparc64/SYS.h
/freebsd-11-stable/lib/libc/sparc64/_fpmath.h
/freebsd-11-stable/lib/libc/sparc64/fpu/fpu.c
/freebsd-11-stable/lib/libc/sparc64/fpu/fpu_add.c
/freebsd-11-stable/lib/libc/sparc64/fpu/fpu_arith.h
/freebsd-11-stable/lib/libc/sparc64/fpu/fpu_compare.c
/freebsd-11-stable/lib/libc/sparc64/fpu/fpu_emu.h
/freebsd-11-stable/lib/libc/sparc64/fpu/fpu_extern.h
/freebsd-11-stable/lib/libc/sparc64/fpu/fpu_qp.c
/freebsd-11-stable/lib/libc/sparc64/fpu/fpu_reg.h
/freebsd-11-stable/lib/libc/sparc64/gen/_set_tp.c
/freebsd-11-stable/lib/libc/sparc64/gen/makecontext.c
/freebsd-11-stable/lib/libc/sparc64/gen/signalcontext.c
/freebsd-11-stable/lib/libc/sparc64/sys/__sparc_sigtramp_setup.c
/freebsd-11-stable/lib/libc/sparc64/sys/__sparc_utrap.c
/freebsd-11-stable/lib/libc/sparc64/sys/__sparc_utrap_align.c
/freebsd-11-stable/lib/libc/sparc64/sys/__sparc_utrap_emul.c
/freebsd-11-stable/lib/libc/sparc64/sys/__sparc_utrap_install.c
/freebsd-11-stable/lib/libc/sparc64/sys/__sparc_utrap_private.h
/freebsd-11-stable/lib/libc/sparc64/sys/__sparc_utrap_setup.c
/freebsd-11-stable/lib/libc/stdio/_flock_stub.c
/freebsd-11-stable/lib/libc/stdio/asprintf.c
/freebsd-11-stable/lib/libc/stdio/clrerr.c
/freebsd-11-stable/lib/libc/stdio/dprintf.c
/freebsd-11-stable/lib/libc/stdio/fclose.c
/freebsd-11-stable/lib/libc/stdio/fcloseall.c
/freebsd-11-stable/lib/libc/stdio/fdopen.c
/freebsd-11-stable/lib/libc/stdio/feof.c
/freebsd-11-stable/lib/libc/stdio/ferror.c
/freebsd-11-stable/lib/libc/stdio/fflush.c
/freebsd-11-stable/lib/libc/stdio/fgetc.c
/freebsd-11-stable/lib/libc/stdio/fgetln.c
/freebsd-11-stable/lib/libc/stdio/fgetpos.c
/freebsd-11-stable/lib/libc/stdio/fgets.c
/freebsd-11-stable/lib/libc/stdio/fgetwc.c
/freebsd-11-stable/lib/libc/stdio/fgetwln.c
/freebsd-11-stable/lib/libc/stdio/fgetws.c
/freebsd-11-stable/lib/libc/stdio/fileno.c
/freebsd-11-stable/lib/libc/stdio/findfp.c
/freebsd-11-stable/lib/libc/stdio/flags.c
/freebsd-11-stable/lib/libc/stdio/floatio.h
/freebsd-11-stable/lib/libc/stdio/fmemopen.c
/freebsd-11-stable/lib/libc/stdio/fopen.c
/freebsd-11-stable/lib/libc/stdio/fprintf.c
/freebsd-11-stable/lib/libc/stdio/fpurge.c
/freebsd-11-stable/lib/libc/stdio/fputc.c
/freebsd-11-stable/lib/libc/stdio/fputs.c
/freebsd-11-stable/lib/libc/stdio/fputwc.c
/freebsd-11-stable/lib/libc/stdio/fputws.c
/freebsd-11-stable/lib/libc/stdio/fread.c
/freebsd-11-stable/lib/libc/stdio/freopen.c
/freebsd-11-stable/lib/libc/stdio/fscanf.c
/freebsd-11-stable/lib/libc/stdio/fseek.c
/freebsd-11-stable/lib/libc/stdio/fsetpos.c
/freebsd-11-stable/lib/libc/stdio/ftell.c
/freebsd-11-stable/lib/libc/stdio/funopen.c
/freebsd-11-stable/lib/libc/stdio/fvwrite.c
/freebsd-11-stable/lib/libc/stdio/fvwrite.h
/freebsd-11-stable/lib/libc/stdio/fwalk.c
/freebsd-11-stable/lib/libc/stdio/fwide.c
/freebsd-11-stable/lib/libc/stdio/fwprintf.c
/freebsd-11-stable/lib/libc/stdio/fwrite.c
/freebsd-11-stable/lib/libc/stdio/fwscanf.c
/freebsd-11-stable/lib/libc/stdio/getc.c
/freebsd-11-stable/lib/libc/stdio/getchar.c
/freebsd-11-stable/lib/libc/stdio/getdelim.c
/freebsd-11-stable/lib/libc/stdio/getline.c
/freebsd-11-stable/lib/libc/stdio/gets.c
/freebsd-11-stable/lib/libc/stdio/getw.c
/freebsd-11-stable/lib/libc/stdio/getwc.c
/freebsd-11-stable/lib/libc/stdio/getwchar.c
/freebsd-11-stable/lib/libc/stdio/glue.h
/freebsd-11-stable/lib/libc/stdio/local.h
/freebsd-11-stable/lib/libc/stdio/makebuf.c
/freebsd-11-stable/lib/libc/stdio/mktemp.c
/freebsd-11-stable/lib/libc/stdio/open_memstream.c
/freebsd-11-stable/lib/libc/stdio/open_wmemstream.c
/freebsd-11-stable/lib/libc/stdio/perror.c
/freebsd-11-stable/lib/libc/stdio/printf-pos.c
/freebsd-11-stable/lib/libc/stdio/printf.c
/freebsd-11-stable/lib/libc/stdio/printfcommon.h
/freebsd-11-stable/lib/libc/stdio/printflocal.h
/freebsd-11-stable/lib/libc/stdio/putc.c
/freebsd-11-stable/lib/libc/stdio/putchar.c
/freebsd-11-stable/lib/libc/stdio/puts.c
/freebsd-11-stable/lib/libc/stdio/putw.c
/freebsd-11-stable/lib/libc/stdio/putwc.c
/freebsd-11-stable/lib/libc/stdio/putwchar.c
/freebsd-11-stable/lib/libc/stdio/refill.c
/freebsd-11-stable/lib/libc/stdio/remove.c
/freebsd-11-stable/lib/libc/stdio/rewind.c
/freebsd-11-stable/lib/libc/stdio/rget.c
/freebsd-11-stable/lib/libc/stdio/scanf.c
/freebsd-11-stable/lib/libc/stdio/setbuf.c
/freebsd-11-stable/lib/libc/stdio/setbuffer.c
/freebsd-11-stable/lib/libc/stdio/setvbuf.c
/freebsd-11-stable/lib/libc/stdio/snprintf.c
/freebsd-11-stable/lib/libc/stdio/sprintf.c
/freebsd-11-stable/lib/libc/stdio/sscanf.c
/freebsd-11-stable/lib/libc/stdio/stdio.c
/freebsd-11-stable/lib/libc/stdio/swprintf.c
/freebsd-11-stable/lib/libc/stdio/swscanf.c
/freebsd-11-stable/lib/libc/stdio/tempnam.c
/freebsd-11-stable/lib/libc/stdio/tmpfile.c
/freebsd-11-stable/lib/libc/stdio/tmpnam.c
/freebsd-11-stable/lib/libc/stdio/ungetc.c
/freebsd-11-stable/lib/libc/stdio/ungetwc.c
/freebsd-11-stable/lib/libc/stdio/vasprintf.c
/freebsd-11-stable/lib/libc/stdio/vdprintf.c
/freebsd-11-stable/lib/libc/stdio/vfprintf.c
/freebsd-11-stable/lib/libc/stdio/vfscanf.c
/freebsd-11-stable/lib/libc/stdio/vfwprintf.c
/freebsd-11-stable/lib/libc/stdio/vfwscanf.c
/freebsd-11-stable/lib/libc/stdio/vprintf.c
/freebsd-11-stable/lib/libc/stdio/vscanf.c
/freebsd-11-stable/lib/libc/stdio/vsnprintf.c
/freebsd-11-stable/lib/libc/stdio/vsprintf.c
/freebsd-11-stable/lib/libc/stdio/vsscanf.c
/freebsd-11-stable/lib/libc/stdio/vswprintf.c
/freebsd-11-stable/lib/libc/stdio/vswscanf.c
/freebsd-11-stable/lib/libc/stdio/vwprintf.c
/freebsd-11-stable/lib/libc/stdio/vwscanf.c
/freebsd-11-stable/lib/libc/stdio/wbuf.c
/freebsd-11-stable/lib/libc/stdio/wprintf.c
/freebsd-11-stable/lib/libc/stdio/wscanf.c
/freebsd-11-stable/lib/libc/stdio/wsetup.c
/freebsd-11-stable/lib/libc/stdio/xprintf.c
/freebsd-11-stable/lib/libc/stdio/xprintf_errno.c
/freebsd-11-stable/lib/libc/stdio/xprintf_float.c
/freebsd-11-stable/lib/libc/stdio/xprintf_hexdump.c
/freebsd-11-stable/lib/libc/stdio/xprintf_int.c
/freebsd-11-stable/lib/libc/stdio/xprintf_quote.c
/freebsd-11-stable/lib/libc/stdio/xprintf_str.c
/freebsd-11-stable/lib/libc/stdio/xprintf_time.c
/freebsd-11-stable/lib/libc/stdio/xprintf_vis.c
/freebsd-11-stable/lib/libc/stdlib/abort.c
/freebsd-11-stable/lib/libc/stdlib/abs.c
/freebsd-11-stable/lib/libc/stdlib/atexit.c
/freebsd-11-stable/lib/libc/stdlib/atexit.h
/freebsd-11-stable/lib/libc/stdlib/atof.c
/freebsd-11-stable/lib/libc/stdlib/atoi.c
/freebsd-11-stable/lib/libc/stdlib/atol.c
/freebsd-11-stable/lib/libc/stdlib/atoll.c
/freebsd-11-stable/lib/libc/stdlib/bsearch.c
/freebsd-11-stable/lib/libc/stdlib/div.c
/freebsd-11-stable/lib/libc/stdlib/exit.c
/freebsd-11-stable/lib/libc/stdlib/getenv.c
/freebsd-11-stable/lib/libc/stdlib/getopt.c
/freebsd-11-stable/lib/libc/stdlib/getsubopt.c
/freebsd-11-stable/lib/libc/stdlib/hcreate.c
/freebsd-11-stable/lib/libc/stdlib/heapsort.c
/freebsd-11-stable/lib/libc/stdlib/imaxabs.c
/freebsd-11-stable/lib/libc/stdlib/imaxdiv.c
/freebsd-11-stable/lib/libc/stdlib/labs.c
/freebsd-11-stable/lib/libc/stdlib/ldiv.c
/freebsd-11-stable/lib/libc/stdlib/llabs.c
/freebsd-11-stable/lib/libc/stdlib/lldiv.c
/freebsd-11-stable/lib/libc/stdlib/merge.c
/freebsd-11-stable/lib/libc/stdlib/ptsname.c
/freebsd-11-stable/lib/libc/stdlib/qsort.c
/freebsd-11-stable/lib/libc/stdlib/quick_exit.c
/freebsd-11-stable/lib/libc/stdlib/radixsort.c
/freebsd-11-stable/lib/libc/stdlib/rand.c
/freebsd-11-stable/lib/libc/stdlib/random.c
/freebsd-11-stable/lib/libc/stdlib/reallocf.c
/freebsd-11-stable/lib/libc/stdlib/realpath.c
/freebsd-11-stable/lib/libc/stdlib/strfmon.c
/freebsd-11-stable/lib/libc/stdlib/strtoimax.c
/freebsd-11-stable/lib/libc/stdlib/strtol.c
/freebsd-11-stable/lib/libc/stdlib/strtoll.c
/freebsd-11-stable/lib/libc/stdlib/strtoq.c
/freebsd-11-stable/lib/libc/stdlib/strtoul.c
/freebsd-11-stable/lib/libc/stdlib/strtoull.c
/freebsd-11-stable/lib/libc/stdlib/strtoumax.c
/freebsd-11-stable/lib/libc/stdlib/strtouq.c
/freebsd-11-stable/lib/libc/stdlib/system.c
/freebsd-11-stable/lib/libc/stdtime/strptime.c
/freebsd-11-stable/lib/libc/stdtime/timelocal.c
/freebsd-11-stable/lib/libc/stdtime/timelocal.h
/freebsd-11-stable/lib/libc/string/bcmp.c
/freebsd-11-stable/lib/libc/string/bcopy.c
/freebsd-11-stable/lib/libc/string/ffs.c
/freebsd-11-stable/lib/libc/string/ffsl.c
/freebsd-11-stable/lib/libc/string/ffsll.c
/freebsd-11-stable/lib/libc/string/fls.c
/freebsd-11-stable/lib/libc/string/flsl.c
/freebsd-11-stable/lib/libc/string/flsll.c
/freebsd-11-stable/lib/libc/string/memccpy.c
/freebsd-11-stable/lib/libc/string/memchr.c
/freebsd-11-stable/lib/libc/string/memcmp.c
/freebsd-11-stable/lib/libc/string/memmem.c
/freebsd-11-stable/lib/libc/string/memset.c
/freebsd-11-stable/lib/libc/string/stpcpy.c
/freebsd-11-stable/lib/libc/string/stpncpy.c
/freebsd-11-stable/lib/libc/string/strcasecmp.c
/freebsd-11-stable/lib/libc/string/strcasestr.c
/freebsd-11-stable/lib/libc/string/strcat.c
/freebsd-11-stable/lib/libc/string/strchr.c
/freebsd-11-stable/lib/libc/string/strchrnul.c
/freebsd-11-stable/lib/libc/string/strcmp.c
/freebsd-11-stable/lib/libc/string/strcoll.c
/freebsd-11-stable/lib/libc/string/strcpy.c
/freebsd-11-stable/lib/libc/string/strcspn.c
/freebsd-11-stable/lib/libc/string/strdup.c
/freebsd-11-stable/lib/libc/string/strerror.c
/freebsd-11-stable/lib/libc/string/strlen.c
/freebsd-11-stable/lib/libc/string/strmode.c
/freebsd-11-stable/lib/libc/string/strncat.c
/freebsd-11-stable/lib/libc/string/strncmp.c
/freebsd-11-stable/lib/libc/string/strncpy.c
/freebsd-11-stable/lib/libc/string/strnlen.c
/freebsd-11-stable/lib/libc/string/strnstr.c
/freebsd-11-stable/lib/libc/string/strpbrk.c
/freebsd-11-stable/lib/libc/string/strrchr.c
/freebsd-11-stable/lib/libc/string/strsep.c
/freebsd-11-stable/lib/libc/string/strsignal.c
/freebsd-11-stable/lib/libc/string/strspn.c
/freebsd-11-stable/lib/libc/string/strstr.c
/freebsd-11-stable/lib/libc/string/strtok.c
/freebsd-11-stable/lib/libc/string/strxfrm.c
/freebsd-11-stable/lib/libc/string/swab.c
/freebsd-11-stable/lib/libc/string/wcpcpy.c
/freebsd-11-stable/lib/libc/string/wcpncpy.c
/freebsd-11-stable/lib/libc/string/wcscasecmp.c
/freebsd-11-stable/lib/libc/string/wcscat.c
/freebsd-11-stable/lib/libc/string/wcschr.c
/freebsd-11-stable/lib/libc/string/wcscmp.c
/freebsd-11-stable/lib/libc/string/wcscoll.c
/freebsd-11-stable/lib/libc/string/wcscpy.c
/freebsd-11-stable/lib/libc/string/wcscspn.c
/freebsd-11-stable/lib/libc/string/wcsdup.c
/freebsd-11-stable/lib/libc/string/wcslcat.c
/freebsd-11-stable/lib/libc/string/wcslcpy.c
/freebsd-11-stable/lib/libc/string/wcslen.c
/freebsd-11-stable/lib/libc/string/wcsncasecmp.c
/freebsd-11-stable/lib/libc/string/wcsncat.c
/freebsd-11-stable/lib/libc/string/wcsncmp.c
/freebsd-11-stable/lib/libc/string/wcsncpy.c
/freebsd-11-stable/lib/libc/string/wcsnlen.c
/freebsd-11-stable/lib/libc/string/wcspbrk.c
/freebsd-11-stable/lib/libc/string/wcsrchr.c
/freebsd-11-stable/lib/libc/string/wcsspn.c
/freebsd-11-stable/lib/libc/string/wcsstr.c
/freebsd-11-stable/lib/libc/string/wcstok.c
/freebsd-11-stable/lib/libc/string/wcswidth.c
/freebsd-11-stable/lib/libc/string/wcsxfrm.c
/freebsd-11-stable/lib/libc/string/wmemchr.c
/freebsd-11-stable/lib/libc/string/wmemcmp.c
/freebsd-11-stable/lib/libc/string/wmemcpy.c
/freebsd-11-stable/lib/libc/string/wmemmove.c
/freebsd-11-stable/lib/libc/string/wmemset.c
/freebsd-11-stable/lib/libc/sys/__error.c
/freebsd-11-stable/lib/libc/sys/__vdso_gettimeofday.c
/freebsd-11-stable/lib/libc/sys/clock_gettime.c
/freebsd-11-stable/lib/libc/sys/fcntl.c
/freebsd-11-stable/lib/libc/sys/gettimeofday.c
/freebsd-11-stable/lib/libc/sys/sigwait.c
/freebsd-11-stable/lib/libc/uuid/uuid_compare.c
/freebsd-11-stable/lib/libc/uuid/uuid_create.c
/freebsd-11-stable/lib/libc/uuid/uuid_create_nil.c
/freebsd-11-stable/lib/libc/uuid/uuid_equal.c
/freebsd-11-stable/lib/libc/uuid/uuid_from_string.c
/freebsd-11-stable/lib/libc/uuid/uuid_hash.c
/freebsd-11-stable/lib/libc/uuid/uuid_is_nil.c
/freebsd-11-stable/lib/libc/uuid/uuid_stream.c
/freebsd-11-stable/lib/libc/uuid/uuid_to_string.c
/freebsd-11-stable/lib/libc/xdr/xdr.c
/freebsd-11-stable/lib/libc/xdr/xdr_array.c
/freebsd-11-stable/lib/libc/xdr/xdr_float.c
/freebsd-11-stable/lib/libc/xdr/xdr_mem.c
/freebsd-11-stable/lib/libc/xdr/xdr_rec.c
/freebsd-11-stable/lib/libc/xdr/xdr_reference.c
/freebsd-11-stable/lib/libc/xdr/xdr_sizeof.c
/freebsd-11-stable/lib/libc/xdr/xdr_stdio.c
/freebsd-11-stable/lib/libc/yp/xdryp.c
/freebsd-11-stable/lib/libc/yp/yplib.c
/freebsd-11-stable/lib/libc_nonshared/__stub.c
/freebsd-11-stable/lib/libcalendar/calendar.c
/freebsd-11-stable/lib/libcalendar/calendar.h
/freebsd-11-stable/lib/libcalendar/easter.c
/freebsd-11-stable/lib/libcam/camlib.c
/freebsd-11-stable/lib/libcam/camlib.h
/freebsd-11-stable/lib/libcam/scsi_cmdparse.c
/freebsd-11-stable/lib/libcompat/4.1/ftime.c
/freebsd-11-stable/lib/libcompat/4.3/re_comp.c
/freebsd-11-stable/lib/libcompat/4.3/rexec.c
/freebsd-11-stable/lib/libcompat/4.4/cuserid.c
/freebsd-11-stable/lib/libcrypt/crypt-md5.c
/freebsd-11-stable/lib/libcrypt/crypt-nthash.c
/freebsd-11-stable/lib/libcrypt/crypt-sha256.c
/freebsd-11-stable/lib/libcrypt/crypt-sha512.c
/freebsd-11-stable/lib/libcrypt/crypt.c
/freebsd-11-stable/lib/libcrypt/crypt.h
/freebsd-11-stable/lib/libcrypt/misc.c
/freebsd-11-stable/lib/libdevinfo/devinfo.c
/freebsd-11-stable/lib/libdevinfo/devinfo.h
/freebsd-11-stable/lib/libdevinfo/devinfo_var.h
/freebsd-11-stable/lib/libdevstat/devstat.c
/freebsd-11-stable/lib/libdevstat/devstat.h
/freebsd-11-stable/lib/libfetch/common.c
/freebsd-11-stable/lib/libfetch/common.h
/freebsd-11-stable/lib/libfetch/fetch.c
/freebsd-11-stable/lib/libfetch/fetch.h
/freebsd-11-stable/lib/libfetch/file.c
/freebsd-11-stable/lib/libfetch/ftp.c
/freebsd-11-stable/lib/libfetch/http.c
/freebsd-11-stable/lib/libgeom/geom_ctl.c
/freebsd-11-stable/lib/libgeom/geom_getxml.c
/freebsd-11-stable/lib/libgeom/geom_stats.c
/freebsd-11-stable/lib/libgeom/geom_util.c
/freebsd-11-stable/lib/libgeom/geom_xml2tree.c
/freebsd-11-stable/lib/libgeom/libgeom.h
/freebsd-11-stable/lib/libgssapi/context.h
/freebsd-11-stable/lib/libgssapi/cred.h
/freebsd-11-stable/lib/libgssapi/gss_accept_sec_context.c
/freebsd-11-stable/lib/libgssapi/gss_acquire_cred.c
/freebsd-11-stable/lib/libgssapi/gss_add_cred.c
/freebsd-11-stable/lib/libgssapi/gss_add_oid_set_member.c
/freebsd-11-stable/lib/libgssapi/gss_buffer_set.c
/freebsd-11-stable/lib/libgssapi/gss_canonicalize_name.c
/freebsd-11-stable/lib/libgssapi/gss_compare_name.c
/freebsd-11-stable/lib/libgssapi/gss_context_time.c
/freebsd-11-stable/lib/libgssapi/gss_create_empty_oid_set.c
/freebsd-11-stable/lib/libgssapi/gss_decapsulate_token.c
/freebsd-11-stable/lib/libgssapi/gss_delete_sec_context.c
/freebsd-11-stable/lib/libgssapi/gss_display_name.c
/freebsd-11-stable/lib/libgssapi/gss_display_status.c
/freebsd-11-stable/lib/libgssapi/gss_duplicate_name.c
/freebsd-11-stable/lib/libgssapi/gss_duplicate_oid.c
/freebsd-11-stable/lib/libgssapi/gss_encapsulate_token.c
/freebsd-11-stable/lib/libgssapi/gss_export_name.c
/freebsd-11-stable/lib/libgssapi/gss_export_sec_context.c
/freebsd-11-stable/lib/libgssapi/gss_get_mic.c
/freebsd-11-stable/lib/libgssapi/gss_import_name.c
/freebsd-11-stable/lib/libgssapi/gss_import_sec_context.c
/freebsd-11-stable/lib/libgssapi/gss_indicate_mechs.c
/freebsd-11-stable/lib/libgssapi/gss_init_sec_context.c
/freebsd-11-stable/lib/libgssapi/gss_inquire_context.c
/freebsd-11-stable/lib/libgssapi/gss_inquire_cred.c
/freebsd-11-stable/lib/libgssapi/gss_inquire_cred_by_mech.c
/freebsd-11-stable/lib/libgssapi/gss_inquire_cred_by_oid.c
/freebsd-11-stable/lib/libgssapi/gss_inquire_mechs_for_name.c
/freebsd-11-stable/lib/libgssapi/gss_inquire_names_for_mech.c
/freebsd-11-stable/lib/libgssapi/gss_inquire_sec_context_by_oid.c
/freebsd-11-stable/lib/libgssapi/gss_krb5.c
/freebsd-11-stable/lib/libgssapi/gss_mech_switch.c
/freebsd-11-stable/lib/libgssapi/gss_names.c
/freebsd-11-stable/lib/libgssapi/gss_oid_to_str.c
/freebsd-11-stable/lib/libgssapi/gss_pname_to_uid.c
/freebsd-11-stable/lib/libgssapi/gss_process_context_token.c
/freebsd-11-stable/lib/libgssapi/gss_pseudo_random.c
/freebsd-11-stable/lib/libgssapi/gss_release_buffer.c
/freebsd-11-stable/lib/libgssapi/gss_release_cred.c
/freebsd-11-stable/lib/libgssapi/gss_release_name.c
/freebsd-11-stable/lib/libgssapi/gss_release_oid.c
/freebsd-11-stable/lib/libgssapi/gss_release_oid_set.c
/freebsd-11-stable/lib/libgssapi/gss_seal.c
/freebsd-11-stable/lib/libgssapi/gss_set_cred_option.c
/freebsd-11-stable/lib/libgssapi/gss_set_sec_context_option.c
/freebsd-11-stable/lib/libgssapi/gss_sign.c
/freebsd-11-stable/lib/libgssapi/gss_test_oid_set_member.c
/freebsd-11-stable/lib/libgssapi/gss_unseal.c
/freebsd-11-stable/lib/libgssapi/gss_unwrap.c
/freebsd-11-stable/lib/libgssapi/gss_utils.c
/freebsd-11-stable/lib/libgssapi/gss_verify.c
/freebsd-11-stable/lib/libgssapi/gss_verify_mic.c
/freebsd-11-stable/lib/libgssapi/gss_wrap.c
/freebsd-11-stable/lib/libgssapi/gss_wrap_size_limit.c
/freebsd-11-stable/lib/libgssapi/mech_switch.h
/freebsd-11-stable/lib/libgssapi/name.h
/freebsd-11-stable/lib/libgssapi/spnego.h
/freebsd-11-stable/lib/libgssapi/utils.h
/freebsd-11-stable/lib/libiconv_modules/BIG5/citrus_big5.c
/freebsd-11-stable/lib/libiconv_modules/BIG5/citrus_big5.h
/freebsd-11-stable/lib/libiconv_modules/DECHanyu/citrus_dechanyu.c
/freebsd-11-stable/lib/libiconv_modules/DECHanyu/citrus_dechanyu.h
/freebsd-11-stable/lib/libiconv_modules/EUC/citrus_euc.c
/freebsd-11-stable/lib/libiconv_modules/EUC/citrus_euc.h
/freebsd-11-stable/lib/libiconv_modules/EUCTW/citrus_euctw.c
/freebsd-11-stable/lib/libiconv_modules/EUCTW/citrus_euctw.h
/freebsd-11-stable/lib/libiconv_modules/GBK2K/citrus_gbk2k.c
/freebsd-11-stable/lib/libiconv_modules/GBK2K/citrus_gbk2k.h
/freebsd-11-stable/lib/libiconv_modules/HZ/citrus_hz.c
/freebsd-11-stable/lib/libiconv_modules/HZ/citrus_hz.h
/freebsd-11-stable/lib/libiconv_modules/ISO2022/citrus_iso2022.c
/freebsd-11-stable/lib/libiconv_modules/ISO2022/citrus_iso2022.h
/freebsd-11-stable/lib/libiconv_modules/JOHAB/citrus_johab.c
/freebsd-11-stable/lib/libiconv_modules/JOHAB/citrus_johab.h
/freebsd-11-stable/lib/libiconv_modules/MSKanji/citrus_mskanji.c
/freebsd-11-stable/lib/libiconv_modules/MSKanji/citrus_mskanji.h
/freebsd-11-stable/lib/libiconv_modules/UES/citrus_ues.c
/freebsd-11-stable/lib/libiconv_modules/UES/citrus_ues.h
/freebsd-11-stable/lib/libiconv_modules/UTF1632/citrus_utf1632.c
/freebsd-11-stable/lib/libiconv_modules/UTF1632/citrus_utf1632.h
/freebsd-11-stable/lib/libiconv_modules/UTF7/citrus_utf7.c
/freebsd-11-stable/lib/libiconv_modules/UTF7/citrus_utf7.h
/freebsd-11-stable/lib/libiconv_modules/UTF8/citrus_utf8.c
/freebsd-11-stable/lib/libiconv_modules/UTF8/citrus_utf8.h
/freebsd-11-stable/lib/libiconv_modules/VIQR/citrus_viqr.c
/freebsd-11-stable/lib/libiconv_modules/VIQR/citrus_viqr.h
/freebsd-11-stable/lib/libiconv_modules/ZW/citrus_zw.c
/freebsd-11-stable/lib/libiconv_modules/ZW/citrus_zw.h
/freebsd-11-stable/lib/libiconv_modules/iconv_none/citrus_iconv_none.c
/freebsd-11-stable/lib/libiconv_modules/iconv_none/citrus_iconv_none.h
/freebsd-11-stable/lib/libiconv_modules/iconv_std/citrus_iconv_std.c
/freebsd-11-stable/lib/libiconv_modules/iconv_std/citrus_iconv_std.h
/freebsd-11-stable/lib/libiconv_modules/iconv_std/citrus_iconv_std_local.h
/freebsd-11-stable/lib/libiconv_modules/mapper_646/citrus_mapper_646.c
/freebsd-11-stable/lib/libiconv_modules/mapper_646/citrus_mapper_646.h
/freebsd-11-stable/lib/libiconv_modules/mapper_none/citrus_mapper_none.c
/freebsd-11-stable/lib/libiconv_modules/mapper_none/citrus_mapper_none.h
/freebsd-11-stable/lib/libiconv_modules/mapper_serial/citrus_mapper_serial.c
/freebsd-11-stable/lib/libiconv_modules/mapper_serial/citrus_mapper_serial.h
/freebsd-11-stable/lib/libiconv_modules/mapper_std/citrus_mapper_std.c
/freebsd-11-stable/lib/libiconv_modules/mapper_std/citrus_mapper_std.h
/freebsd-11-stable/lib/libiconv_modules/mapper_std/citrus_mapper_std_file.h
/freebsd-11-stable/lib/libiconv_modules/mapper_std/citrus_mapper_std_local.h
/freebsd-11-stable/lib/libiconv_modules/mapper_zone/citrus_mapper_zone.c
/freebsd-11-stable/lib/libiconv_modules/mapper_zone/citrus_mapper_zone.h
/freebsd-11-stable/lib/libipsec/ipsec_dump_policy.c
/freebsd-11-stable/lib/libipsec/ipsec_get_policylen.c
/freebsd-11-stable/lib/libipsec/ipsec_strerror.c
/freebsd-11-stable/lib/libipsec/ipsec_strerror.h
/freebsd-11-stable/lib/libipsec/libpfkey.h
/freebsd-11-stable/lib/libipsec/pfkey.c
/freebsd-11-stable/lib/libipsec/pfkey_dump.c
/freebsd-11-stable/lib/libipsec/policy_parse.y
/freebsd-11-stable/lib/libipsec/policy_token.l
/freebsd-11-stable/lib/libipsec/test-policy.c
/freebsd-11-stable/lib/libjail/jail.c
/freebsd-11-stable/lib/libjail/jail.h
/freebsd-11-stable/lib/libjail/jail_getid.c
/freebsd-11-stable/lib/libkiconv/kiconv_sysctl.c
/freebsd-11-stable/lib/libkiconv/quirks.c
/freebsd-11-stable/lib/libkiconv/quirks.h
/freebsd-11-stable/lib/libkiconv/xlat16_iconv.c
/freebsd-11-stable/lib/libkiconv/xlat16_sysctl.c
/freebsd-11-stable/lib/libkvm/kvm.c
/freebsd-11-stable/lib/libkvm/kvm.h
/freebsd-11-stable/lib/libkvm/kvm_amd64.c
/freebsd-11-stable/lib/libkvm/kvm_arm.c
/freebsd-11-stable/lib/libkvm/kvm_cptime.c
/freebsd-11-stable/lib/libkvm/kvm_getloadavg.c
/freebsd-11-stable/lib/libkvm/kvm_getswapinfo.c
/freebsd-11-stable/lib/libkvm/kvm_i386.c
/freebsd-11-stable/lib/libkvm/kvm_minidump_amd64.c
/freebsd-11-stable/lib/libkvm/kvm_minidump_arm.c
/freebsd-11-stable/lib/libkvm/kvm_minidump_i386.c
/freebsd-11-stable/lib/libkvm/kvm_minidump_mips.c
/freebsd-11-stable/lib/libkvm/kvm_pcpu.c
/freebsd-11-stable/lib/libkvm/kvm_powerpc.c
/freebsd-11-stable/lib/libkvm/kvm_powerpc64.c
/freebsd-11-stable/lib/libkvm/kvm_private.h
/freebsd-11-stable/lib/libkvm/kvm_proc.c
/freebsd-11-stable/lib/libkvm/kvm_sparc64.c
/freebsd-11-stable/lib/libkvm/kvm_vnet.c
/freebsd-11-stable/lib/libmemstat/memstat.c
/freebsd-11-stable/lib/libmemstat/memstat.h
/freebsd-11-stable/lib/libmemstat/memstat_all.c
/freebsd-11-stable/lib/libmemstat/memstat_internal.h
/freebsd-11-stable/lib/libmemstat/memstat_malloc.c
/freebsd-11-stable/lib/libmemstat/memstat_uma.c
/freebsd-11-stable/lib/libmp/mpasbn.c
/freebsd-11-stable/lib/libnandfs/libnandfs.h
/freebsd-11-stable/lib/libnandfs/nandfs.c
/freebsd-11-stable/lib/libnetbsd/rmd160.h
/freebsd-11-stable/lib/libnetbsd/sha1.h
/freebsd-11-stable/lib/libnetbsd/sha2.h
/freebsd-11-stable/lib/libnetbsd/stdlib.h
/freebsd-11-stable/lib/libnetbsd/strsuftoll.c
/freebsd-11-stable/lib/libnetbsd/sys/cdefs.h
/freebsd-11-stable/lib/libnetbsd/util.c
/freebsd-11-stable/lib/libnetbsd/util.h
/freebsd-11-stable/lib/libnv/common_impl.h
/freebsd-11-stable/lib/libnv/msgio.c
/freebsd-11-stable/lib/libnv/msgio.h
/freebsd-11-stable/lib/libpam/libpam/security/pam_mod_misc.h
/freebsd-11-stable/lib/libpam/modules/pam_chroot/pam_chroot.c
/freebsd-11-stable/lib/libpam/modules/pam_deny/pam_deny.c
/freebsd-11-stable/lib/libpam/modules/pam_echo/pam_echo.c
/freebsd-11-stable/lib/libpam/modules/pam_exec/pam_exec.c
/freebsd-11-stable/lib/libpam/modules/pam_ftpusers/pam_ftpusers.c
/freebsd-11-stable/lib/libpam/modules/pam_group/pam_group.c
/freebsd-11-stable/lib/libpam/modules/pam_guest/pam_guest.c
/freebsd-11-stable/lib/libpam/modules/pam_ksu/pam_ksu.c
/freebsd-11-stable/lib/libpam/modules/pam_lastlog/pam_lastlog.c
/freebsd-11-stable/lib/libpam/modules/pam_login_access/pam_login_access.c
/freebsd-11-stable/lib/libpam/modules/pam_login_access/pam_login_access.h
/freebsd-11-stable/lib/libpam/modules/pam_nologin/pam_nologin.c
/freebsd-11-stable/lib/libpam/modules/pam_opie/pam_opie.c
/freebsd-11-stable/lib/libpam/modules/pam_opieaccess/pam_opieaccess.c
/freebsd-11-stable/lib/libpam/modules/pam_permit/pam_permit.c
/freebsd-11-stable/lib/libpam/modules/pam_radius/pam_radius.c
/freebsd-11-stable/lib/libpam/modules/pam_rhosts/pam_rhosts.c
/freebsd-11-stable/lib/libpam/modules/pam_rootok/pam_rootok.c
/freebsd-11-stable/lib/libpam/modules/pam_securetty/pam_securetty.c
/freebsd-11-stable/lib/libpam/modules/pam_self/pam_self.c
/freebsd-11-stable/lib/libpam/modules/pam_ssh/pam_ssh.c
/freebsd-11-stable/lib/libpam/modules/pam_tacplus/pam_tacplus.c
/freebsd-11-stable/lib/libpam/modules/pam_unix/pam_unix.c
/freebsd-11-stable/lib/libpjdlog/pjdlog.c
/freebsd-11-stable/lib/libpjdlog/pjdlog.h
libpmc.c
libpmcinternal.h
pmc.h
pmclog.c
pmclog.h
/freebsd-11-stable/lib/libprocstat/cd9660.c
/freebsd-11-stable/lib/libprocstat/common_kvm.c
/freebsd-11-stable/lib/libprocstat/common_kvm.h
/freebsd-11-stable/lib/libprocstat/core.c
/freebsd-11-stable/lib/libprocstat/core.h
/freebsd-11-stable/lib/libprocstat/libprocstat.c
/freebsd-11-stable/lib/libprocstat/libprocstat.h
/freebsd-11-stable/lib/libprocstat/libprocstat_internal.h
/freebsd-11-stable/lib/libprocstat/msdosfs.c
/freebsd-11-stable/lib/libprocstat/smbfs.c
/freebsd-11-stable/lib/libprocstat/udf.c
/freebsd-11-stable/lib/libprocstat/zfs.c
/freebsd-11-stable/lib/libradius/radlib.c
/freebsd-11-stable/lib/libradius/radlib.h
/freebsd-11-stable/lib/libradius/radlib_private.h
/freebsd-11-stable/lib/libradius/radlib_vs.h
/freebsd-11-stable/lib/librpcsec_gss/rpcsec_gss.c
/freebsd-11-stable/lib/librpcsec_gss/rpcsec_gss_conf.c
/freebsd-11-stable/lib/librpcsec_gss/rpcsec_gss_int.h
/freebsd-11-stable/lib/librpcsec_gss/rpcsec_gss_misc.c
/freebsd-11-stable/lib/librpcsec_gss/rpcsec_gss_prot.c
/freebsd-11-stable/lib/librpcsec_gss/svc_rpcsec_gss.c
/freebsd-11-stable/lib/librpcsvc/yp_passwd.c
/freebsd-11-stable/lib/librpcsvc/yp_update.c
/freebsd-11-stable/lib/librt/aio.c
/freebsd-11-stable/lib/librt/mq.c
/freebsd-11-stable/lib/librt/sigev_thread.c
/freebsd-11-stable/lib/librt/sigev_thread.h
/freebsd-11-stable/lib/librt/timer.c
/freebsd-11-stable/lib/librtld_db/rtld_db.c
/freebsd-11-stable/lib/librtld_db/rtld_db.h
/freebsd-11-stable/lib/libsdp/sdp-int.h
/freebsd-11-stable/lib/libsdp/sdp.h
/freebsd-11-stable/lib/libsdp/search.c
/freebsd-11-stable/lib/libsdp/service.c
/freebsd-11-stable/lib/libsdp/session.c
/freebsd-11-stable/lib/libsdp/util.c
/freebsd-11-stable/lib/libstdbuf/stdbuf.c
/freebsd-11-stable/lib/libstdthreads/call_once.c
/freebsd-11-stable/lib/libstdthreads/cnd.c
/freebsd-11-stable/lib/libstdthreads/mtx.c
/freebsd-11-stable/lib/libstdthreads/thrd.c
/freebsd-11-stable/lib/libstdthreads/threads.h
/freebsd-11-stable/lib/libstdthreads/tss.c
/freebsd-11-stable/lib/libtacplus/taclib.c
/freebsd-11-stable/lib/libtacplus/taclib.h
/freebsd-11-stable/lib/libtacplus/taclib_private.h
/freebsd-11-stable/lib/libthr/arch/amd64/include/pthread_md.h
/freebsd-11-stable/lib/libthr/arch/arm/include/pthread_md.h
/freebsd-11-stable/lib/libthr/arch/i386/include/pthread_md.h
/freebsd-11-stable/lib/libthr/arch/mips/include/pthread_md.h
/freebsd-11-stable/lib/libthr/arch/powerpc/include/pthread_md.h
/freebsd-11-stable/lib/libthr/arch/sparc64/include/pthread_md.h
/freebsd-11-stable/lib/libthr/sys/thr_error.c
/freebsd-11-stable/lib/libthr/thread/thr_affinity.c
/freebsd-11-stable/lib/libthr/thread/thr_attr.c
/freebsd-11-stable/lib/libthr/thread/thr_autoinit.c
/freebsd-11-stable/lib/libthr/thread/thr_barrier.c
/freebsd-11-stable/lib/libthr/thread/thr_barrierattr.c
/freebsd-11-stable/lib/libthr/thread/thr_cancel.c
/freebsd-11-stable/lib/libthr/thread/thr_clean.c
/freebsd-11-stable/lib/libthr/thread/thr_concurrency.c
/freebsd-11-stable/lib/libthr/thread/thr_cond.c
/freebsd-11-stable/lib/libthr/thread/thr_condattr.c
/freebsd-11-stable/lib/libthr/thread/thr_create.c
/freebsd-11-stable/lib/libthr/thread/thr_detach.c
/freebsd-11-stable/lib/libthr/thread/thr_equal.c
/freebsd-11-stable/lib/libthr/thread/thr_event.c
/freebsd-11-stable/lib/libthr/thread/thr_exit.c
/freebsd-11-stable/lib/libthr/thread/thr_fork.c
/freebsd-11-stable/lib/libthr/thread/thr_getcpuclockid.c
/freebsd-11-stable/lib/libthr/thread/thr_getprio.c
/freebsd-11-stable/lib/libthr/thread/thr_getschedparam.c
/freebsd-11-stable/lib/libthr/thread/thr_getthreadid_np.c
/freebsd-11-stable/lib/libthr/thread/thr_info.c
/freebsd-11-stable/lib/libthr/thread/thr_init.c
/freebsd-11-stable/lib/libthr/thread/thr_join.c
/freebsd-11-stable/lib/libthr/thread/thr_kern.c
/freebsd-11-stable/lib/libthr/thread/thr_kill.c
/freebsd-11-stable/lib/libthr/thread/thr_list.c
/freebsd-11-stable/lib/libthr/thread/thr_main_np.c
/freebsd-11-stable/lib/libthr/thread/thr_multi_np.c
/freebsd-11-stable/lib/libthr/thread/thr_mutex.c
/freebsd-11-stable/lib/libthr/thread/thr_mutexattr.c
/freebsd-11-stable/lib/libthr/thread/thr_once.c
/freebsd-11-stable/lib/libthr/thread/thr_printf.c
/freebsd-11-stable/lib/libthr/thread/thr_private.h
/freebsd-11-stable/lib/libthr/thread/thr_pspinlock.c
/freebsd-11-stable/lib/libthr/thread/thr_resume_np.c
/freebsd-11-stable/lib/libthr/thread/thr_rtld.c
/freebsd-11-stable/lib/libthr/thread/thr_rwlock.c
/freebsd-11-stable/lib/libthr/thread/thr_rwlockattr.c
/freebsd-11-stable/lib/libthr/thread/thr_self.c
/freebsd-11-stable/lib/libthr/thread/thr_sem.c
/freebsd-11-stable/lib/libthr/thread/thr_setprio.c
/freebsd-11-stable/lib/libthr/thread/thr_setschedparam.c
/freebsd-11-stable/lib/libthr/thread/thr_sig.c
/freebsd-11-stable/lib/libthr/thread/thr_single_np.c
/freebsd-11-stable/lib/libthr/thread/thr_sleepq.c
/freebsd-11-stable/lib/libthr/thread/thr_spec.c
/freebsd-11-stable/lib/libthr/thread/thr_spinlock.c
/freebsd-11-stable/lib/libthr/thread/thr_stack.c
/freebsd-11-stable/lib/libthr/thread/thr_suspend_np.c
/freebsd-11-stable/lib/libthr/thread/thr_switch_np.c
/freebsd-11-stable/lib/libthr/thread/thr_symbols.c
/freebsd-11-stable/lib/libthr/thread/thr_syscalls.c
/freebsd-11-stable/lib/libthr/thread/thr_umtx.c
/freebsd-11-stable/lib/libthr/thread/thr_umtx.h
/freebsd-11-stable/lib/libthr/thread/thr_yield.c
/freebsd-11-stable/lib/libthread_db/arch/amd64/libpthread_md.c
/freebsd-11-stable/lib/libthread_db/arch/arm/libpthread_md.c
/freebsd-11-stable/lib/libthread_db/arch/i386/libpthread_md.c
/freebsd-11-stable/lib/libthread_db/arch/mips/libpthread_md.c
/freebsd-11-stable/lib/libthread_db/arch/powerpc/libpthread_md.c
/freebsd-11-stable/lib/libthread_db/arch/sparc64/libpthread_md.c
/freebsd-11-stable/lib/libthread_db/kse.h
/freebsd-11-stable/lib/libthread_db/libpthread_db.c
/freebsd-11-stable/lib/libthread_db/libpthread_db.h
/freebsd-11-stable/lib/libthread_db/libthr_db.c
/freebsd-11-stable/lib/libthread_db/thread_db.c
/freebsd-11-stable/lib/libthread_db/thread_db.h
/freebsd-11-stable/lib/libthread_db/thread_db_int.h
/freebsd-11-stable/lib/libufs/block.c
/freebsd-11-stable/lib/libufs/cgroup.c
/freebsd-11-stable/lib/libufs/inode.c
/freebsd-11-stable/lib/libufs/libufs.h
/freebsd-11-stable/lib/libufs/sblock.c
/freebsd-11-stable/lib/libufs/type.c
/freebsd-11-stable/lib/libugidfw/ugidfw.c
/freebsd-11-stable/lib/libugidfw/ugidfw.h
/freebsd-11-stable/lib/libulog/ulog.h
/freebsd-11-stable/lib/libulog/ulog_login.c
/freebsd-11-stable/lib/libulog/ulog_login_pseudo.c
/freebsd-11-stable/lib/libulog/utempter.c
/freebsd-11-stable/lib/libulog/utempter.h
/freebsd-11-stable/lib/libusb/libusb.h
/freebsd-11-stable/lib/libusb/libusb01.c
/freebsd-11-stable/lib/libusb/libusb10.c
/freebsd-11-stable/lib/libusb/libusb10.h
/freebsd-11-stable/lib/libusb/libusb10_desc.c
/freebsd-11-stable/lib/libusb/libusb10_io.c
/freebsd-11-stable/lib/libusb/libusb20.c
/freebsd-11-stable/lib/libusb/libusb20.h
/freebsd-11-stable/lib/libusb/libusb20_desc.c
/freebsd-11-stable/lib/libusb/libusb20_desc.h
/freebsd-11-stable/lib/libusb/libusb20_int.h
/freebsd-11-stable/lib/libusb/libusb20_ugen20.c
/freebsd-11-stable/lib/libusb/libusb_global_linux.h
/freebsd-11-stable/lib/libusb/usb.h
/freebsd-11-stable/lib/libusbhid/data.c
/freebsd-11-stable/lib/libusbhid/descr.c
/freebsd-11-stable/lib/libusbhid/descr_compat.c
/freebsd-11-stable/lib/libusbhid/parse.c
/freebsd-11-stable/lib/libusbhid/usage.c
/freebsd-11-stable/lib/libusbhid/usbhid.h
/freebsd-11-stable/lib/libusbhid/usbvar.h
/freebsd-11-stable/lib/libutil/auth.c
/freebsd-11-stable/lib/libutil/expand_number.c
/freebsd-11-stable/lib/libutil/fparseln.c
/freebsd-11-stable/lib/libutil/gr_util.c
/freebsd-11-stable/lib/libutil/hexdump.c
/freebsd-11-stable/lib/libutil/humanize_number.c
/freebsd-11-stable/lib/libutil/kinfo_getallproc.c
/freebsd-11-stable/lib/libutil/kinfo_getproc.c
/freebsd-11-stable/lib/libutil/kld.c
/freebsd-11-stable/lib/libutil/libutil.h
/freebsd-11-stable/lib/libutil/login_crypt.c
/freebsd-11-stable/lib/libutil/login_tty.c
/freebsd-11-stable/lib/libutil/pidfile.c
/freebsd-11-stable/lib/libutil/property.c
/freebsd-11-stable/lib/libutil/pty.c
/freebsd-11-stable/lib/libutil/pw_util.c
/freebsd-11-stable/lib/libutil/quotafile.c
/freebsd-11-stable/lib/libutil/realhostname.c
/freebsd-11-stable/lib/libutil/stub.c
/freebsd-11-stable/lib/libutil/trimdomain.c
/freebsd-11-stable/lib/libutil/uucplock.c
/freebsd-11-stable/lib/libvgl/bitmap.c
/freebsd-11-stable/lib/libvgl/keyboard.c
/freebsd-11-stable/lib/libvgl/main.c
/freebsd-11-stable/lib/libvgl/mouse.c
/freebsd-11-stable/lib/libvgl/simple.c
/freebsd-11-stable/lib/libvgl/text.c
/freebsd-11-stable/lib/libvgl/vgl.h
/freebsd-11-stable/lib/libvmmapi/vmmapi.c
/freebsd-11-stable/lib/libvmmapi/vmmapi.h
/freebsd-11-stable/lib/libvmmapi/vmmapi_freebsd.c
/freebsd-11-stable/lib/liby/main.c
/freebsd-11-stable/lib/liby/yyerror.c
/freebsd-11-stable/lib/libypclnt/ypclnt.h
/freebsd-11-stable/lib/libypclnt/ypclnt_connect.c
/freebsd-11-stable/lib/libypclnt/ypclnt_error.c
/freebsd-11-stable/lib/libypclnt/ypclnt_free.c
/freebsd-11-stable/lib/libypclnt/ypclnt_get.c
/freebsd-11-stable/lib/libypclnt/ypclnt_new.c
/freebsd-11-stable/lib/libypclnt/ypclnt_passwd.c
/freebsd-11-stable/lib/msun/amd64/fenv.c
/freebsd-11-stable/lib/msun/arm/fenv.c
/freebsd-11-stable/lib/msun/arm/fenv.h
/freebsd-11-stable/lib/msun/bsdsrc/b_exp.c
/freebsd-11-stable/lib/msun/bsdsrc/b_log.c
/freebsd-11-stable/lib/msun/bsdsrc/b_tgamma.c
/freebsd-11-stable/lib/msun/bsdsrc/mathimpl.h
/freebsd-11-stable/lib/msun/i387/fenv.c
/freebsd-11-stable/lib/msun/i387/invtrig.c
/freebsd-11-stable/lib/msun/ld128/invtrig.c
/freebsd-11-stable/lib/msun/ld128/invtrig.h
/freebsd-11-stable/lib/msun/ld128/k_expl.h
/freebsd-11-stable/lib/msun/ld128/s_exp2l.c
/freebsd-11-stable/lib/msun/ld128/s_expl.c
/freebsd-11-stable/lib/msun/ld128/s_logl.c
/freebsd-11-stable/lib/msun/ld128/s_nanl.c
/freebsd-11-stable/lib/msun/ld80/invtrig.c
/freebsd-11-stable/lib/msun/ld80/invtrig.h
/freebsd-11-stable/lib/msun/ld80/k_expl.h
/freebsd-11-stable/lib/msun/ld80/s_exp2l.c
/freebsd-11-stable/lib/msun/ld80/s_expl.c
/freebsd-11-stable/lib/msun/ld80/s_logl.c
/freebsd-11-stable/lib/msun/ld80/s_nanl.c
/freebsd-11-stable/lib/msun/mips/fenv.c
/freebsd-11-stable/lib/msun/mips/fenv.h
/freebsd-11-stable/lib/msun/powerpc/fenv.c
/freebsd-11-stable/lib/msun/powerpc/fenv.h
/freebsd-11-stable/lib/msun/sparc64/fenv.c
/freebsd-11-stable/lib/msun/sparc64/fenv.h
/freebsd-11-stable/lib/msun/src/catrig.c
/freebsd-11-stable/lib/msun/src/catrigf.c
/freebsd-11-stable/lib/msun/src/e_remainderl.c
/freebsd-11-stable/lib/msun/src/e_sqrtl.c
/freebsd-11-stable/lib/msun/src/fenv-softfloat.h
/freebsd-11-stable/lib/msun/src/imprecise.c
/freebsd-11-stable/lib/msun/src/k_exp.c
/freebsd-11-stable/lib/msun/src/k_expf.c
/freebsd-11-stable/lib/msun/src/s_carg.c
/freebsd-11-stable/lib/msun/src/s_cargf.c
/freebsd-11-stable/lib/msun/src/s_cargl.c
/freebsd-11-stable/lib/msun/src/s_ccosh.c
/freebsd-11-stable/lib/msun/src/s_ccoshf.c
/freebsd-11-stable/lib/msun/src/s_cexp.c
/freebsd-11-stable/lib/msun/src/s_cexpf.c
/freebsd-11-stable/lib/msun/src/s_cimag.c
/freebsd-11-stable/lib/msun/src/s_cimagf.c
/freebsd-11-stable/lib/msun/src/s_cimagl.c
/freebsd-11-stable/lib/msun/src/s_conj.c
/freebsd-11-stable/lib/msun/src/s_conjf.c
/freebsd-11-stable/lib/msun/src/s_conjl.c
/freebsd-11-stable/lib/msun/src/s_copysignl.c
/freebsd-11-stable/lib/msun/src/s_cosl.c
/freebsd-11-stable/lib/msun/src/s_cproj.c
/freebsd-11-stable/lib/msun/src/s_cprojf.c
/freebsd-11-stable/lib/msun/src/s_cprojl.c
/freebsd-11-stable/lib/msun/src/s_creal.c
/freebsd-11-stable/lib/msun/src/s_crealf.c
/freebsd-11-stable/lib/msun/src/s_creall.c
/freebsd-11-stable/lib/msun/src/s_csinh.c
/freebsd-11-stable/lib/msun/src/s_csinhf.c
/freebsd-11-stable/lib/msun/src/s_csqrt.c
/freebsd-11-stable/lib/msun/src/s_csqrtf.c
/freebsd-11-stable/lib/msun/src/s_csqrtl.c
/freebsd-11-stable/lib/msun/src/s_ctanh.c
/freebsd-11-stable/lib/msun/src/s_ctanhf.c
/freebsd-11-stable/lib/msun/src/s_exp2.c
/freebsd-11-stable/lib/msun/src/s_exp2f.c
/freebsd-11-stable/lib/msun/src/s_fabsl.c
/freebsd-11-stable/lib/msun/src/s_fdim.c
/freebsd-11-stable/lib/msun/src/s_fma.c
/freebsd-11-stable/lib/msun/src/s_fmaf.c
/freebsd-11-stable/lib/msun/src/s_fmal.c
/freebsd-11-stable/lib/msun/src/s_fmax.c
/freebsd-11-stable/lib/msun/src/s_fmaxf.c
/freebsd-11-stable/lib/msun/src/s_fmaxl.c
/freebsd-11-stable/lib/msun/src/s_fmin.c
/freebsd-11-stable/lib/msun/src/s_fminf.c
/freebsd-11-stable/lib/msun/src/s_fminl.c
/freebsd-11-stable/lib/msun/src/s_frexpl.c
/freebsd-11-stable/lib/msun/src/s_isfinite.c
/freebsd-11-stable/lib/msun/src/s_isnan.c
/freebsd-11-stable/lib/msun/src/s_isnormal.c
/freebsd-11-stable/lib/msun/src/s_lrint.c
/freebsd-11-stable/lib/msun/src/s_lround.c
/freebsd-11-stable/lib/msun/src/s_modfl.c
/freebsd-11-stable/lib/msun/src/s_nan.c
/freebsd-11-stable/lib/msun/src/s_nearbyint.c
/freebsd-11-stable/lib/msun/src/s_rintl.c
/freebsd-11-stable/lib/msun/src/s_round.c
/freebsd-11-stable/lib/msun/src/s_roundf.c
/freebsd-11-stable/lib/msun/src/s_roundl.c
/freebsd-11-stable/lib/msun/src/s_scalbln.c
/freebsd-11-stable/lib/msun/src/s_signbit.c
/freebsd-11-stable/lib/msun/src/s_sinl.c
/freebsd-11-stable/lib/msun/src/s_tanl.c
/freebsd-11-stable/lib/msun/src/s_tgammaf.c
/freebsd-11-stable/lib/msun/x86/fenv.h
/freebsd-11-stable/lib/ncurses/ncurses/pathnames.h
/freebsd-11-stable/lib/ncurses/ncurses/termcap.c
/freebsd-11-stable/libexec/bootpd/rtmsg.c
/freebsd-11-stable/libexec/comsat/comsat.c
/freebsd-11-stable/libexec/fingerd/fingerd.c
/freebsd-11-stable/libexec/fingerd/pathnames.h
/freebsd-11-stable/libexec/ftpd/extern.h
/freebsd-11-stable/libexec/ftpd/ftpcmd.y
/freebsd-11-stable/libexec/ftpd/ftpd.c
/freebsd-11-stable/libexec/ftpd/logwtmp.c
/freebsd-11-stable/libexec/ftpd/pathnames.h
/freebsd-11-stable/libexec/ftpd/popen.c
/freebsd-11-stable/libexec/getty/extern.h
/freebsd-11-stable/libexec/getty/gettytab.h
/freebsd-11-stable/libexec/getty/init.c
/freebsd-11-stable/libexec/getty/main.c
/freebsd-11-stable/libexec/getty/pathnames.h
/freebsd-11-stable/libexec/getty/subr.c
/freebsd-11-stable/libexec/mknetid/hash.c
/freebsd-11-stable/libexec/mknetid/hash.h
/freebsd-11-stable/libexec/mknetid/mknetid.c
/freebsd-11-stable/libexec/mknetid/parse_group.c
/freebsd-11-stable/libexec/rbootd/bpf.c
/freebsd-11-stable/libexec/rbootd/conf.c
/freebsd-11-stable/libexec/rbootd/defs.h
/freebsd-11-stable/libexec/rbootd/parseconf.c
/freebsd-11-stable/libexec/rbootd/pathnames.h
/freebsd-11-stable/libexec/rbootd/rbootd.c
/freebsd-11-stable/libexec/rbootd/rmp.h
/freebsd-11-stable/libexec/rbootd/rmp_var.h
/freebsd-11-stable/libexec/rbootd/rmpproto.c
/freebsd-11-stable/libexec/rbootd/utils.c
/freebsd-11-stable/libexec/revnetgroup/hash.c
/freebsd-11-stable/libexec/revnetgroup/hash.h
/freebsd-11-stable/libexec/revnetgroup/parse_netgroup.c
/freebsd-11-stable/libexec/revnetgroup/revnetgroup.c
/freebsd-11-stable/libexec/rpc.rstatd/rstatd.c
/freebsd-11-stable/libexec/rpc.rusersd/extern.h
/freebsd-11-stable/libexec/rpc.rusersd/rusers_proc.c
/freebsd-11-stable/libexec/rpc.rusersd/rusersd.c
/freebsd-11-stable/libexec/rtld-elf/malloc.c
/freebsd-11-stable/libexec/rtld-elf/rtld_printf.c
/freebsd-11-stable/libexec/talkd/announce.c
/freebsd-11-stable/libexec/talkd/print.c
/freebsd-11-stable/libexec/talkd/process.c
/freebsd-11-stable/libexec/talkd/table.c
/freebsd-11-stable/libexec/talkd/talkd.c
/freebsd-11-stable/libexec/tftpd/tftpd.c
/freebsd-11-stable/libexec/ypxfr/yp_dbwrite.c
/freebsd-11-stable/libexec/ypxfr/ypxfr_extern.h
/freebsd-11-stable/libexec/ypxfr/ypxfr_getmap.c
/freebsd-11-stable/libexec/ypxfr/ypxfr_main.c
/freebsd-11-stable/libexec/ypxfr/ypxfr_misc.c
/freebsd-11-stable/libexec/ypxfr/ypxfrd_getmap.c
/freebsd-11-stable/release/picobsd/tinyware/login/pathnames.h
/freebsd-11-stable/release/picobsd/tinyware/login/pico-login.c
/freebsd-11-stable/release/picobsd/tinyware/passwd/extern.h
/freebsd-11-stable/release/picobsd/tinyware/passwd/local_passwd.c
/freebsd-11-stable/release/picobsd/tinyware/passwd/passwd.c
/freebsd-11-stable/release/picobsd/tinyware/passwd/pw_copy.c
/freebsd-11-stable/release/picobsd/tinyware/passwd/pw_util.c
/freebsd-11-stable/release/picobsd/tinyware/passwd/pw_util.h
/freebsd-11-stable/sbin/bsdlabel/bsdlabel.c
/freebsd-11-stable/sbin/bsdlabel/pathnames.h
/freebsd-11-stable/sbin/clri/clri.c
/freebsd-11-stable/sbin/devd/devd.cc
/freebsd-11-stable/sbin/dhclient/alloc.c
/freebsd-11-stable/sbin/dhclient/bpf.c
/freebsd-11-stable/sbin/dhclient/clparse.c
/freebsd-11-stable/sbin/dhclient/conflex.c
/freebsd-11-stable/sbin/dhclient/convert.c
/freebsd-11-stable/sbin/dhclient/dhclient.c
/freebsd-11-stable/sbin/dhclient/dhcp.h
/freebsd-11-stable/sbin/dhclient/dhcpd.h
/freebsd-11-stable/sbin/dhclient/dispatch.c
/freebsd-11-stable/sbin/dhclient/errwarn.c
/freebsd-11-stable/sbin/dhclient/hash.c
/freebsd-11-stable/sbin/dhclient/inet.c
/freebsd-11-stable/sbin/dhclient/options.c
/freebsd-11-stable/sbin/dhclient/packet.c
/freebsd-11-stable/sbin/dhclient/parse.c
/freebsd-11-stable/sbin/dhclient/tables.c
/freebsd-11-stable/sbin/dhclient/tree.c
/freebsd-11-stable/sbin/dmesg/dmesg.c
/freebsd-11-stable/sbin/dump/dump.h
/freebsd-11-stable/sbin/dump/dumprmt.c
/freebsd-11-stable/sbin/dump/itime.c
/freebsd-11-stable/sbin/dump/main.c
/freebsd-11-stable/sbin/dump/optr.c
/freebsd-11-stable/sbin/dump/pathnames.h
/freebsd-11-stable/sbin/dump/tape.c
/freebsd-11-stable/sbin/dump/traverse.c
/freebsd-11-stable/sbin/dump/unctime.c
/freebsd-11-stable/sbin/dumpfs/dumpfs.c
/freebsd-11-stable/sbin/dumpon/dumpon.c
/freebsd-11-stable/sbin/etherswitchcfg/ifmedia.c
/freebsd-11-stable/sbin/ffsinfo/ffsinfo.c
/freebsd-11-stable/sbin/fsck/fsck.c
/freebsd-11-stable/sbin/fsck/fsutil.c
/freebsd-11-stable/sbin/fsck/preen.c
/freebsd-11-stable/sbin/fsck_ffs/dir.c
/freebsd-11-stable/sbin/fsck_ffs/fsck.h
/freebsd-11-stable/sbin/fsck_ffs/fsutil.c
/freebsd-11-stable/sbin/fsck_ffs/gjournal.c
/freebsd-11-stable/sbin/fsck_ffs/globs.c
/freebsd-11-stable/sbin/fsck_ffs/inode.c
/freebsd-11-stable/sbin/fsck_ffs/main.c
/freebsd-11-stable/sbin/fsck_ffs/pass1.c
/freebsd-11-stable/sbin/fsck_ffs/pass1b.c
/freebsd-11-stable/sbin/fsck_ffs/pass2.c
/freebsd-11-stable/sbin/fsck_ffs/pass3.c
/freebsd-11-stable/sbin/fsck_ffs/pass4.c
/freebsd-11-stable/sbin/fsck_ffs/pass5.c
/freebsd-11-stable/sbin/fsck_ffs/setup.c
/freebsd-11-stable/sbin/fsck_ffs/utilities.c
/freebsd-11-stable/sbin/growfs/debug.c
/freebsd-11-stable/sbin/growfs/debug.h
/freebsd-11-stable/sbin/growfs/growfs.c
/freebsd-11-stable/sbin/gvinum/gvinum.h
/freebsd-11-stable/sbin/ifconfig/af_inet.c
/freebsd-11-stable/sbin/ifconfig/af_inet6.c
/freebsd-11-stable/sbin/ifconfig/af_link.c
/freebsd-11-stable/sbin/ifconfig/ifclone.c
/freebsd-11-stable/sbin/ifconfig/ifconfig.c
/freebsd-11-stable/sbin/ifconfig/ifmedia.c
/freebsd-11-stable/sbin/ifconfig/ifvlan.c
/freebsd-11-stable/sbin/init/init.c
/freebsd-11-stable/sbin/init/pathnames.h
/freebsd-11-stable/sbin/mknod/mknod.c
/freebsd-11-stable/sbin/mount/getmntopts.c
/freebsd-11-stable/sbin/mount/mntopts.h
/freebsd-11-stable/sbin/mount/mount.c
/freebsd-11-stable/sbin/mount/mount_fs.c
/freebsd-11-stable/sbin/mount/pathnames.h
/freebsd-11-stable/sbin/mount/vfslist.c
/freebsd-11-stable/sbin/mount_cd9660/mount_cd9660.c
/freebsd-11-stable/sbin/mount_nfs/mount_nfs.c
/freebsd-11-stable/sbin/mount_nullfs/mount_nullfs.c
/freebsd-11-stable/sbin/mount_udf/mount_udf.c
/freebsd-11-stable/sbin/mount_unionfs/mount_unionfs.c
/freebsd-11-stable/sbin/newfs/mkfs.c
/freebsd-11-stable/sbin/newfs/newfs.c
/freebsd-11-stable/sbin/newfs/newfs.h
/freebsd-11-stable/sbin/nfsiod/nfsiod.c
/freebsd-11-stable/sbin/ping/ping.c
/freebsd-11-stable/sbin/ping6/ping6.c
/freebsd-11-stable/sbin/quotacheck/preen.c
/freebsd-11-stable/sbin/quotacheck/quotacheck.c
/freebsd-11-stable/sbin/quotacheck/quotacheck.h
/freebsd-11-stable/sbin/rcorder/ealloc.c
/freebsd-11-stable/sbin/rcorder/hash.c
/freebsd-11-stable/sbin/rcorder/hash.h
/freebsd-11-stable/sbin/reboot/reboot.c
/freebsd-11-stable/sbin/restore/dirs.c
/freebsd-11-stable/sbin/restore/extern.h
/freebsd-11-stable/sbin/restore/interactive.c
/freebsd-11-stable/sbin/restore/main.c
/freebsd-11-stable/sbin/restore/restore.c
/freebsd-11-stable/sbin/restore/restore.h
/freebsd-11-stable/sbin/restore/symtab.c
/freebsd-11-stable/sbin/restore/tape.c
/freebsd-11-stable/sbin/restore/utilities.c
/freebsd-11-stable/sbin/route/route.c
/freebsd-11-stable/sbin/routed/defs.h
/freebsd-11-stable/sbin/routed/if.c
/freebsd-11-stable/sbin/routed/input.c
/freebsd-11-stable/sbin/routed/main.c
/freebsd-11-stable/sbin/routed/output.c
/freebsd-11-stable/sbin/routed/parms.c
/freebsd-11-stable/sbin/routed/pathnames.h
/freebsd-11-stable/sbin/routed/radix.c
/freebsd-11-stable/sbin/routed/radix.h
/freebsd-11-stable/sbin/routed/rdisc.c
/freebsd-11-stable/sbin/routed/rtquery/rtquery.c
/freebsd-11-stable/sbin/routed/table.c
/freebsd-11-stable/sbin/routed/trace.c
/freebsd-11-stable/sbin/savecore/savecore.c
/freebsd-11-stable/sbin/setkey/parse.y
/freebsd-11-stable/sbin/setkey/setkey.c
/freebsd-11-stable/sbin/setkey/test-pfkey.c
/freebsd-11-stable/sbin/setkey/test-policy.c
/freebsd-11-stable/sbin/setkey/token.l
/freebsd-11-stable/sbin/setkey/vchar.h
/freebsd-11-stable/sbin/shutdown/shutdown.c
/freebsd-11-stable/sbin/sunlabel/sunlabel.c
/freebsd-11-stable/sbin/swapon/swapon.c
/freebsd-11-stable/sbin/sysctl/sysctl.c
/freebsd-11-stable/sbin/tunefs/tunefs.c
/freebsd-11-stable/sbin/umount/umount.c
/freebsd-11-stable/share/examples/tests/tests/atf/cp_test.sh
/freebsd-11-stable/share/examples/tests/tests/atf/printf_test.c
/freebsd-11-stable/share/examples/tests/tests/plain/printf_test.c
/freebsd-11-stable/sys/amd64/acpica/acpi_machdep.c
/freebsd-11-stable/sys/amd64/amd64/atomic.c
/freebsd-11-stable/sys/amd64/amd64/bios.c
/freebsd-11-stable/sys/amd64/amd64/bpf_jit_machdep.c
/freebsd-11-stable/sys/amd64/amd64/bpf_jit_machdep.h
/freebsd-11-stable/sys/amd64/amd64/elf_machdep.c
/freebsd-11-stable/sys/amd64/amd64/fpu.c
/freebsd-11-stable/sys/amd64/amd64/gdb_machdep.c
/freebsd-11-stable/sys/amd64/amd64/genassym.c
/freebsd-11-stable/sys/amd64/amd64/in_cksum.c
/freebsd-11-stable/sys/amd64/amd64/initcpu.c
/freebsd-11-stable/sys/amd64/amd64/io.c
/freebsd-11-stable/sys/amd64/amd64/machdep.c
/freebsd-11-stable/sys/amd64/amd64/mem.c
/freebsd-11-stable/sys/amd64/amd64/minidump_machdep.c
/freebsd-11-stable/sys/amd64/amd64/mp_machdep.c
/freebsd-11-stable/sys/amd64/amd64/pmap.c
/freebsd-11-stable/sys/amd64/amd64/prof_machdep.c
/freebsd-11-stable/sys/amd64/amd64/ptrace_machdep.c
/freebsd-11-stable/sys/amd64/amd64/sys_machdep.c
/freebsd-11-stable/sys/amd64/amd64/trap.c
/freebsd-11-stable/sys/amd64/amd64/uio_machdep.c
/freebsd-11-stable/sys/amd64/amd64/uma_machdep.c
/freebsd-11-stable/sys/amd64/amd64/vm_machdep.c
/freebsd-11-stable/sys/amd64/ia32/ia32_misc.c
/freebsd-11-stable/sys/amd64/ia32/ia32_reg.c
/freebsd-11-stable/sys/amd64/ia32/ia32_signal.c
/freebsd-11-stable/sys/amd64/ia32/ia32_syscall.c
/freebsd-11-stable/sys/amd64/include/_bus.h
/freebsd-11-stable/sys/amd64/include/asm.h
/freebsd-11-stable/sys/amd64/include/asmacros.h
/freebsd-11-stable/sys/amd64/include/atomic.h
/freebsd-11-stable/sys/amd64/include/bus_dma.h
/freebsd-11-stable/sys/amd64/include/counter.h
/freebsd-11-stable/sys/amd64/include/cpu.h
/freebsd-11-stable/sys/amd64/include/cpufunc.h
/freebsd-11-stable/sys/amd64/include/exec.h
/freebsd-11-stable/sys/amd64/include/floatingpoint.h
/freebsd-11-stable/sys/amd64/include/fpu.h
/freebsd-11-stable/sys/amd64/include/gdb_machdep.h
/freebsd-11-stable/sys/amd64/include/ieeefp.h
/freebsd-11-stable/sys/amd64/include/in_cksum.h
/freebsd-11-stable/sys/amd64/include/intr_machdep.h
/freebsd-11-stable/sys/amd64/include/iodev.h
/freebsd-11-stable/sys/amd64/include/kdb.h
/freebsd-11-stable/sys/amd64/include/limits.h
/freebsd-11-stable/sys/amd64/include/md_var.h
/freebsd-11-stable/sys/amd64/include/memdev.h
/freebsd-11-stable/sys/amd64/include/minidump.h
/freebsd-11-stable/sys/amd64/include/mp_watchdog.h
/freebsd-11-stable/sys/amd64/include/param.h
/freebsd-11-stable/sys/amd64/include/pc/bios.h
/freebsd-11-stable/sys/amd64/include/pcb.h
/freebsd-11-stable/sys/amd64/include/pcpu.h
/freebsd-11-stable/sys/amd64/include/pmap.h
/freebsd-11-stable/sys/amd64/include/pmc_mdep.h
/freebsd-11-stable/sys/amd64/include/ppireg.h
/freebsd-11-stable/sys/amd64/include/proc.h
/freebsd-11-stable/sys/amd64/include/profile.h
/freebsd-11-stable/sys/amd64/include/reloc.h
/freebsd-11-stable/sys/amd64/include/runq.h
/freebsd-11-stable/sys/amd64/include/segments.h
/freebsd-11-stable/sys/amd64/include/sf_buf.h
/freebsd-11-stable/sys/amd64/include/timerreg.h
/freebsd-11-stable/sys/amd64/include/tss.h
/freebsd-11-stable/sys/amd64/include/varargs.h
/freebsd-11-stable/sys/amd64/include/vm.h
/freebsd-11-stable/sys/amd64/include/vmm.h
/freebsd-11-stable/sys/amd64/include/vmm_dev.h
/freebsd-11-stable/sys/amd64/include/vmm_instruction_emul.h
/freebsd-11-stable/sys/amd64/include/vmparam.h
/freebsd-11-stable/sys/amd64/linux32/linux.h
/freebsd-11-stable/sys/amd64/linux32/linux32_dummy.c
/freebsd-11-stable/sys/amd64/linux32/linux32_machdep.c
/freebsd-11-stable/sys/amd64/linux32/linux32_sysvec.c
/freebsd-11-stable/sys/amd64/pci/pci_cfgreg.c
/freebsd-11-stable/sys/amd64/vmm/amd/amdv.c
/freebsd-11-stable/sys/amd64/vmm/intel/ept.c
/freebsd-11-stable/sys/amd64/vmm/intel/ept.h
/freebsd-11-stable/sys/amd64/vmm/intel/vmcs.c
/freebsd-11-stable/sys/amd64/vmm/intel/vmcs.h
/freebsd-11-stable/sys/amd64/vmm/intel/vmx.c
/freebsd-11-stable/sys/amd64/vmm/intel/vmx.h
/freebsd-11-stable/sys/amd64/vmm/intel/vmx_controls.h
/freebsd-11-stable/sys/amd64/vmm/intel/vmx_cpufunc.h
/freebsd-11-stable/sys/amd64/vmm/intel/vmx_genassym.c
/freebsd-11-stable/sys/amd64/vmm/intel/vmx_msr.c
/freebsd-11-stable/sys/amd64/vmm/intel/vmx_msr.h
/freebsd-11-stable/sys/amd64/vmm/intel/vtd.c
/freebsd-11-stable/sys/amd64/vmm/io/iommu.c
/freebsd-11-stable/sys/amd64/vmm/io/iommu.h
/freebsd-11-stable/sys/amd64/vmm/io/ppt.c
/freebsd-11-stable/sys/amd64/vmm/io/ppt.h
/freebsd-11-stable/sys/amd64/vmm/io/vhpet.c
/freebsd-11-stable/sys/amd64/vmm/io/vhpet.h
/freebsd-11-stable/sys/amd64/vmm/io/vioapic.c
/freebsd-11-stable/sys/amd64/vmm/io/vioapic.h
/freebsd-11-stable/sys/amd64/vmm/io/vlapic.c
/freebsd-11-stable/sys/amd64/vmm/io/vlapic.h
/freebsd-11-stable/sys/amd64/vmm/io/vlapic_priv.h
/freebsd-11-stable/sys/amd64/vmm/vmm.c
/freebsd-11-stable/sys/amd64/vmm/vmm_dev.c
/freebsd-11-stable/sys/amd64/vmm/vmm_host.c
/freebsd-11-stable/sys/amd64/vmm/vmm_host.h
/freebsd-11-stable/sys/amd64/vmm/vmm_instruction_emul.c
/freebsd-11-stable/sys/amd64/vmm/vmm_ktr.h
/freebsd-11-stable/sys/amd64/vmm/vmm_lapic.c
/freebsd-11-stable/sys/amd64/vmm/vmm_lapic.h
/freebsd-11-stable/sys/amd64/vmm/vmm_mem.c
/freebsd-11-stable/sys/amd64/vmm/vmm_mem.h
/freebsd-11-stable/sys/amd64/vmm/vmm_stat.c
/freebsd-11-stable/sys/amd64/vmm/vmm_stat.h
/freebsd-11-stable/sys/amd64/vmm/vmm_util.c
/freebsd-11-stable/sys/amd64/vmm/vmm_util.h
/freebsd-11-stable/sys/amd64/vmm/x86.c
/freebsd-11-stable/sys/amd64/vmm/x86.h
/freebsd-11-stable/sys/arm/allwinner/a10_ehci.c
/freebsd-11-stable/sys/arm/allwinner/a10_gpio.c
/freebsd-11-stable/sys/arm/allwinner/a10_sramc.c
/freebsd-11-stable/sys/arm/allwinner/a10_sramc.h
/freebsd-11-stable/sys/arm/allwinner/a20/a20_cpu_cfg.c
/freebsd-11-stable/sys/arm/allwinner/a20/a20_cpu_cfg.h
/freebsd-11-stable/sys/arm/allwinner/if_emac.c
/freebsd-11-stable/sys/arm/allwinner/if_emacreg.h
/freebsd-11-stable/sys/arm/arm/autoconf.c
/freebsd-11-stable/sys/arm/arm/bus_space_generic.c
/freebsd-11-stable/sys/arm/arm/busdma_machdep-v6.c
/freebsd-11-stable/sys/arm/arm/cpufunc.c
/freebsd-11-stable/sys/arm/arm/db_disasm.c
/freebsd-11-stable/sys/arm/arm/disassem.c
/freebsd-11-stable/sys/arm/arm/dump_machdep.c
/freebsd-11-stable/sys/arm/arm/elf_machdep.c
/freebsd-11-stable/sys/arm/arm/elf_trampoline.c
/freebsd-11-stable/sys/arm/arm/fiq.c
/freebsd-11-stable/sys/arm/arm/gdb_machdep.c
/freebsd-11-stable/sys/arm/arm/genassym.c
/freebsd-11-stable/sys/arm/arm/generic_timer.c
/freebsd-11-stable/sys/arm/arm/gic.c
/freebsd-11-stable/sys/arm/arm/in_cksum.c
/freebsd-11-stable/sys/arm/arm/intr.c
/freebsd-11-stable/sys/arm/arm/machdep.c
/freebsd-11-stable/sys/arm/arm/mem.c
/freebsd-11-stable/sys/arm/arm/minidump_machdep.c
/freebsd-11-stable/sys/arm/arm/mp_machdep.c
/freebsd-11-stable/sys/arm/arm/mpcore_timer.c
/freebsd-11-stable/sys/arm/arm/physmem.c
/freebsd-11-stable/sys/arm/arm/pl310.c
/freebsd-11-stable/sys/arm/arm/pmap-v6.c
/freebsd-11-stable/sys/arm/arm/sc_machdep.c
/freebsd-11-stable/sys/arm/arm/stack_machdep.c
/freebsd-11-stable/sys/arm/arm/stdatomic.c
/freebsd-11-stable/sys/arm/arm/sys_machdep.c
/freebsd-11-stable/sys/arm/arm/uio_machdep.c
/freebsd-11-stable/sys/arm/arm/undefined.c
/freebsd-11-stable/sys/arm/arm/vfp.c
/freebsd-11-stable/sys/arm/arm/vm_machdep.c
/freebsd-11-stable/sys/arm/at91/at91.c
/freebsd-11-stable/sys/arm/at91/at91_aic.c
/freebsd-11-stable/sys/arm/at91/at91_aicreg.h
/freebsd-11-stable/sys/arm/at91/at91_cfata.c
/freebsd-11-stable/sys/arm/at91/at91_gpio.h
/freebsd-11-stable/sys/arm/at91/at91_machdep.c
/freebsd-11-stable/sys/arm/at91/at91_mci.c
/freebsd-11-stable/sys/arm/at91/at91_mcireg.h
/freebsd-11-stable/sys/arm/at91/at91_pdcreg.h
/freebsd-11-stable/sys/arm/at91/at91_pio.c
/freebsd-11-stable/sys/arm/at91/at91_pio_sam9g45.h
/freebsd-11-stable/sys/arm/at91/at91_pioreg.h
/freebsd-11-stable/sys/arm/at91/at91_piovar.h
/freebsd-11-stable/sys/arm/at91/at91_pit.c
/freebsd-11-stable/sys/arm/at91/at91_pitreg.h
/freebsd-11-stable/sys/arm/at91/at91_pmc.c
/freebsd-11-stable/sys/arm/at91/at91_pmcreg.h
/freebsd-11-stable/sys/arm/at91/at91_pmcvar.h
/freebsd-11-stable/sys/arm/at91/at91_rst.c
/freebsd-11-stable/sys/arm/at91/at91_rstreg.h
/freebsd-11-stable/sys/arm/at91/at91_rtc.c
/freebsd-11-stable/sys/arm/at91/at91_rtcreg.h
/freebsd-11-stable/sys/arm/at91/at91_sdramc.c
/freebsd-11-stable/sys/arm/at91/at91_shdwc.c
/freebsd-11-stable/sys/arm/at91/at91_smc.c
/freebsd-11-stable/sys/arm/at91/at91_smc.h
/freebsd-11-stable/sys/arm/at91/at91_spi.c
/freebsd-11-stable/sys/arm/at91/at91_spireg.h
/freebsd-11-stable/sys/arm/at91/at91_ssc.c
/freebsd-11-stable/sys/arm/at91/at91_sscreg.h
/freebsd-11-stable/sys/arm/at91/at91_st.c
/freebsd-11-stable/sys/arm/at91/at91_streg.h
/freebsd-11-stable/sys/arm/at91/at91_tcb.c
/freebsd-11-stable/sys/arm/at91/at91_twi.c
/freebsd-11-stable/sys/arm/at91/at91_twiio.h
/freebsd-11-stable/sys/arm/at91/at91_twireg.h
/freebsd-11-stable/sys/arm/at91/at91_usartreg.h
/freebsd-11-stable/sys/arm/at91/at91_wdt.c
/freebsd-11-stable/sys/arm/at91/at91_wdtreg.h
/freebsd-11-stable/sys/arm/at91/at91board.h
/freebsd-11-stable/sys/arm/at91/at91reg.h
/freebsd-11-stable/sys/arm/at91/at91rm9200.c
/freebsd-11-stable/sys/arm/at91/at91rm9200_devices.c
/freebsd-11-stable/sys/arm/at91/at91rm9200var.h
/freebsd-11-stable/sys/arm/at91/at91rm92reg.h
/freebsd-11-stable/sys/arm/at91/at91sam9260.c
/freebsd-11-stable/sys/arm/at91/at91sam9260reg.h
/freebsd-11-stable/sys/arm/at91/at91sam9g20.c
/freebsd-11-stable/sys/arm/at91/at91sam9g20reg.h
/freebsd-11-stable/sys/arm/at91/at91sam9g45.c
/freebsd-11-stable/sys/arm/at91/at91sam9g45reg.h
/freebsd-11-stable/sys/arm/at91/at91sam9x5.c
/freebsd-11-stable/sys/arm/at91/at91sam9x5reg.h
/freebsd-11-stable/sys/arm/at91/at91soc.c
/freebsd-11-stable/sys/arm/at91/at91soc.h
/freebsd-11-stable/sys/arm/at91/at91var.h
/freebsd-11-stable/sys/arm/at91/board_bwct.c
/freebsd-11-stable/sys/arm/at91/board_eb9200.c
/freebsd-11-stable/sys/arm/at91/board_ethernut5.c
/freebsd-11-stable/sys/arm/at91/board_hl200.c
/freebsd-11-stable/sys/arm/at91/board_hl201.c
/freebsd-11-stable/sys/arm/at91/board_kb920x.c
/freebsd-11-stable/sys/arm/at91/board_qila9g20.c
/freebsd-11-stable/sys/arm/at91/board_sam9260ek.c
/freebsd-11-stable/sys/arm/at91/board_sam9g20ek.c
/freebsd-11-stable/sys/arm/at91/board_sam9x25ek.c
/freebsd-11-stable/sys/arm/at91/board_sn9g45.c
/freebsd-11-stable/sys/arm/at91/board_tsc4370.c
/freebsd-11-stable/sys/arm/at91/if_ate.c
/freebsd-11-stable/sys/arm/at91/if_atereg.h
/freebsd-11-stable/sys/arm/at91/if_macb.c
/freebsd-11-stable/sys/arm/at91/uart_bus_at91usart.c
/freebsd-11-stable/sys/arm/at91/uart_cpu_at91usart.c
/freebsd-11-stable/sys/arm/at91/uart_dev_at91usart.c
/freebsd-11-stable/sys/arm/broadcom/bcm2835/bcm2835_bsc.c
/freebsd-11-stable/sys/arm/broadcom/bcm2835/bcm2835_bscreg.h
/freebsd-11-stable/sys/arm/broadcom/bcm2835/bcm2835_bscvar.h
/freebsd-11-stable/sys/arm/broadcom/bcm2835/bcm2835_dma.c
/freebsd-11-stable/sys/arm/broadcom/bcm2835/bcm2835_dma.h
/freebsd-11-stable/sys/arm/broadcom/bcm2835/bcm2835_fb.c
/freebsd-11-stable/sys/arm/broadcom/bcm2835/bcm2835_fbd.c
/freebsd-11-stable/sys/arm/broadcom/bcm2835/bcm2835_gpio.c
/freebsd-11-stable/sys/arm/broadcom/bcm2835/bcm2835_gpio.h
/freebsd-11-stable/sys/arm/broadcom/bcm2835/bcm2835_intr.c
/freebsd-11-stable/sys/arm/broadcom/bcm2835/bcm2835_machdep.c
/freebsd-11-stable/sys/arm/broadcom/bcm2835/bcm2835_mbox.c
/freebsd-11-stable/sys/arm/broadcom/bcm2835/bcm2835_mbox.h
/freebsd-11-stable/sys/arm/broadcom/bcm2835/bcm2835_sdhci.c
/freebsd-11-stable/sys/arm/broadcom/bcm2835/bcm2835_spi.c
/freebsd-11-stable/sys/arm/broadcom/bcm2835/bcm2835_spireg.h
/freebsd-11-stable/sys/arm/broadcom/bcm2835/bcm2835_spivar.h
/freebsd-11-stable/sys/arm/broadcom/bcm2835/bcm2835_systimer.c
/freebsd-11-stable/sys/arm/broadcom/bcm2835/bcm2835_vcbus.h
/freebsd-11-stable/sys/arm/broadcom/bcm2835/bcm2835_wdog.c
/freebsd-11-stable/sys/arm/broadcom/bcm2835/bcm2835_wdog.h
/freebsd-11-stable/sys/arm/conf/genboardid.awk
/freebsd-11-stable/sys/arm/freescale/fsl_ocotp.c
/freebsd-11-stable/sys/arm/freescale/fsl_ocotpreg.h
/freebsd-11-stable/sys/arm/freescale/fsl_ocotpvar.h
/freebsd-11-stable/sys/arm/freescale/imx/imx51_ccm.c
/freebsd-11-stable/sys/arm/freescale/imx/imx51_ccmreg.h
/freebsd-11-stable/sys/arm/freescale/imx/imx51_ccmvar.h
/freebsd-11-stable/sys/arm/freescale/imx/imx51_dpllreg.h
/freebsd-11-stable/sys/arm/freescale/imx/imx51_ipuv3.c
/freebsd-11-stable/sys/arm/freescale/imx/imx51_ipuv3_fbd.c
/freebsd-11-stable/sys/arm/freescale/imx/imx51_ipuv3reg.h
/freebsd-11-stable/sys/arm/freescale/imx/imx51_machdep.c
/freebsd-11-stable/sys/arm/freescale/imx/imx51_sdmareg.h
/freebsd-11-stable/sys/arm/freescale/imx/imx51_ssireg.h
/freebsd-11-stable/sys/arm/freescale/imx/imx51_tzicreg.h
/freebsd-11-stable/sys/arm/freescale/imx/imx53_machdep.c
/freebsd-11-stable/sys/arm/freescale/imx/imx6_anatop.c
/freebsd-11-stable/sys/arm/freescale/imx/imx6_anatopreg.h
/freebsd-11-stable/sys/arm/freescale/imx/imx6_anatopvar.h
/freebsd-11-stable/sys/arm/freescale/imx/imx6_ccm.c
/freebsd-11-stable/sys/arm/freescale/imx/imx6_ccmreg.h
/freebsd-11-stable/sys/arm/freescale/imx/imx6_machdep.c
/freebsd-11-stable/sys/arm/freescale/imx/imx6_mp.c
/freebsd-11-stable/sys/arm/freescale/imx/imx6_pl310.c
/freebsd-11-stable/sys/arm/freescale/imx/imx6_usbphy.c
/freebsd-11-stable/sys/arm/freescale/imx/imx_common.c
/freebsd-11-stable/sys/arm/freescale/imx/imx_gpt.c
/freebsd-11-stable/sys/arm/freescale/imx/imx_gptreg.h
/freebsd-11-stable/sys/arm/freescale/imx/imx_machdep.c
/freebsd-11-stable/sys/arm/freescale/imx/imx_machdep.h
/freebsd-11-stable/sys/arm/freescale/imx/imx_nop_usbphy.c
/freebsd-11-stable/sys/arm/freescale/imx/imx_wdog.c
/freebsd-11-stable/sys/arm/freescale/imx/imx_wdogreg.h
/freebsd-11-stable/sys/arm/freescale/imx/tzic.c
/freebsd-11-stable/sys/arm/freescale/vybrid/vf_anadig.c
/freebsd-11-stable/sys/arm/freescale/vybrid/vf_ccm.c
/freebsd-11-stable/sys/arm/freescale/vybrid/vf_common.h
/freebsd-11-stable/sys/arm/freescale/vybrid/vf_dcu4.c
/freebsd-11-stable/sys/arm/freescale/vybrid/vf_dmamux.c
/freebsd-11-stable/sys/arm/freescale/vybrid/vf_dmamux.h
/freebsd-11-stable/sys/arm/freescale/vybrid/vf_edma.c
/freebsd-11-stable/sys/arm/freescale/vybrid/vf_edma.h
/freebsd-11-stable/sys/arm/freescale/vybrid/vf_ehci.c
/freebsd-11-stable/sys/arm/freescale/vybrid/vf_gpio.c
/freebsd-11-stable/sys/arm/freescale/vybrid/vf_i2c.c
/freebsd-11-stable/sys/arm/freescale/vybrid/vf_iomuxc.c
/freebsd-11-stable/sys/arm/freescale/vybrid/vf_iomuxc.h
/freebsd-11-stable/sys/arm/freescale/vybrid/vf_machdep.c
/freebsd-11-stable/sys/arm/freescale/vybrid/vf_mscm.c
/freebsd-11-stable/sys/arm/freescale/vybrid/vf_nfc.c
/freebsd-11-stable/sys/arm/freescale/vybrid/vf_port.c
/freebsd-11-stable/sys/arm/freescale/vybrid/vf_port.h
/freebsd-11-stable/sys/arm/freescale/vybrid/vf_sai.c
/freebsd-11-stable/sys/arm/freescale/vybrid/vf_src.c
/freebsd-11-stable/sys/arm/freescale/vybrid/vf_src.h
/freebsd-11-stable/sys/arm/freescale/vybrid/vf_tcon.c
/freebsd-11-stable/sys/arm/freescale/vybrid/vf_uart.c
/freebsd-11-stable/sys/arm/include/_align.h
/freebsd-11-stable/sys/arm/include/_bus.h
/freebsd-11-stable/sys/arm/include/_inttypes.h
/freebsd-11-stable/sys/arm/include/_limits.h
/freebsd-11-stable/sys/arm/include/_stdint.h
/freebsd-11-stable/sys/arm/include/_types.h
/freebsd-11-stable/sys/arm/include/armreg.h
/freebsd-11-stable/sys/arm/include/asm.h
/freebsd-11-stable/sys/arm/include/asmacros.h
/freebsd-11-stable/sys/arm/include/at91_gpio.h
/freebsd-11-stable/sys/arm/include/atags.h
/freebsd-11-stable/sys/arm/include/atomic.h
/freebsd-11-stable/sys/arm/include/blockio.h
/freebsd-11-stable/sys/arm/include/board.h
/freebsd-11-stable/sys/arm/include/bus.h
/freebsd-11-stable/sys/arm/include/bus_dma.h
/freebsd-11-stable/sys/arm/include/clock.h
/freebsd-11-stable/sys/arm/include/counter.h
/freebsd-11-stable/sys/arm/include/cpufunc.h
/freebsd-11-stable/sys/arm/include/disassem.h
/freebsd-11-stable/sys/arm/include/elf.h
/freebsd-11-stable/sys/arm/include/endian.h
/freebsd-11-stable/sys/arm/include/exec.h
/freebsd-11-stable/sys/arm/include/fdt.h
/freebsd-11-stable/sys/arm/include/fiq.h
/freebsd-11-stable/sys/arm/include/float.h
/freebsd-11-stable/sys/arm/include/floatingpoint.h
/freebsd-11-stable/sys/arm/include/frame.h
/freebsd-11-stable/sys/arm/include/gdb_machdep.h
/freebsd-11-stable/sys/arm/include/ieee.h
/freebsd-11-stable/sys/arm/include/in_cksum.h
/freebsd-11-stable/sys/arm/include/intr.h
/freebsd-11-stable/sys/arm/include/kdb.h
/freebsd-11-stable/sys/arm/include/limits.h
/freebsd-11-stable/sys/arm/include/md_var.h
/freebsd-11-stable/sys/arm/include/memdev.h
/freebsd-11-stable/sys/arm/include/metadata.h
/freebsd-11-stable/sys/arm/include/minidump.h
/freebsd-11-stable/sys/arm/include/ofw_machdep.h
/freebsd-11-stable/sys/arm/include/param.h
/freebsd-11-stable/sys/arm/include/pcb.h
/freebsd-11-stable/sys/arm/include/pcpu.h
/freebsd-11-stable/sys/arm/include/physmem.h
/freebsd-11-stable/sys/arm/include/pl310.h
/freebsd-11-stable/sys/arm/include/pmap.h
/freebsd-11-stable/sys/arm/include/pmc_mdep.h
/freebsd-11-stable/sys/arm/include/proc.h
/freebsd-11-stable/sys/arm/include/profile.h
/freebsd-11-stable/sys/arm/include/psl.h
/freebsd-11-stable/sys/arm/include/reloc.h
/freebsd-11-stable/sys/arm/include/runq.h
/freebsd-11-stable/sys/arm/include/sc_machdep.h
/freebsd-11-stable/sys/arm/include/sf_buf.h
/freebsd-11-stable/sys/arm/include/signal.h
/freebsd-11-stable/sys/arm/include/stdarg.h
/freebsd-11-stable/sys/arm/include/sysarch.h
/freebsd-11-stable/sys/arm/include/ucontext.h
/freebsd-11-stable/sys/arm/include/undefined.h
/freebsd-11-stable/sys/arm/include/utrap.h
/freebsd-11-stable/sys/arm/include/vdso.h
/freebsd-11-stable/sys/arm/include/vfp.h
/freebsd-11-stable/sys/arm/include/vm.h
/freebsd-11-stable/sys/arm/include/vmparam.h
/freebsd-11-stable/sys/arm/lpc/if_lpe.c
/freebsd-11-stable/sys/arm/lpc/if_lpereg.h
/freebsd-11-stable/sys/arm/lpc/lpc_dmac.c
/freebsd-11-stable/sys/arm/lpc/lpc_fb.c
/freebsd-11-stable/sys/arm/lpc/lpc_gpio.c
/freebsd-11-stable/sys/arm/lpc/lpc_intc.c
/freebsd-11-stable/sys/arm/lpc/lpc_machdep.c
/freebsd-11-stable/sys/arm/lpc/lpc_mmc.c
/freebsd-11-stable/sys/arm/lpc/lpc_ohci.c
/freebsd-11-stable/sys/arm/lpc/lpc_pll.c
/freebsd-11-stable/sys/arm/lpc/lpc_pwr.c
/freebsd-11-stable/sys/arm/lpc/lpc_rtc.c
/freebsd-11-stable/sys/arm/lpc/lpc_spi.c
/freebsd-11-stable/sys/arm/lpc/lpc_timer.c
/freebsd-11-stable/sys/arm/lpc/lpcreg.h
/freebsd-11-stable/sys/arm/lpc/lpcvar.h
/freebsd-11-stable/sys/arm/lpc/ssd1289.c
/freebsd-11-stable/sys/arm/mv/armadaxp/armadaxp.c
/freebsd-11-stable/sys/arm/mv/armadaxp/armadaxp_mp.c
/freebsd-11-stable/sys/arm/mv/discovery/discovery.c
/freebsd-11-stable/sys/arm/mv/gpio.c
/freebsd-11-stable/sys/arm/mv/ic.c
/freebsd-11-stable/sys/arm/mv/kirkwood/kirkwood.c
/freebsd-11-stable/sys/arm/mv/mpic.c
/freebsd-11-stable/sys/arm/mv/mv_common.c
/freebsd-11-stable/sys/arm/mv/mv_localbus.c
/freebsd-11-stable/sys/arm/mv/mv_machdep.c
/freebsd-11-stable/sys/arm/mv/mv_pci.c
/freebsd-11-stable/sys/arm/mv/mv_ts.c
/freebsd-11-stable/sys/arm/mv/mvreg.h
/freebsd-11-stable/sys/arm/mv/mvvar.h
/freebsd-11-stable/sys/arm/mv/mvwin.h
/freebsd-11-stable/sys/arm/mv/orion/db88f5xxx.c
/freebsd-11-stable/sys/arm/mv/orion/orion.c
/freebsd-11-stable/sys/arm/mv/rtc.c
/freebsd-11-stable/sys/arm/mv/timer.c
/freebsd-11-stable/sys/arm/rockchip/rk30xx_gpio.c
/freebsd-11-stable/sys/arm/rockchip/rk30xx_grf.c
/freebsd-11-stable/sys/arm/rockchip/rk30xx_grf.h
/freebsd-11-stable/sys/arm/rockchip/rk30xx_machdep.c
/freebsd-11-stable/sys/arm/rockchip/rk30xx_pmu.c
/freebsd-11-stable/sys/arm/rockchip/rk30xx_pmu.h
/freebsd-11-stable/sys/arm/rockchip/rk30xx_wdog.c
/freebsd-11-stable/sys/arm/rockchip/rk30xx_wdog.h
/freebsd-11-stable/sys/arm/samsung/exynos/exynos5_machdep.c
/freebsd-11-stable/sys/arm/samsung/exynos/exynos5_mp.c
/freebsd-11-stable/sys/arm/ti/aintc.c
/freebsd-11-stable/sys/arm/ti/am335x/am335x_dmtimer.c
/freebsd-11-stable/sys/arm/ti/am335x/am335x_lcd.c
/freebsd-11-stable/sys/arm/ti/am335x/am335x_lcd.h
/freebsd-11-stable/sys/arm/ti/am335x/am335x_lcd_syscons.c
/freebsd-11-stable/sys/arm/ti/am335x/am335x_pmic.c
/freebsd-11-stable/sys/arm/ti/am335x/am335x_prcm.c
/freebsd-11-stable/sys/arm/ti/am335x/am335x_pwm.h
/freebsd-11-stable/sys/arm/ti/am335x/am335x_reg.h
/freebsd-11-stable/sys/arm/ti/am335x/am335x_scm.h
/freebsd-11-stable/sys/arm/ti/am335x/am335x_scm_padconf.c
/freebsd-11-stable/sys/arm/ti/am335x/am335x_usbss.c
/freebsd-11-stable/sys/arm/ti/cpsw/if_cpsw.c
/freebsd-11-stable/sys/arm/ti/cpsw/if_cpswreg.h
/freebsd-11-stable/sys/arm/ti/cpsw/if_cpswvar.h
/freebsd-11-stable/sys/arm/ti/omap4/omap4_l2cache.c
/freebsd-11-stable/sys/arm/ti/omap4/omap4_mp.c
/freebsd-11-stable/sys/arm/ti/omap4/omap4_prcm_clks.c
/freebsd-11-stable/sys/arm/ti/omap4/omap4_reg.h
/freebsd-11-stable/sys/arm/ti/omap4/omap4_scm_padconf.c
/freebsd-11-stable/sys/arm/ti/omap4/omap4_smc.h
/freebsd-11-stable/sys/arm/ti/omap4/pandaboard/pandaboard.c
/freebsd-11-stable/sys/arm/ti/ti_cpuid.c
/freebsd-11-stable/sys/arm/ti/ti_cpuid.h
/freebsd-11-stable/sys/arm/ti/ti_edma3.c
/freebsd-11-stable/sys/arm/ti/ti_edma3.h
/freebsd-11-stable/sys/arm/ti/ti_gpio.c
/freebsd-11-stable/sys/arm/ti/ti_i2c.c
/freebsd-11-stable/sys/arm/ti/ti_i2c.h
/freebsd-11-stable/sys/arm/ti/ti_machdep.c
/freebsd-11-stable/sys/arm/ti/ti_mbox.c
/freebsd-11-stable/sys/arm/ti/ti_mbox.h
/freebsd-11-stable/sys/arm/ti/ti_prcm.c
/freebsd-11-stable/sys/arm/ti/ti_prcm.h
/freebsd-11-stable/sys/arm/ti/ti_pruss.c
/freebsd-11-stable/sys/arm/ti/ti_pruss.h
/freebsd-11-stable/sys/arm/ti/ti_scm.c
/freebsd-11-stable/sys/arm/ti/ti_scm.h
/freebsd-11-stable/sys/arm/ti/ti_sdhci.c
/freebsd-11-stable/sys/arm/ti/ti_sdma.c
/freebsd-11-stable/sys/arm/ti/ti_sdma.h
/freebsd-11-stable/sys/arm/ti/ti_sdmareg.h
/freebsd-11-stable/sys/arm/ti/ti_smc.h
/freebsd-11-stable/sys/arm/ti/tivar.h
/freebsd-11-stable/sys/arm/ti/twl/twl.c
/freebsd-11-stable/sys/arm/ti/twl/twl.h
/freebsd-11-stable/sys/arm/ti/twl/twl_clks.c
/freebsd-11-stable/sys/arm/ti/twl/twl_clks.h
/freebsd-11-stable/sys/arm/ti/twl/twl_vreg.c
/freebsd-11-stable/sys/arm/ti/twl/twl_vreg.h
/freebsd-11-stable/sys/arm/ti/usb/omap_ehci.c
/freebsd-11-stable/sys/arm/ti/usb/omap_usb.h
/freebsd-11-stable/sys/arm/xilinx/uart_dev_cdnc.c
/freebsd-11-stable/sys/arm/xilinx/zy7_devcfg.c
/freebsd-11-stable/sys/arm/xilinx/zy7_ehci.c
/freebsd-11-stable/sys/arm/xilinx/zy7_gpio.c
/freebsd-11-stable/sys/arm/xilinx/zy7_l2cache.c
/freebsd-11-stable/sys/arm/xilinx/zy7_machdep.c
/freebsd-11-stable/sys/arm/xilinx/zy7_reg.h
/freebsd-11-stable/sys/arm/xilinx/zy7_slcr.c
/freebsd-11-stable/sys/arm/xilinx/zy7_slcr.h
/freebsd-11-stable/sys/arm/xscale/i8134x/crb_machdep.c
/freebsd-11-stable/sys/arm/xscale/i8134x/i81342.c
/freebsd-11-stable/sys/arm/xscale/i8134x/i81342_mcu.c
/freebsd-11-stable/sys/arm/xscale/i8134x/i81342_pci.c
/freebsd-11-stable/sys/arm/xscale/i8134x/i81342_space.c
/freebsd-11-stable/sys/arm/xscale/i8134x/i81342reg.h
/freebsd-11-stable/sys/arm/xscale/i8134x/i81342var.h
/freebsd-11-stable/sys/arm/xscale/i8134x/iq81342_7seg.c
/freebsd-11-stable/sys/arm/xscale/i8134x/iq81342reg.h
/freebsd-11-stable/sys/arm/xscale/i8134x/iq81342var.h
/freebsd-11-stable/sys/arm/xscale/i8134x/obio.c
/freebsd-11-stable/sys/arm/xscale/i8134x/obiovar.h
/freebsd-11-stable/sys/arm/xscale/i8134x/uart_bus_i81342.c
/freebsd-11-stable/sys/arm/xscale/i8134x/uart_cpu_i81342.c
/freebsd-11-stable/sys/arm/xscale/ixp425/avila_ata.c
/freebsd-11-stable/sys/arm/xscale/ixp425/avila_gpio.c
/freebsd-11-stable/sys/arm/xscale/ixp425/avila_led.c
/freebsd-11-stable/sys/arm/xscale/ixp425/avila_machdep.c
/freebsd-11-stable/sys/arm/xscale/ixp425/cambria_exp_space.c
/freebsd-11-stable/sys/arm/xscale/ixp425/cambria_fled.c
/freebsd-11-stable/sys/arm/xscale/ixp425/cambria_gpio.c
/freebsd-11-stable/sys/arm/xscale/ixp425/cambria_led.c
/freebsd-11-stable/sys/arm/xscale/ixp425/if_npe.c
/freebsd-11-stable/sys/arm/xscale/ixp425/if_npereg.h
/freebsd-11-stable/sys/arm/xscale/ixp425/ixdp425_pci.c
/freebsd-11-stable/sys/arm/xscale/ixp425/ixdp425reg.h
/freebsd-11-stable/sys/arm/xscale/ixp425/ixp425.c
/freebsd-11-stable/sys/arm/xscale/ixp425/ixp425_a4x_space.c
/freebsd-11-stable/sys/arm/xscale/ixp425/ixp425_iic.c
/freebsd-11-stable/sys/arm/xscale/ixp425/ixp425_intr.h
/freebsd-11-stable/sys/arm/xscale/ixp425/ixp425_mem.c
/freebsd-11-stable/sys/arm/xscale/ixp425/ixp425_npe.c
/freebsd-11-stable/sys/arm/xscale/ixp425/ixp425_npereg.h
/freebsd-11-stable/sys/arm/xscale/ixp425/ixp425_npevar.h
/freebsd-11-stable/sys/arm/xscale/ixp425/ixp425_pci.c
/freebsd-11-stable/sys/arm/xscale/ixp425/ixp425_pci_space.c
/freebsd-11-stable/sys/arm/xscale/ixp425/ixp425_qmgr.c
/freebsd-11-stable/sys/arm/xscale/ixp425/ixp425_qmgr.h
/freebsd-11-stable/sys/arm/xscale/ixp425/ixp425_space.c
/freebsd-11-stable/sys/arm/xscale/ixp425/ixp425_timer.c
/freebsd-11-stable/sys/arm/xscale/ixp425/ixp425_wdog.c
/freebsd-11-stable/sys/arm/xscale/ixp425/ixp425reg.h
/freebsd-11-stable/sys/arm/xscale/ixp425/ixp425var.h
/freebsd-11-stable/sys/arm/xscale/ixp425/uart_bus_ixp425.c
/freebsd-11-stable/sys/arm/xscale/ixp425/uart_cpu_ixp425.c
/freebsd-11-stable/sys/arm/xscale/pxa/if_smc_smi.c
/freebsd-11-stable/sys/arm/xscale/pxa/pxa_gpio.c
/freebsd-11-stable/sys/arm/xscale/pxa/pxa_icu.c
/freebsd-11-stable/sys/arm/xscale/pxa/pxa_machdep.c
/freebsd-11-stable/sys/arm/xscale/pxa/pxa_obio.c
/freebsd-11-stable/sys/arm/xscale/pxa/pxa_smi.c
/freebsd-11-stable/sys/arm/xscale/pxa/pxa_space.c
/freebsd-11-stable/sys/arm/xscale/pxa/pxa_timer.c
/freebsd-11-stable/sys/arm/xscale/pxa/pxareg.h
/freebsd-11-stable/sys/arm/xscale/pxa/pxavar.h
/freebsd-11-stable/sys/arm/xscale/pxa/uart_bus_pxa.c
/freebsd-11-stable/sys/arm/xscale/pxa/uart_cpu_pxa.c
/freebsd-11-stable/sys/bsm/audit.h
/freebsd-11-stable/sys/bsm/audit_domain.h
/freebsd-11-stable/sys/bsm/audit_errno.h
/freebsd-11-stable/sys/bsm/audit_fcntl.h
/freebsd-11-stable/sys/bsm/audit_internal.h
/freebsd-11-stable/sys/bsm/audit_kevents.h
/freebsd-11-stable/sys/bsm/audit_record.h
/freebsd-11-stable/sys/bsm/audit_socket_type.h
/freebsd-11-stable/sys/compat/freebsd32/freebsd32_ioctl.c
/freebsd-11-stable/sys/compat/freebsd32/freebsd32_ioctl.h
/freebsd-11-stable/sys/compat/linprocfs/linprocfs.c
/freebsd-11-stable/sys/compat/ndis/cfg_var.h
/freebsd-11-stable/sys/compat/ndis/hal_var.h
/freebsd-11-stable/sys/compat/ndis/kern_ndis.c
/freebsd-11-stable/sys/compat/ndis/kern_windrv.c
/freebsd-11-stable/sys/compat/ndis/ndis_var.h
/freebsd-11-stable/sys/compat/ndis/ntoskrnl_var.h
/freebsd-11-stable/sys/compat/ndis/pe_var.h
/freebsd-11-stable/sys/compat/ndis/resource_var.h
/freebsd-11-stable/sys/compat/ndis/subr_hal.c
/freebsd-11-stable/sys/compat/ndis/subr_ndis.c
/freebsd-11-stable/sys/compat/ndis/subr_ntoskrnl.c
/freebsd-11-stable/sys/compat/ndis/subr_pe.c
/freebsd-11-stable/sys/compat/ndis/subr_usbd.c
/freebsd-11-stable/sys/compat/ndis/usbd_var.h
/freebsd-11-stable/sys/conf/newvers.sh
/freebsd-11-stable/sys/conf/systags.sh
/freebsd-11-stable/sys/crypto/sha1.c
/freebsd-11-stable/sys/crypto/sha1.h
/freebsd-11-stable/sys/ddb/db_ps.c
/freebsd-11-stable/sys/ddb/ddb.h
/freebsd-11-stable/sys/dev/aac/aac.c
/freebsd-11-stable/sys/dev/aac/aac_cam.c
/freebsd-11-stable/sys/dev/aac/aac_debug.c
/freebsd-11-stable/sys/dev/aac/aac_disk.c
/freebsd-11-stable/sys/dev/aac/aac_linux.c
/freebsd-11-stable/sys/dev/aac/aac_pci.c
/freebsd-11-stable/sys/dev/aac/aac_tables.h
/freebsd-11-stable/sys/dev/aac/aacreg.h
/freebsd-11-stable/sys/dev/aac/aacvar.h
/freebsd-11-stable/sys/dev/aacraid/aacraid.c
/freebsd-11-stable/sys/dev/aacraid/aacraid_cam.c
/freebsd-11-stable/sys/dev/aacraid/aacraid_debug.c
/freebsd-11-stable/sys/dev/aacraid/aacraid_debug.h
/freebsd-11-stable/sys/dev/aacraid/aacraid_linux.c
/freebsd-11-stable/sys/dev/aacraid/aacraid_pci.c
/freebsd-11-stable/sys/dev/aacraid/aacraid_reg.h
/freebsd-11-stable/sys/dev/aacraid/aacraid_var.h
/freebsd-11-stable/sys/dev/adb/adb.h
/freebsd-11-stable/sys/dev/adb/adb_bus.c
/freebsd-11-stable/sys/dev/adb/adb_buttons.c
/freebsd-11-stable/sys/dev/adb/adb_kbd.c
/freebsd-11-stable/sys/dev/adb/adb_mouse.c
/freebsd-11-stable/sys/dev/adb/adbvar.h
/freebsd-11-stable/sys/dev/adlink/adlink.c
/freebsd-11-stable/sys/dev/advansys/adv_isa.c
/freebsd-11-stable/sys/dev/advansys/adv_pci.c
/freebsd-11-stable/sys/dev/advansys/advansys.c
/freebsd-11-stable/sys/dev/advansys/advansys.h
/freebsd-11-stable/sys/dev/advansys/advlib.c
/freebsd-11-stable/sys/dev/advansys/advlib.h
/freebsd-11-stable/sys/dev/advansys/adw_pci.c
/freebsd-11-stable/sys/dev/advansys/adwcam.c
/freebsd-11-stable/sys/dev/advansys/adwlib.c
/freebsd-11-stable/sys/dev/advansys/adwlib.h
/freebsd-11-stable/sys/dev/advansys/adwvar.h
/freebsd-11-stable/sys/dev/ae/if_ae.c
/freebsd-11-stable/sys/dev/ae/if_aereg.h
/freebsd-11-stable/sys/dev/ae/if_aevar.h
/freebsd-11-stable/sys/dev/age/if_age.c
/freebsd-11-stable/sys/dev/age/if_agereg.h
/freebsd-11-stable/sys/dev/age/if_agevar.h
/freebsd-11-stable/sys/dev/agp/agp.c
/freebsd-11-stable/sys/dev/agp/agp_ali.c
/freebsd-11-stable/sys/dev/agp/agp_amd.c
/freebsd-11-stable/sys/dev/agp/agp_amd64.c
/freebsd-11-stable/sys/dev/agp/agp_apple.c
/freebsd-11-stable/sys/dev/agp/agp_ati.c
/freebsd-11-stable/sys/dev/agp/agp_i810.c
/freebsd-11-stable/sys/dev/agp/agp_i810.h
/freebsd-11-stable/sys/dev/agp/agp_intel.c
/freebsd-11-stable/sys/dev/agp/agp_nvidia.c
/freebsd-11-stable/sys/dev/agp/agp_sis.c
/freebsd-11-stable/sys/dev/agp/agp_via.c
/freebsd-11-stable/sys/dev/agp/agppriv.h
/freebsd-11-stable/sys/dev/agp/agpreg.h
/freebsd-11-stable/sys/dev/agp/agpvar.h
/freebsd-11-stable/sys/dev/aha/aha.c
/freebsd-11-stable/sys/dev/aha/aha_isa.c
/freebsd-11-stable/sys/dev/aha/ahareg.h
/freebsd-11-stable/sys/dev/ahci/ahci.c
/freebsd-11-stable/sys/dev/ahci/ahci.h
/freebsd-11-stable/sys/dev/ahci/ahciem.c
/freebsd-11-stable/sys/dev/aic/aic.c
/freebsd-11-stable/sys/dev/aic/aic6360reg.h
/freebsd-11-stable/sys/dev/aic/aic_isa.c
/freebsd-11-stable/sys/dev/aic/aic_pccard.c
/freebsd-11-stable/sys/dev/aic/aicvar.h
/freebsd-11-stable/sys/dev/aic7xxx/ahc_isa.c
/freebsd-11-stable/sys/dev/aic7xxx/aic7770.c
/freebsd-11-stable/sys/dev/aic7xxx/aic79xx.c
/freebsd-11-stable/sys/dev/aic7xxx/aic79xx.h
/freebsd-11-stable/sys/dev/aic7xxx/aic79xx_inline.h
/freebsd-11-stable/sys/dev/aic7xxx/aic79xx_pci.c
/freebsd-11-stable/sys/dev/aic7xxx/aic7xxx.c
/freebsd-11-stable/sys/dev/aic7xxx/aic7xxx.h
/freebsd-11-stable/sys/dev/aic7xxx/aic7xxx_93cx6.h
/freebsd-11-stable/sys/dev/aic7xxx/aic7xxx_inline.h
/freebsd-11-stable/sys/dev/aic7xxx/aic7xxx_pci.c
/freebsd-11-stable/sys/dev/aic7xxx/aicasm/aicasm.c
/freebsd-11-stable/sys/dev/aic7xxx/aicasm/aicasm.h
/freebsd-11-stable/sys/dev/aic7xxx/aicasm/aicasm_gram.y
/freebsd-11-stable/sys/dev/aic7xxx/aicasm/aicasm_insformat.h
/freebsd-11-stable/sys/dev/aic7xxx/aicasm/aicasm_macro_gram.y
/freebsd-11-stable/sys/dev/aic7xxx/aicasm/aicasm_macro_scan.l
/freebsd-11-stable/sys/dev/aic7xxx/aicasm/aicasm_scan.l
/freebsd-11-stable/sys/dev/aic7xxx/aicasm/aicasm_symbol.c
/freebsd-11-stable/sys/dev/aic7xxx/aicasm/aicasm_symbol.h
/freebsd-11-stable/sys/dev/alc/if_alc.c
/freebsd-11-stable/sys/dev/alc/if_alcreg.h
/freebsd-11-stable/sys/dev/alc/if_alcvar.h
/freebsd-11-stable/sys/dev/ale/if_ale.c
/freebsd-11-stable/sys/dev/ale/if_alereg.h
/freebsd-11-stable/sys/dev/ale/if_alevar.h
/freebsd-11-stable/sys/dev/altera/atse/a_api.h
/freebsd-11-stable/sys/dev/altera/atse/if_atse.c
/freebsd-11-stable/sys/dev/altera/atse/if_atse_fdt.c
/freebsd-11-stable/sys/dev/altera/atse/if_atse_nexus.c
/freebsd-11-stable/sys/dev/altera/atse/if_atsereg.h
/freebsd-11-stable/sys/dev/altera/avgen/altera_avgen.c
/freebsd-11-stable/sys/dev/altera/avgen/altera_avgen.h
/freebsd-11-stable/sys/dev/altera/avgen/altera_avgen_fdt.c
/freebsd-11-stable/sys/dev/altera/avgen/altera_avgen_nexus.c
/freebsd-11-stable/sys/dev/altera/jtag_uart/altera_jtag_uart.h
/freebsd-11-stable/sys/dev/altera/jtag_uart/altera_jtag_uart_cons.c
/freebsd-11-stable/sys/dev/altera/jtag_uart/altera_jtag_uart_fdt.c
/freebsd-11-stable/sys/dev/altera/jtag_uart/altera_jtag_uart_nexus.c
/freebsd-11-stable/sys/dev/altera/jtag_uart/altera_jtag_uart_tty.c
/freebsd-11-stable/sys/dev/altera/sdcard/altera_sdcard.c
/freebsd-11-stable/sys/dev/altera/sdcard/altera_sdcard.h
/freebsd-11-stable/sys/dev/altera/sdcard/altera_sdcard_disk.c
/freebsd-11-stable/sys/dev/altera/sdcard/altera_sdcard_fdt.c
/freebsd-11-stable/sys/dev/altera/sdcard/altera_sdcard_io.c
/freebsd-11-stable/sys/dev/altera/sdcard/altera_sdcard_nexus.c
/freebsd-11-stable/sys/dev/amdsbwd/amdsbwd.c
/freebsd-11-stable/sys/dev/amdtemp/amdtemp.c
/freebsd-11-stable/sys/dev/amr/amr.c
/freebsd-11-stable/sys/dev/amr/amr_cam.c
/freebsd-11-stable/sys/dev/amr/amr_disk.c
/freebsd-11-stable/sys/dev/amr/amr_linux.c
/freebsd-11-stable/sys/dev/amr/amr_pci.c
/freebsd-11-stable/sys/dev/amr/amr_tables.h
/freebsd-11-stable/sys/dev/amr/amrio.h
/freebsd-11-stable/sys/dev/amr/amrreg.h
/freebsd-11-stable/sys/dev/amr/amrvar.h
/freebsd-11-stable/sys/dev/an/if_aironet_ieee.h
/freebsd-11-stable/sys/dev/an/if_an.c
/freebsd-11-stable/sys/dev/an/if_an_isa.c
/freebsd-11-stable/sys/dev/an/if_an_pccard.c
/freebsd-11-stable/sys/dev/an/if_an_pci.c
/freebsd-11-stable/sys/dev/an/if_anreg.h
/freebsd-11-stable/sys/dev/arcmsr/arcmsr.c
/freebsd-11-stable/sys/dev/arcmsr/arcmsr.h
/freebsd-11-stable/sys/dev/asmc/asmc.c
/freebsd-11-stable/sys/dev/asmc/asmcvar.h
/freebsd-11-stable/sys/dev/ata/ata-all.c
/freebsd-11-stable/sys/dev/ata/ata-all.h
/freebsd-11-stable/sys/dev/ata/ata-card.c
/freebsd-11-stable/sys/dev/ata/ata-dma.c
/freebsd-11-stable/sys/dev/ata/ata-isa.c
/freebsd-11-stable/sys/dev/ata/ata-lowlevel.c
/freebsd-11-stable/sys/dev/ata/ata-pci.c
/freebsd-11-stable/sys/dev/ata/ata-pci.h
/freebsd-11-stable/sys/dev/ata/ata-sata.c
/freebsd-11-stable/sys/dev/ata/chipsets/ata-acard.c
/freebsd-11-stable/sys/dev/ata/chipsets/ata-acerlabs.c
/freebsd-11-stable/sys/dev/ata/chipsets/ata-amd.c
/freebsd-11-stable/sys/dev/ata/chipsets/ata-ati.c
/freebsd-11-stable/sys/dev/ata/chipsets/ata-cenatek.c
/freebsd-11-stable/sys/dev/ata/chipsets/ata-cypress.c
/freebsd-11-stable/sys/dev/ata/chipsets/ata-cyrix.c
/freebsd-11-stable/sys/dev/ata/chipsets/ata-fsl.c
/freebsd-11-stable/sys/dev/ata/chipsets/ata-highpoint.c
/freebsd-11-stable/sys/dev/ata/chipsets/ata-intel.c
/freebsd-11-stable/sys/dev/ata/chipsets/ata-ite.c
/freebsd-11-stable/sys/dev/ata/chipsets/ata-jmicron.c
/freebsd-11-stable/sys/dev/ata/chipsets/ata-marvell.c
/freebsd-11-stable/sys/dev/ata/chipsets/ata-micron.c
/freebsd-11-stable/sys/dev/ata/chipsets/ata-national.c
/freebsd-11-stable/sys/dev/ata/chipsets/ata-netcell.c
/freebsd-11-stable/sys/dev/ata/chipsets/ata-nvidia.c
/freebsd-11-stable/sys/dev/ata/chipsets/ata-promise.c
/freebsd-11-stable/sys/dev/ata/chipsets/ata-serverworks.c
/freebsd-11-stable/sys/dev/ata/chipsets/ata-siliconimage.c
/freebsd-11-stable/sys/dev/ata/chipsets/ata-sis.c
/freebsd-11-stable/sys/dev/ata/chipsets/ata-via.c
/freebsd-11-stable/sys/dev/ath/ah_osdep.c
/freebsd-11-stable/sys/dev/ath/ah_osdep.h
/freebsd-11-stable/sys/dev/ath/ath_dfs/null/dfs_null.c
/freebsd-11-stable/sys/dev/ath/ath_hal/ar9002/ar9002phy.h
/freebsd-11-stable/sys/dev/ath/ath_hal/ar9002/ar9280_olc.c
/freebsd-11-stable/sys/dev/ath/ath_hal/ar9002/ar9280_olc.h
/freebsd-11-stable/sys/dev/ath/ath_hal/ar9002/ar9285_cal.c
/freebsd-11-stable/sys/dev/ath/ath_hal/ar9002/ar9285_cal.h
/freebsd-11-stable/sys/dev/ath/ath_hal/ar9002/ar9285_diversity.c
/freebsd-11-stable/sys/dev/ath/ath_hal/ar9002/ar9285_diversity.h
/freebsd-11-stable/sys/dev/ath/ath_hal/ar9002/ar9285_phy.c
/freebsd-11-stable/sys/dev/ath/ath_hal/ar9002/ar9285_phy.h
/freebsd-11-stable/sys/dev/ath/ath_hal/ar9002/ar9285phy.h
/freebsd-11-stable/sys/dev/ath/ath_hal/ar9002/ar9287_cal.c
/freebsd-11-stable/sys/dev/ath/ath_hal/ar9002/ar9287_cal.h
/freebsd-11-stable/sys/dev/ath/ath_hal/ar9002/ar9287_olc.c
/freebsd-11-stable/sys/dev/ath/ath_hal/ar9003/ar9300_devid.h
/freebsd-11-stable/sys/dev/ath/ath_rate/amrr/amrr.c
/freebsd-11-stable/sys/dev/ath/ath_rate/amrr/amrr.h
/freebsd-11-stable/sys/dev/ath/ath_rate/onoe/onoe.c
/freebsd-11-stable/sys/dev/ath/ath_rate/onoe/onoe.h
/freebsd-11-stable/sys/dev/ath/ath_rate/sample/sample.c
/freebsd-11-stable/sys/dev/ath/ath_rate/sample/sample.h
/freebsd-11-stable/sys/dev/ath/ath_rate/sample/tx_schedules.h
/freebsd-11-stable/sys/dev/ath/if_ath.c
/freebsd-11-stable/sys/dev/ath/if_ath_ahb.c
/freebsd-11-stable/sys/dev/ath/if_ath_alq.c
/freebsd-11-stable/sys/dev/ath/if_ath_alq.h
/freebsd-11-stable/sys/dev/ath/if_ath_beacon.c
/freebsd-11-stable/sys/dev/ath/if_ath_beacon.h
/freebsd-11-stable/sys/dev/ath/if_ath_btcoex.c
/freebsd-11-stable/sys/dev/ath/if_ath_btcoex.h
/freebsd-11-stable/sys/dev/ath/if_ath_debug.c
/freebsd-11-stable/sys/dev/ath/if_ath_debug.h
/freebsd-11-stable/sys/dev/ath/if_ath_keycache.c
/freebsd-11-stable/sys/dev/ath/if_ath_keycache.h
/freebsd-11-stable/sys/dev/ath/if_ath_led.c
/freebsd-11-stable/sys/dev/ath/if_ath_led.h
/freebsd-11-stable/sys/dev/ath/if_ath_lna_div.c
/freebsd-11-stable/sys/dev/ath/if_ath_lna_div.h
/freebsd-11-stable/sys/dev/ath/if_ath_misc.h
/freebsd-11-stable/sys/dev/ath/if_ath_pci.c
/freebsd-11-stable/sys/dev/ath/if_ath_rx.c
/freebsd-11-stable/sys/dev/ath/if_ath_rx.h
/freebsd-11-stable/sys/dev/ath/if_ath_rx_edma.c
/freebsd-11-stable/sys/dev/ath/if_ath_rx_edma.h
/freebsd-11-stable/sys/dev/ath/if_ath_spectral.c
/freebsd-11-stable/sys/dev/ath/if_ath_spectral.h
/freebsd-11-stable/sys/dev/ath/if_ath_sysctl.c
/freebsd-11-stable/sys/dev/ath/if_ath_sysctl.h
/freebsd-11-stable/sys/dev/ath/if_ath_tdma.c
/freebsd-11-stable/sys/dev/ath/if_ath_tdma.h
/freebsd-11-stable/sys/dev/ath/if_ath_tsf.h
/freebsd-11-stable/sys/dev/ath/if_ath_tx.c
/freebsd-11-stable/sys/dev/ath/if_ath_tx.h
/freebsd-11-stable/sys/dev/ath/if_ath_tx_edma.c
/freebsd-11-stable/sys/dev/ath/if_ath_tx_edma.h
/freebsd-11-stable/sys/dev/ath/if_ath_tx_ht.c
/freebsd-11-stable/sys/dev/ath/if_ath_tx_ht.h
/freebsd-11-stable/sys/dev/ath/if_athdfs.h
/freebsd-11-stable/sys/dev/ath/if_athioctl.h
/freebsd-11-stable/sys/dev/ath/if_athrate.h
/freebsd-11-stable/sys/dev/ath/if_athvar.h
/freebsd-11-stable/sys/dev/atkbdc/atkbd.c
/freebsd-11-stable/sys/dev/atkbdc/atkbd_atkbdc.c
/freebsd-11-stable/sys/dev/atkbdc/atkbdc.c
/freebsd-11-stable/sys/dev/atkbdc/atkbdc_ebus.c
/freebsd-11-stable/sys/dev/atkbdc/atkbdc_isa.c
/freebsd-11-stable/sys/dev/atkbdc/atkbdc_subr.c
/freebsd-11-stable/sys/dev/atkbdc/atkbdc_subr.h
/freebsd-11-stable/sys/dev/atkbdc/atkbdcreg.h
/freebsd-11-stable/sys/dev/atkbdc/atkbdreg.h
/freebsd-11-stable/sys/dev/auxio/auxio.c
/freebsd-11-stable/sys/dev/auxio/auxioreg.h
/freebsd-11-stable/sys/dev/bce/if_bce.c
/freebsd-11-stable/sys/dev/bce/if_bcefw.h
/freebsd-11-stable/sys/dev/bce/if_bcereg.h
/freebsd-11-stable/sys/dev/bfe/if_bfe.c
/freebsd-11-stable/sys/dev/bfe/if_bfereg.h
/freebsd-11-stable/sys/dev/bge/if_bge.c
/freebsd-11-stable/sys/dev/bge/if_bgereg.h
/freebsd-11-stable/sys/dev/bktr/bktr_audio.c
/freebsd-11-stable/sys/dev/bktr/bktr_audio.h
/freebsd-11-stable/sys/dev/bktr/bktr_card.c
/freebsd-11-stable/sys/dev/bktr/bktr_card.h
/freebsd-11-stable/sys/dev/bktr/bktr_core.c
/freebsd-11-stable/sys/dev/bktr/bktr_core.h
/freebsd-11-stable/sys/dev/bktr/bktr_i2c.c
/freebsd-11-stable/sys/dev/bktr/bktr_i2c.h
/freebsd-11-stable/sys/dev/bktr/bktr_mem.c
/freebsd-11-stable/sys/dev/bktr/bktr_mem.h
/freebsd-11-stable/sys/dev/bktr/bktr_os.c
/freebsd-11-stable/sys/dev/bktr/bktr_os.h
/freebsd-11-stable/sys/dev/bktr/bktr_reg.h
/freebsd-11-stable/sys/dev/bktr/bktr_tuner.c
/freebsd-11-stable/sys/dev/bktr/bktr_tuner.h
/freebsd-11-stable/sys/dev/bktr/ioctl_meteor.h
/freebsd-11-stable/sys/dev/bktr/msp34xx.c
/freebsd-11-stable/sys/dev/bm/if_bm.c
/freebsd-11-stable/sys/dev/bm/if_bmreg.h
/freebsd-11-stable/sys/dev/bm/if_bmvar.h
/freebsd-11-stable/sys/dev/buslogic/bt.c
/freebsd-11-stable/sys/dev/buslogic/bt_isa.c
/freebsd-11-stable/sys/dev/buslogic/bt_pci.c
/freebsd-11-stable/sys/dev/buslogic/btreg.h
/freebsd-11-stable/sys/dev/bvm/bvm_console.c
/freebsd-11-stable/sys/dev/bvm/bvm_dbg.c
/freebsd-11-stable/sys/dev/bwi/bitops.h
/freebsd-11-stable/sys/dev/bwi/bwimac.c
/freebsd-11-stable/sys/dev/bwi/bwimac.h
/freebsd-11-stable/sys/dev/bwi/bwiphy.c
/freebsd-11-stable/sys/dev/bwi/bwiphy.h
/freebsd-11-stable/sys/dev/bwi/bwirf.c
/freebsd-11-stable/sys/dev/bwi/bwirf.h
/freebsd-11-stable/sys/dev/bwi/if_bwi.c
/freebsd-11-stable/sys/dev/bwi/if_bwi_pci.c
/freebsd-11-stable/sys/dev/bwi/if_bwireg.h
/freebsd-11-stable/sys/dev/bwi/if_bwivar.h
/freebsd-11-stable/sys/dev/bwn/if_bwn.c
/freebsd-11-stable/sys/dev/bwn/if_bwnreg.h
/freebsd-11-stable/sys/dev/bwn/if_bwnvar.h
/freebsd-11-stable/sys/dev/bxe/57710_init_values.c
/freebsd-11-stable/sys/dev/bxe/57710_int_offsets.h
/freebsd-11-stable/sys/dev/bxe/57711_init_values.c
/freebsd-11-stable/sys/dev/bxe/57711_int_offsets.h
/freebsd-11-stable/sys/dev/bxe/57712_init_values.c
/freebsd-11-stable/sys/dev/bxe/57712_int_offsets.h
/freebsd-11-stable/sys/dev/bxe/bxe.c
/freebsd-11-stable/sys/dev/bxe/bxe.h
/freebsd-11-stable/sys/dev/bxe/bxe_dcb.h
/freebsd-11-stable/sys/dev/bxe/bxe_debug.c
/freebsd-11-stable/sys/dev/bxe/bxe_elink.c
/freebsd-11-stable/sys/dev/bxe/bxe_elink.h
/freebsd-11-stable/sys/dev/bxe/bxe_stats.c
/freebsd-11-stable/sys/dev/bxe/bxe_stats.h
/freebsd-11-stable/sys/dev/bxe/ecore_fw_defs.h
/freebsd-11-stable/sys/dev/bxe/ecore_hsi.h
/freebsd-11-stable/sys/dev/bxe/ecore_init.h
/freebsd-11-stable/sys/dev/bxe/ecore_init_ops.h
/freebsd-11-stable/sys/dev/bxe/ecore_mfw_req.h
/freebsd-11-stable/sys/dev/bxe/ecore_reg.h
/freebsd-11-stable/sys/dev/bxe/ecore_sp.c
/freebsd-11-stable/sys/dev/bxe/ecore_sp.h
/freebsd-11-stable/sys/dev/cadence/if_cgem.c
/freebsd-11-stable/sys/dev/cadence/if_cgem_hw.h
/freebsd-11-stable/sys/dev/cardbus/cardbus.c
/freebsd-11-stable/sys/dev/cardbus/cardbus_cis.c
/freebsd-11-stable/sys/dev/cardbus/cardbus_cis.h
/freebsd-11-stable/sys/dev/cardbus/cardbus_device.c
/freebsd-11-stable/sys/dev/cardbus/cardbusreg.h
/freebsd-11-stable/sys/dev/cardbus/cardbusvar.h
/freebsd-11-stable/sys/dev/cas/if_cas.c
/freebsd-11-stable/sys/dev/cas/if_casreg.h
/freebsd-11-stable/sys/dev/cas/if_casvar.h
/freebsd-11-stable/sys/dev/cesa/cesa.c
/freebsd-11-stable/sys/dev/cesa/cesa.h
/freebsd-11-stable/sys/dev/cfe/cfe_api.c
/freebsd-11-stable/sys/dev/cfe/cfe_api.h
/freebsd-11-stable/sys/dev/cfe/cfe_api_int.h
/freebsd-11-stable/sys/dev/cfe/cfe_console.c
/freebsd-11-stable/sys/dev/cfe/cfe_env.c
/freebsd-11-stable/sys/dev/cfe/cfe_error.h
/freebsd-11-stable/sys/dev/cfe/cfe_ioctl.h
/freebsd-11-stable/sys/dev/cfe/cfe_resource.c
/freebsd-11-stable/sys/dev/cfi/cfi_bus_fdt.c
/freebsd-11-stable/sys/dev/cfi/cfi_bus_ixp4xx.c
/freebsd-11-stable/sys/dev/cfi/cfi_bus_nexus.c
/freebsd-11-stable/sys/dev/cfi/cfi_core.c
/freebsd-11-stable/sys/dev/cfi/cfi_dev.c
/freebsd-11-stable/sys/dev/cfi/cfi_disk.c
/freebsd-11-stable/sys/dev/cfi/cfi_reg.h
/freebsd-11-stable/sys/dev/cfi/cfi_var.h
/freebsd-11-stable/sys/dev/ciss/ciss.c
/freebsd-11-stable/sys/dev/ciss/cissio.h
/freebsd-11-stable/sys/dev/ciss/cissreg.h
/freebsd-11-stable/sys/dev/ciss/cissvar.h
/freebsd-11-stable/sys/dev/cm/if_cm_isa.c
/freebsd-11-stable/sys/dev/cm/smc90cx6.c
/freebsd-11-stable/sys/dev/cm/smc90cx6reg.h
/freebsd-11-stable/sys/dev/cm/smc90cx6var.h
/freebsd-11-stable/sys/dev/cmx/cmx_pccard.c
/freebsd-11-stable/sys/dev/cmx/cmxreg.h
/freebsd-11-stable/sys/dev/cmx/cmxvar.h
/freebsd-11-stable/sys/dev/coretemp/coretemp.c
/freebsd-11-stable/sys/dev/cpuctl/cpuctl.c
/freebsd-11-stable/sys/dev/cpufreq/ichss.c
/freebsd-11-stable/sys/dev/cs/if_cs.c
/freebsd-11-stable/sys/dev/cs/if_cs_isa.c
/freebsd-11-stable/sys/dev/cs/if_cs_pccard.c
/freebsd-11-stable/sys/dev/cs/if_csreg.h
/freebsd-11-stable/sys/dev/cs/if_csvar.h
/freebsd-11-stable/sys/dev/cxgb/bin2h.pl
/freebsd-11-stable/sys/dev/cxgb/common/cxgb_ael1002.c
/freebsd-11-stable/sys/dev/cxgb/common/cxgb_aq100x.c
/freebsd-11-stable/sys/dev/cxgb/common/cxgb_common.h
/freebsd-11-stable/sys/dev/cxgb/common/cxgb_firmware_exports.h
/freebsd-11-stable/sys/dev/cxgb/common/cxgb_mc5.c
/freebsd-11-stable/sys/dev/cxgb/common/cxgb_mv88e1xxx.c
/freebsd-11-stable/sys/dev/cxgb/common/cxgb_regs.h
/freebsd-11-stable/sys/dev/cxgb/common/cxgb_sge_defs.h
/freebsd-11-stable/sys/dev/cxgb/common/cxgb_t3_cpl.h
/freebsd-11-stable/sys/dev/cxgb/common/cxgb_t3_hw.c
/freebsd-11-stable/sys/dev/cxgb/common/cxgb_tcb.h
/freebsd-11-stable/sys/dev/cxgb/common/cxgb_tn1010.c
/freebsd-11-stable/sys/dev/cxgb/common/cxgb_vsc7323.c
/freebsd-11-stable/sys/dev/cxgb/common/cxgb_vsc8211.c
/freebsd-11-stable/sys/dev/cxgb/common/cxgb_xgmac.c
/freebsd-11-stable/sys/dev/cxgb/cxgb_adapter.h
/freebsd-11-stable/sys/dev/cxgb/cxgb_ioctl.h
/freebsd-11-stable/sys/dev/cxgb/cxgb_main.c
/freebsd-11-stable/sys/dev/cxgb/cxgb_offload.h
/freebsd-11-stable/sys/dev/cxgb/cxgb_osdep.h
/freebsd-11-stable/sys/dev/cxgb/cxgb_sge.c
/freebsd-11-stable/sys/dev/cxgb/cxgb_t3fw.h
/freebsd-11-stable/sys/dev/cxgb/sys/mvec.h
/freebsd-11-stable/sys/dev/cxgb/sys/uipc_mvec.c
/freebsd-11-stable/sys/dev/cxgb/t3b_protocol_sram.h
/freebsd-11-stable/sys/dev/cxgb/t3b_tp_eeprom.h
/freebsd-11-stable/sys/dev/cxgb/t3c_protocol_sram.h
/freebsd-11-stable/sys/dev/cxgb/t3c_tp_eeprom.h
/freebsd-11-stable/sys/dev/cxgbe/adapter.h
/freebsd-11-stable/sys/dev/cxgbe/common/common.h
/freebsd-11-stable/sys/dev/cxgbe/common/t4_hw.c
/freebsd-11-stable/sys/dev/cxgbe/common/t4_hw.h
/freebsd-11-stable/sys/dev/cxgbe/common/t4_msg.h
/freebsd-11-stable/sys/dev/cxgbe/common/t4_regs.h
/freebsd-11-stable/sys/dev/cxgbe/common/t4_regs_values.h
/freebsd-11-stable/sys/dev/cxgbe/common/t4_tcb.h
/freebsd-11-stable/sys/dev/cxgbe/iw_cxgbe/cm.c
/freebsd-11-stable/sys/dev/cxgbe/iw_cxgbe/cq.c
/freebsd-11-stable/sys/dev/cxgbe/iw_cxgbe/device.c
/freebsd-11-stable/sys/dev/cxgbe/iw_cxgbe/ev.c
/freebsd-11-stable/sys/dev/cxgbe/iw_cxgbe/id_table.c
/freebsd-11-stable/sys/dev/cxgbe/iw_cxgbe/iw_cxgbe.h
/freebsd-11-stable/sys/dev/cxgbe/iw_cxgbe/mem.c
/freebsd-11-stable/sys/dev/cxgbe/iw_cxgbe/provider.c
/freebsd-11-stable/sys/dev/cxgbe/iw_cxgbe/qp.c
/freebsd-11-stable/sys/dev/cxgbe/iw_cxgbe/resource.c
/freebsd-11-stable/sys/dev/cxgbe/iw_cxgbe/t4.h
/freebsd-11-stable/sys/dev/cxgbe/iw_cxgbe/user.h
/freebsd-11-stable/sys/dev/cxgbe/offload.h
/freebsd-11-stable/sys/dev/cxgbe/osdep.h
/freebsd-11-stable/sys/dev/cxgbe/t4_ioctl.h
/freebsd-11-stable/sys/dev/cxgbe/t4_l2t.c
/freebsd-11-stable/sys/dev/cxgbe/t4_l2t.h
/freebsd-11-stable/sys/dev/cxgbe/t4_main.c
/freebsd-11-stable/sys/dev/cxgbe/t4_sge.c
/freebsd-11-stable/sys/dev/cxgbe/t4_tracer.c
/freebsd-11-stable/sys/dev/cxgbe/tom/t4_connect.c
/freebsd-11-stable/sys/dev/cxgbe/tom/t4_cpl_io.c
/freebsd-11-stable/sys/dev/cxgbe/tom/t4_ddp.c
/freebsd-11-stable/sys/dev/cxgbe/tom/t4_listen.c
/freebsd-11-stable/sys/dev/cxgbe/tom/t4_tom.c
/freebsd-11-stable/sys/dev/cxgbe/tom/t4_tom.h
/freebsd-11-stable/sys/dev/cxgbe/tom/t4_tom_l2t.c
/freebsd-11-stable/sys/dev/cxgbe/tom/t4_tom_l2t.h
/freebsd-11-stable/sys/dev/cy/cy.c
/freebsd-11-stable/sys/dev/cy/cy_isa.c
/freebsd-11-stable/sys/dev/cy/cy_pci.c
/freebsd-11-stable/sys/dev/cy/cyreg.h
/freebsd-11-stable/sys/dev/cy/cyvar.h
/freebsd-11-stable/sys/dev/dc/dcphy.c
/freebsd-11-stable/sys/dev/dc/if_dc.c
/freebsd-11-stable/sys/dev/dc/if_dcreg.h
/freebsd-11-stable/sys/dev/dc/pnphy.c
/freebsd-11-stable/sys/dev/dcons/dcons.c
/freebsd-11-stable/sys/dev/dcons/dcons.h
/freebsd-11-stable/sys/dev/dcons/dcons_crom.c
/freebsd-11-stable/sys/dev/dcons/dcons_os.c
/freebsd-11-stable/sys/dev/dcons/dcons_os.h
/freebsd-11-stable/sys/dev/de/dc21040reg.h
/freebsd-11-stable/sys/dev/de/if_de.c
/freebsd-11-stable/sys/dev/de/if_devar.h
/freebsd-11-stable/sys/dev/dpms/dpms.c
/freebsd-11-stable/sys/dev/dpt/dpt.h
/freebsd-11-stable/sys/dev/dpt/dpt_pci.c
/freebsd-11-stable/sys/dev/dpt/dpt_scsi.c
/freebsd-11-stable/sys/dev/drm2/drm_gem.c
/freebsd-11-stable/sys/dev/drm2/drm_gem_names.c
/freebsd-11-stable/sys/dev/drm2/drm_gem_names.h
/freebsd-11-stable/sys/dev/drm2/drm_linux_list_sort.c
/freebsd-11-stable/sys/dev/drm2/i915/i915_gem.c
/freebsd-11-stable/sys/dev/e1000/e1000_80003es2lan.c
/freebsd-11-stable/sys/dev/e1000/e1000_80003es2lan.h
/freebsd-11-stable/sys/dev/e1000/e1000_82540.c
/freebsd-11-stable/sys/dev/e1000/e1000_82541.c
/freebsd-11-stable/sys/dev/e1000/e1000_82541.h
/freebsd-11-stable/sys/dev/e1000/e1000_82542.c
/freebsd-11-stable/sys/dev/e1000/e1000_82543.c
/freebsd-11-stable/sys/dev/e1000/e1000_82543.h
/freebsd-11-stable/sys/dev/e1000/e1000_82571.c
/freebsd-11-stable/sys/dev/e1000/e1000_82571.h
/freebsd-11-stable/sys/dev/e1000/e1000_82575.c
/freebsd-11-stable/sys/dev/e1000/e1000_82575.h
/freebsd-11-stable/sys/dev/e1000/e1000_api.c
/freebsd-11-stable/sys/dev/e1000/e1000_api.h
/freebsd-11-stable/sys/dev/e1000/e1000_defines.h
/freebsd-11-stable/sys/dev/e1000/e1000_hw.h
/freebsd-11-stable/sys/dev/e1000/e1000_i210.c
/freebsd-11-stable/sys/dev/e1000/e1000_i210.h
/freebsd-11-stable/sys/dev/e1000/e1000_ich8lan.c
/freebsd-11-stable/sys/dev/e1000/e1000_ich8lan.h
/freebsd-11-stable/sys/dev/e1000/e1000_mac.c
/freebsd-11-stable/sys/dev/e1000/e1000_mac.h
/freebsd-11-stable/sys/dev/e1000/e1000_manage.c
/freebsd-11-stable/sys/dev/e1000/e1000_manage.h
/freebsd-11-stable/sys/dev/e1000/e1000_mbx.c
/freebsd-11-stable/sys/dev/e1000/e1000_mbx.h
/freebsd-11-stable/sys/dev/e1000/e1000_nvm.c
/freebsd-11-stable/sys/dev/e1000/e1000_nvm.h
/freebsd-11-stable/sys/dev/e1000/e1000_osdep.c
/freebsd-11-stable/sys/dev/e1000/e1000_osdep.h
/freebsd-11-stable/sys/dev/e1000/e1000_phy.c
/freebsd-11-stable/sys/dev/e1000/e1000_phy.h
/freebsd-11-stable/sys/dev/e1000/e1000_regs.h
/freebsd-11-stable/sys/dev/e1000/e1000_vf.c
/freebsd-11-stable/sys/dev/e1000/e1000_vf.h
/freebsd-11-stable/sys/dev/e1000/if_em.c
/freebsd-11-stable/sys/dev/e1000/if_em.h
/freebsd-11-stable/sys/dev/ed/ax88x90reg.h
/freebsd-11-stable/sys/dev/ed/dl100xxreg.h
/freebsd-11-stable/sys/dev/ed/if_ed.c
/freebsd-11-stable/sys/dev/ed/if_ed_3c503.c
/freebsd-11-stable/sys/dev/ed/if_ed_hpp.c
/freebsd-11-stable/sys/dev/ed/if_ed_isa.c
/freebsd-11-stable/sys/dev/ed/if_ed_novell.c
/freebsd-11-stable/sys/dev/ed/if_ed_pccard.c
/freebsd-11-stable/sys/dev/ed/if_ed_pci.c
/freebsd-11-stable/sys/dev/ed/if_ed_rtl80x9.c
/freebsd-11-stable/sys/dev/ed/if_ed_sic.c
/freebsd-11-stable/sys/dev/ed/if_ed_wd80x3.c
/freebsd-11-stable/sys/dev/ed/if_edvar.h
/freebsd-11-stable/sys/dev/ed/rtl80x9reg.h
/freebsd-11-stable/sys/dev/ed/tc5299jreg.h
/freebsd-11-stable/sys/dev/ep/if_ep.c
/freebsd-11-stable/sys/dev/ep/if_ep_isa.c
/freebsd-11-stable/sys/dev/ep/if_ep_pccard.c
/freebsd-11-stable/sys/dev/ep/if_epreg.h
/freebsd-11-stable/sys/dev/ep/if_epvar.h
/freebsd-11-stable/sys/dev/esp/am53c974reg.h
/freebsd-11-stable/sys/dev/esp/esp_pci.c
/freebsd-11-stable/sys/dev/esp/esp_sbus.c
/freebsd-11-stable/sys/dev/esp/ncr53c9x.c
/freebsd-11-stable/sys/dev/esp/ncr53c9xreg.h
/freebsd-11-stable/sys/dev/esp/ncr53c9xvar.h
/freebsd-11-stable/sys/dev/et/if_et.c
/freebsd-11-stable/sys/dev/et/if_etreg.h
/freebsd-11-stable/sys/dev/et/if_etvar.h
/freebsd-11-stable/sys/dev/etherswitch/arswitch/arswitch.c
/freebsd-11-stable/sys/dev/etherswitch/arswitch/arswitch_7240.c
/freebsd-11-stable/sys/dev/etherswitch/arswitch/arswitch_7240.h
/freebsd-11-stable/sys/dev/etherswitch/arswitch/arswitch_8216.c
/freebsd-11-stable/sys/dev/etherswitch/arswitch/arswitch_8216.h
/freebsd-11-stable/sys/dev/etherswitch/arswitch/arswitch_8226.c
/freebsd-11-stable/sys/dev/etherswitch/arswitch/arswitch_8226.h
/freebsd-11-stable/sys/dev/etherswitch/arswitch/arswitch_8316.c
/freebsd-11-stable/sys/dev/etherswitch/arswitch/arswitch_8316.h
/freebsd-11-stable/sys/dev/etherswitch/arswitch/arswitch_8327.c
/freebsd-11-stable/sys/dev/etherswitch/arswitch/arswitch_8327.h
/freebsd-11-stable/sys/dev/etherswitch/arswitch/arswitch_9340.c
/freebsd-11-stable/sys/dev/etherswitch/arswitch/arswitch_9340.h
/freebsd-11-stable/sys/dev/etherswitch/arswitch/arswitch_phy.c
/freebsd-11-stable/sys/dev/etherswitch/arswitch/arswitch_phy.h
/freebsd-11-stable/sys/dev/etherswitch/arswitch/arswitch_reg.c
/freebsd-11-stable/sys/dev/etherswitch/arswitch/arswitch_reg.h
/freebsd-11-stable/sys/dev/etherswitch/arswitch/arswitch_vlans.c
/freebsd-11-stable/sys/dev/etherswitch/arswitch/arswitch_vlans.h
/freebsd-11-stable/sys/dev/etherswitch/arswitch/arswitchreg.h
/freebsd-11-stable/sys/dev/etherswitch/arswitch/arswitchvar.h
/freebsd-11-stable/sys/dev/etherswitch/etherswitch.c
/freebsd-11-stable/sys/dev/etherswitch/ip17x/ip175c.c
/freebsd-11-stable/sys/dev/etherswitch/ip17x/ip175c.h
/freebsd-11-stable/sys/dev/etherswitch/ip17x/ip175d.c
/freebsd-11-stable/sys/dev/etherswitch/ip17x/ip175d.h
/freebsd-11-stable/sys/dev/etherswitch/ip17x/ip17x.c
/freebsd-11-stable/sys/dev/etherswitch/ip17x/ip17x_phy.c
/freebsd-11-stable/sys/dev/etherswitch/ip17x/ip17x_phy.h
/freebsd-11-stable/sys/dev/etherswitch/ip17x/ip17x_reg.h
/freebsd-11-stable/sys/dev/etherswitch/ip17x/ip17x_var.h
/freebsd-11-stable/sys/dev/etherswitch/ip17x/ip17x_vlans.c
/freebsd-11-stable/sys/dev/etherswitch/ip17x/ip17x_vlans.h
/freebsd-11-stable/sys/dev/etherswitch/miiproxy.c
/freebsd-11-stable/sys/dev/etherswitch/miiproxy.h
/freebsd-11-stable/sys/dev/etherswitch/rtl8366/rtl8366rb.c
/freebsd-11-stable/sys/dev/etherswitch/rtl8366/rtl8366rbvar.h
/freebsd-11-stable/sys/dev/etherswitch/ukswitch/ukswitch.c
/freebsd-11-stable/sys/dev/ex/if_ex.c
/freebsd-11-stable/sys/dev/ex/if_ex_isa.c
/freebsd-11-stable/sys/dev/ex/if_ex_pccard.c
/freebsd-11-stable/sys/dev/ex/if_exreg.h
/freebsd-11-stable/sys/dev/ex/if_exvar.h
/freebsd-11-stable/sys/dev/exca/exca.c
/freebsd-11-stable/sys/dev/exca/excareg.h
/freebsd-11-stable/sys/dev/exca/excavar.h
/freebsd-11-stable/sys/dev/fb/creator.c
/freebsd-11-stable/sys/dev/fb/creatorreg.h
/freebsd-11-stable/sys/dev/fb/fb.c
/freebsd-11-stable/sys/dev/fb/fbd.c
/freebsd-11-stable/sys/dev/fb/fbreg.h
/freebsd-11-stable/sys/dev/fb/gallant12x22.c
/freebsd-11-stable/sys/dev/fb/machfb.c
/freebsd-11-stable/sys/dev/fb/s3_pci.c
/freebsd-11-stable/sys/dev/fb/splash.c
/freebsd-11-stable/sys/dev/fb/splash_bmp.c
/freebsd-11-stable/sys/dev/fb/splash_pcx.c
/freebsd-11-stable/sys/dev/fb/splash_txt.c
/freebsd-11-stable/sys/dev/fb/splashreg.h
/freebsd-11-stable/sys/dev/fb/vesa.c
/freebsd-11-stable/sys/dev/fb/vesa.h
/freebsd-11-stable/sys/dev/fb/vga.c
/freebsd-11-stable/sys/dev/fb/vgareg.h
/freebsd-11-stable/sys/dev/fdc/fdc.c
/freebsd-11-stable/sys/dev/fdc/fdc_acpi.c
/freebsd-11-stable/sys/dev/fdc/fdc_isa.c
/freebsd-11-stable/sys/dev/fdc/fdc_pccard.c
/freebsd-11-stable/sys/dev/fdc/fdcvar.h
/freebsd-11-stable/sys/dev/fdt/fdt_common.c
/freebsd-11-stable/sys/dev/fdt/fdt_common.h
/freebsd-11-stable/sys/dev/fdt/fdt_powerpc.c
/freebsd-11-stable/sys/dev/fdt/fdt_slicer.c
/freebsd-11-stable/sys/dev/fdt/simplebus.c
/freebsd-11-stable/sys/dev/ffec/if_ffec.c
/freebsd-11-stable/sys/dev/ffec/if_ffecreg.h
/freebsd-11-stable/sys/dev/filemon/filemon.c
/freebsd-11-stable/sys/dev/filemon/filemon.h
/freebsd-11-stable/sys/dev/filemon/filemon_wrapper.c
/freebsd-11-stable/sys/dev/firewire/firewire.c
/freebsd-11-stable/sys/dev/firewire/firewire.h
/freebsd-11-stable/sys/dev/firewire/firewire_phy.h
/freebsd-11-stable/sys/dev/firewire/firewirereg.h
/freebsd-11-stable/sys/dev/firewire/fwcrom.c
/freebsd-11-stable/sys/dev/firewire/fwdev.c
/freebsd-11-stable/sys/dev/firewire/fwdma.c
/freebsd-11-stable/sys/dev/firewire/fwdma.h
/freebsd-11-stable/sys/dev/firewire/fwmem.c
/freebsd-11-stable/sys/dev/firewire/fwmem.h
/freebsd-11-stable/sys/dev/firewire/fwohci.c
/freebsd-11-stable/sys/dev/firewire/fwohci_pci.c
/freebsd-11-stable/sys/dev/firewire/fwohcireg.h
/freebsd-11-stable/sys/dev/firewire/fwohcivar.h
/freebsd-11-stable/sys/dev/firewire/fwphyreg.h
/freebsd-11-stable/sys/dev/firewire/iec13213.h
/freebsd-11-stable/sys/dev/firewire/iec68113.h
/freebsd-11-stable/sys/dev/firewire/if_fwe.c
/freebsd-11-stable/sys/dev/firewire/if_fwevar.h
/freebsd-11-stable/sys/dev/firewire/if_fwip.c
/freebsd-11-stable/sys/dev/firewire/if_fwipvar.h
/freebsd-11-stable/sys/dev/firewire/sbp.c
/freebsd-11-stable/sys/dev/firewire/sbp.h
/freebsd-11-stable/sys/dev/firewire/sbp_targ.c
/freebsd-11-stable/sys/dev/flash/at45d.c
/freebsd-11-stable/sys/dev/flash/mx25l.c
/freebsd-11-stable/sys/dev/flash/mx25lreg.h
/freebsd-11-stable/sys/dev/fxp/if_fxp.c
/freebsd-11-stable/sys/dev/fxp/if_fxpreg.h
/freebsd-11-stable/sys/dev/fxp/if_fxpvar.h
/freebsd-11-stable/sys/dev/fxp/inphy.c
/freebsd-11-stable/sys/dev/fxp/inphyreg.h
/freebsd-11-stable/sys/dev/fxp/rcvbundl.h
/freebsd-11-stable/sys/dev/gem/if_gem.c
/freebsd-11-stable/sys/dev/gem/if_gem_pci.c
/freebsd-11-stable/sys/dev/gem/if_gem_sbus.c
/freebsd-11-stable/sys/dev/gem/if_gemreg.h
/freebsd-11-stable/sys/dev/gem/if_gemvar.h
/freebsd-11-stable/sys/dev/glxiic/glxiic.c
/freebsd-11-stable/sys/dev/glxsb/glxsb.h
/freebsd-11-stable/sys/dev/glxsb/glxsb_hash.c
/freebsd-11-stable/sys/dev/gpio/gpiobus.c
/freebsd-11-stable/sys/dev/gpio/gpiobusvar.h
/freebsd-11-stable/sys/dev/gpio/gpioc.c
/freebsd-11-stable/sys/dev/gpio/gpioiic.c
/freebsd-11-stable/sys/dev/gpio/gpioled.c
/freebsd-11-stable/sys/dev/gpio/ofw_gpiobus.c
/freebsd-11-stable/sys/dev/gxemul/cons/gxemul_cons.c
/freebsd-11-stable/sys/dev/gxemul/disk/gxemul_disk.c
/freebsd-11-stable/sys/dev/gxemul/disk/gxemul_diskreg.h
/freebsd-11-stable/sys/dev/gxemul/ether/gxreg.h
/freebsd-11-stable/sys/dev/gxemul/ether/if_gx.c
/freebsd-11-stable/sys/dev/hifn/hifn7751.c
/freebsd-11-stable/sys/dev/hifn/hifn7751reg.h
/freebsd-11-stable/sys/dev/hifn/hifn7751var.h
/freebsd-11-stable/sys/dev/hme/if_hme.c
/freebsd-11-stable/sys/dev/hme/if_hme_pci.c
/freebsd-11-stable/sys/dev/hme/if_hme_sbus.c
/freebsd-11-stable/sys/dev/hme/if_hmereg.h
/freebsd-11-stable/sys/dev/hme/if_hmevar.h
/freebsd-11-stable/sys/dev/hpt27xx/array.h
/freebsd-11-stable/sys/dev/hpt27xx/him.h
/freebsd-11-stable/sys/dev/hpt27xx/himfuncs.h
/freebsd-11-stable/sys/dev/hpt27xx/hpt27xx_config.c
/freebsd-11-stable/sys/dev/hpt27xx/hpt27xx_config.h
/freebsd-11-stable/sys/dev/hpt27xx/hpt27xx_os_bsd.c
/freebsd-11-stable/sys/dev/hpt27xx/hpt27xx_osm_bsd.c
/freebsd-11-stable/sys/dev/hpt27xx/hptintf.h
/freebsd-11-stable/sys/dev/hpt27xx/ldm.h
/freebsd-11-stable/sys/dev/hpt27xx/list.h
/freebsd-11-stable/sys/dev/hpt27xx/os_bsd.h
/freebsd-11-stable/sys/dev/hpt27xx/osm.h
/freebsd-11-stable/sys/dev/hpt27xx/wj.h
/freebsd-11-stable/sys/dev/hptiop/hptiop.c
/freebsd-11-stable/sys/dev/hptiop/hptiop.h
/freebsd-11-stable/sys/dev/hptmv/access601.h
/freebsd-11-stable/sys/dev/hptmv/array.h
/freebsd-11-stable/sys/dev/hptmv/atapi.h
/freebsd-11-stable/sys/dev/hptmv/command.h
/freebsd-11-stable/sys/dev/hptmv/entry.c
/freebsd-11-stable/sys/dev/hptmv/global.h
/freebsd-11-stable/sys/dev/hptmv/gui_lib.c
/freebsd-11-stable/sys/dev/hptmv/hptintf.h
/freebsd-11-stable/sys/dev/hptmv/hptproc.c
/freebsd-11-stable/sys/dev/hptmv/ioctl.c
/freebsd-11-stable/sys/dev/hptmv/mv.c
/freebsd-11-stable/sys/dev/hptmv/mvOs.h
/freebsd-11-stable/sys/dev/hptmv/mvSata.h
/freebsd-11-stable/sys/dev/hptmv/mvStorageDev.h
/freebsd-11-stable/sys/dev/hptmv/osbsd.h
/freebsd-11-stable/sys/dev/hptmv/raid5n.h
/freebsd-11-stable/sys/dev/hptmv/vdevice.h
/freebsd-11-stable/sys/dev/hptnr/array.h
/freebsd-11-stable/sys/dev/hptnr/him.h
/freebsd-11-stable/sys/dev/hptnr/himfuncs.h
/freebsd-11-stable/sys/dev/hptnr/hptintf.h
/freebsd-11-stable/sys/dev/hptnr/hptnr_config.c
/freebsd-11-stable/sys/dev/hptnr/hptnr_config.h
/freebsd-11-stable/sys/dev/hptnr/hptnr_os_bsd.c
/freebsd-11-stable/sys/dev/hptnr/hptnr_osm_bsd.c
/freebsd-11-stable/sys/dev/hptnr/ldm.h
/freebsd-11-stable/sys/dev/hptnr/list.h
/freebsd-11-stable/sys/dev/hptnr/os_bsd.h
/freebsd-11-stable/sys/dev/hptnr/osm.h
/freebsd-11-stable/sys/dev/hptnr/wj.h
/freebsd-11-stable/sys/dev/hptrr/array.h
/freebsd-11-stable/sys/dev/hptrr/him.h
/freebsd-11-stable/sys/dev/hptrr/himfuncs.h
/freebsd-11-stable/sys/dev/hptrr/hptintf.h
/freebsd-11-stable/sys/dev/hptrr/hptrr_config.c
/freebsd-11-stable/sys/dev/hptrr/hptrr_config.h
/freebsd-11-stable/sys/dev/hptrr/hptrr_os_bsd.c
/freebsd-11-stable/sys/dev/hptrr/hptrr_osm_bsd.c
/freebsd-11-stable/sys/dev/hptrr/ldm.h
/freebsd-11-stable/sys/dev/hptrr/list.h
/freebsd-11-stable/sys/dev/hptrr/os_bsd.h
/freebsd-11-stable/sys/dev/hptrr/osm.h
/freebsd-11-stable/sys/dev/hwpmc/hwpmc_amd.c
/freebsd-11-stable/sys/dev/hwpmc/hwpmc_amd.h
/freebsd-11-stable/sys/dev/hwpmc/hwpmc_arm.c
/freebsd-11-stable/sys/dev/hwpmc/hwpmc_core.c
/freebsd-11-stable/sys/dev/hwpmc/hwpmc_core.h
/freebsd-11-stable/sys/dev/hwpmc/hwpmc_intel.c
/freebsd-11-stable/sys/dev/hwpmc/hwpmc_logging.c
/freebsd-11-stable/sys/dev/hwpmc/hwpmc_mips.c
/freebsd-11-stable/sys/dev/hwpmc/hwpmc_mips24k.c
/freebsd-11-stable/sys/dev/hwpmc/hwpmc_mod.c
/freebsd-11-stable/sys/dev/hwpmc/hwpmc_mpc7xxx.c
/freebsd-11-stable/sys/dev/hwpmc/hwpmc_octeon.c
/freebsd-11-stable/sys/dev/hwpmc/hwpmc_pentium.c
/freebsd-11-stable/sys/dev/hwpmc/hwpmc_pentium.h
/freebsd-11-stable/sys/dev/hwpmc/hwpmc_piv.c
/freebsd-11-stable/sys/dev/hwpmc/hwpmc_piv.h
/freebsd-11-stable/sys/dev/hwpmc/hwpmc_powerpc.c
/freebsd-11-stable/sys/dev/hwpmc/hwpmc_powerpc.h
/freebsd-11-stable/sys/dev/hwpmc/hwpmc_ppc970.c
/freebsd-11-stable/sys/dev/hwpmc/hwpmc_ppro.c
/freebsd-11-stable/sys/dev/hwpmc/hwpmc_ppro.h
/freebsd-11-stable/sys/dev/hwpmc/hwpmc_soft.c
/freebsd-11-stable/sys/dev/hwpmc/hwpmc_soft.h
/freebsd-11-stable/sys/dev/hwpmc/hwpmc_sparc64.c
/freebsd-11-stable/sys/dev/hwpmc/hwpmc_tsc.c
/freebsd-11-stable/sys/dev/hwpmc/hwpmc_tsc.h
/freebsd-11-stable/sys/dev/hwpmc/hwpmc_uncore.c
/freebsd-11-stable/sys/dev/hwpmc/hwpmc_uncore.h
/freebsd-11-stable/sys/dev/hwpmc/hwpmc_x86.c
/freebsd-11-stable/sys/dev/hwpmc/hwpmc_xscale.c
/freebsd-11-stable/sys/dev/hwpmc/hwpmc_xscale.h
/freebsd-11-stable/sys/dev/hwpmc/pmc_events.h
/freebsd-11-stable/sys/dev/hyperv/include/hyperv.h
/freebsd-11-stable/sys/dev/hyperv/storvsc/hv_storvsc_drv_freebsd.c
/freebsd-11-stable/sys/dev/hyperv/storvsc/hv_vstorage.h
/freebsd-11-stable/sys/dev/hyperv/utilities/hv_kvp.h
/freebsd-11-stable/sys/dev/ic/cd1400.h
/freebsd-11-stable/sys/dev/ic/cd180.h
/freebsd-11-stable/sys/dev/ic/esp.h
/freebsd-11-stable/sys/dev/ic/i8253reg.h
/freebsd-11-stable/sys/dev/ic/i82586.h
/freebsd-11-stable/sys/dev/ic/i8259.h
/freebsd-11-stable/sys/dev/ic/nec765.h
/freebsd-11-stable/sys/dev/ic/ns16550.h
/freebsd-11-stable/sys/dev/ic/quicc.h
/freebsd-11-stable/sys/dev/ic/sab82532.h
/freebsd-11-stable/sys/dev/ic/via6522reg.h
/freebsd-11-stable/sys/dev/ic/z8530.h
/freebsd-11-stable/sys/dev/ichwd/ichwd.c
/freebsd-11-stable/sys/dev/ichwd/ichwd.h
/freebsd-11-stable/sys/dev/ida/ida.c
/freebsd-11-stable/sys/dev/ida/ida_disk.c
/freebsd-11-stable/sys/dev/ida/ida_pci.c
/freebsd-11-stable/sys/dev/ida/idareg.h
/freebsd-11-stable/sys/dev/ida/idavar.h
/freebsd-11-stable/sys/dev/if_ndis/if_ndis.c
/freebsd-11-stable/sys/dev/if_ndis/if_ndis_pccard.c
/freebsd-11-stable/sys/dev/if_ndis/if_ndis_pci.c
/freebsd-11-stable/sys/dev/if_ndis/if_ndis_usb.c
/freebsd-11-stable/sys/dev/if_ndis/if_ndisvar.h
/freebsd-11-stable/sys/dev/iicbus/ad7417.c
/freebsd-11-stable/sys/dev/iicbus/ad7418.c
/freebsd-11-stable/sys/dev/iicbus/adt746x.c
/freebsd-11-stable/sys/dev/iicbus/ds1631.c
/freebsd-11-stable/sys/dev/iicbus/ds1672.c
/freebsd-11-stable/sys/dev/iicbus/ds1775.c
/freebsd-11-stable/sys/dev/iicbus/icee.c
/freebsd-11-stable/sys/dev/iicbus/if_ic.c
/freebsd-11-stable/sys/dev/iicbus/iic.c
/freebsd-11-stable/sys/dev/iicbus/iic.h
/freebsd-11-stable/sys/dev/iicbus/iicbb.c
/freebsd-11-stable/sys/dev/iicbus/iicbus.c
/freebsd-11-stable/sys/dev/iicbus/iicbus.h
/freebsd-11-stable/sys/dev/iicbus/iicoc.c
/freebsd-11-stable/sys/dev/iicbus/iicoc.h
/freebsd-11-stable/sys/dev/iicbus/iiconf.c
/freebsd-11-stable/sys/dev/iicbus/iiconf.h
/freebsd-11-stable/sys/dev/iicbus/iicsmb.c
/freebsd-11-stable/sys/dev/iicbus/max6690.c
/freebsd-11-stable/sys/dev/iicbus/s35390a.c
/freebsd-11-stable/sys/dev/iir/iir.c
/freebsd-11-stable/sys/dev/iir/iir.h
/freebsd-11-stable/sys/dev/iir/iir_ctrl.c
/freebsd-11-stable/sys/dev/iir/iir_pci.c
/freebsd-11-stable/sys/dev/io/iodev.c
/freebsd-11-stable/sys/dev/io/iodev.h
/freebsd-11-stable/sys/dev/ipmi/ipmi.c
/freebsd-11-stable/sys/dev/ipmi/ipmi_acpi.c
/freebsd-11-stable/sys/dev/ipmi/ipmi_isa.c
/freebsd-11-stable/sys/dev/ipmi/ipmi_kcs.c
/freebsd-11-stable/sys/dev/ipmi/ipmi_linux.c
/freebsd-11-stable/sys/dev/ipmi/ipmi_pci.c
/freebsd-11-stable/sys/dev/ipmi/ipmi_smbios.c
/freebsd-11-stable/sys/dev/ipmi/ipmi_smbus.c
/freebsd-11-stable/sys/dev/ipmi/ipmi_smic.c
/freebsd-11-stable/sys/dev/ipmi/ipmi_ssif.c
/freebsd-11-stable/sys/dev/ipmi/ipmivars.h
/freebsd-11-stable/sys/dev/ips/ips.c
/freebsd-11-stable/sys/dev/ips/ips.h
/freebsd-11-stable/sys/dev/ips/ips_commands.c
/freebsd-11-stable/sys/dev/ips/ips_disk.c
/freebsd-11-stable/sys/dev/ips/ips_disk.h
/freebsd-11-stable/sys/dev/ips/ips_ioctl.c
/freebsd-11-stable/sys/dev/ips/ips_ioctl.h
/freebsd-11-stable/sys/dev/ips/ips_pci.c
/freebsd-11-stable/sys/dev/ips/ipsreg.h
/freebsd-11-stable/sys/dev/ipw/if_ipw.c
/freebsd-11-stable/sys/dev/ipw/if_ipwreg.h
/freebsd-11-stable/sys/dev/ipw/if_ipwvar.h
/freebsd-11-stable/sys/dev/isci/environment.h
/freebsd-11-stable/sys/dev/isci/isci.c
/freebsd-11-stable/sys/dev/isci/isci.h
/freebsd-11-stable/sys/dev/isci/isci_controller.c
/freebsd-11-stable/sys/dev/isci/isci_domain.c
/freebsd-11-stable/sys/dev/isci/isci_interrupt.c
/freebsd-11-stable/sys/dev/isci/isci_io_request.c
/freebsd-11-stable/sys/dev/isci/isci_logger.c
/freebsd-11-stable/sys/dev/isci/isci_oem_parameters.c
/freebsd-11-stable/sys/dev/isci/isci_remote_device.c
/freebsd-11-stable/sys/dev/isci/isci_sysctl.c
/freebsd-11-stable/sys/dev/isci/isci_task_request.c
/freebsd-11-stable/sys/dev/isci/isci_timer.c
/freebsd-11-stable/sys/dev/isci/scil/intel_ata.h
/freebsd-11-stable/sys/dev/isci/scil/intel_pci.h
/freebsd-11-stable/sys/dev/isci/scil/intel_sas.h
/freebsd-11-stable/sys/dev/isci/scil/intel_sat.h
/freebsd-11-stable/sys/dev/isci/scil/intel_sata.h
/freebsd-11-stable/sys/dev/isci/scil/intel_scsi.h
/freebsd-11-stable/sys/dev/isci/scil/sati.c
/freebsd-11-stable/sys/dev/isci/scil/sati.h
/freebsd-11-stable/sys/dev/isci/scil/sati_abort_task_set.c
/freebsd-11-stable/sys/dev/isci/scil/sati_abort_task_set.h
/freebsd-11-stable/sys/dev/isci/scil/sati_atapi.c
/freebsd-11-stable/sys/dev/isci/scil/sati_atapi.h
/freebsd-11-stable/sys/dev/isci/scil/sati_callbacks.h
/freebsd-11-stable/sys/dev/isci/scil/sati_design.h
/freebsd-11-stable/sys/dev/isci/scil/sati_device.c
/freebsd-11-stable/sys/dev/isci/scil/sati_device.h
/freebsd-11-stable/sys/dev/isci/scil/sati_inquiry.c
/freebsd-11-stable/sys/dev/isci/scil/sati_inquiry.h
/freebsd-11-stable/sys/dev/isci/scil/sati_log_sense.c
/freebsd-11-stable/sys/dev/isci/scil/sati_log_sense.h
/freebsd-11-stable/sys/dev/isci/scil/sati_lun_reset.c
/freebsd-11-stable/sys/dev/isci/scil/sati_lun_reset.h
/freebsd-11-stable/sys/dev/isci/scil/sati_mode_pages.c
/freebsd-11-stable/sys/dev/isci/scil/sati_mode_pages.h
/freebsd-11-stable/sys/dev/isci/scil/sati_mode_select.c
/freebsd-11-stable/sys/dev/isci/scil/sati_mode_select.h
/freebsd-11-stable/sys/dev/isci/scil/sati_mode_sense.c
/freebsd-11-stable/sys/dev/isci/scil/sati_mode_sense.h
/freebsd-11-stable/sys/dev/isci/scil/sati_mode_sense_10.c
/freebsd-11-stable/sys/dev/isci/scil/sati_mode_sense_10.h
/freebsd-11-stable/sys/dev/isci/scil/sati_mode_sense_6.c
/freebsd-11-stable/sys/dev/isci/scil/sati_mode_sense_6.h
/freebsd-11-stable/sys/dev/isci/scil/sati_move.c
/freebsd-11-stable/sys/dev/isci/scil/sati_move.h
/freebsd-11-stable/sys/dev/isci/scil/sati_passthrough.c
/freebsd-11-stable/sys/dev/isci/scil/sati_passthrough.h
/freebsd-11-stable/sys/dev/isci/scil/sati_read.c
/freebsd-11-stable/sys/dev/isci/scil/sati_read.h
/freebsd-11-stable/sys/dev/isci/scil/sati_read_buffer.c
/freebsd-11-stable/sys/dev/isci/scil/sati_read_buffer.h
/freebsd-11-stable/sys/dev/isci/scil/sati_read_capacity.c
/freebsd-11-stable/sys/dev/isci/scil/sati_read_capacity.h
/freebsd-11-stable/sys/dev/isci/scil/sati_reassign_blocks.c
/freebsd-11-stable/sys/dev/isci/scil/sati_reassign_blocks.h
/freebsd-11-stable/sys/dev/isci/scil/sati_report_luns.c
/freebsd-11-stable/sys/dev/isci/scil/sati_report_luns.h
/freebsd-11-stable/sys/dev/isci/scil/sati_request_sense.c
/freebsd-11-stable/sys/dev/isci/scil/sati_request_sense.h
/freebsd-11-stable/sys/dev/isci/scil/sati_start_stop_unit.c
/freebsd-11-stable/sys/dev/isci/scil/sati_start_stop_unit.h
/freebsd-11-stable/sys/dev/isci/scil/sati_synchronize_cache.c
/freebsd-11-stable/sys/dev/isci/scil/sati_synchronize_cache.h
/freebsd-11-stable/sys/dev/isci/scil/sati_test_unit_ready.c
/freebsd-11-stable/sys/dev/isci/scil/sati_test_unit_ready.h
/freebsd-11-stable/sys/dev/isci/scil/sati_translator_sequence.h
/freebsd-11-stable/sys/dev/isci/scil/sati_types.h
/freebsd-11-stable/sys/dev/isci/scil/sati_unmap.c
/freebsd-11-stable/sys/dev/isci/scil/sati_unmap.h
/freebsd-11-stable/sys/dev/isci/scil/sati_util.c
/freebsd-11-stable/sys/dev/isci/scil/sati_util.h
/freebsd-11-stable/sys/dev/isci/scil/sati_verify.c
/freebsd-11-stable/sys/dev/isci/scil/sati_verify.h
/freebsd-11-stable/sys/dev/isci/scil/sati_write.c
/freebsd-11-stable/sys/dev/isci/scil/sati_write.h
/freebsd-11-stable/sys/dev/isci/scil/sati_write_and_verify.c
/freebsd-11-stable/sys/dev/isci/scil/sati_write_and_verify.h
/freebsd-11-stable/sys/dev/isci/scil/sati_write_buffer.c
/freebsd-11-stable/sys/dev/isci/scil/sati_write_buffer.h
/freebsd-11-stable/sys/dev/isci/scil/sati_write_long.c
/freebsd-11-stable/sys/dev/isci/scil/sati_write_long.h
/freebsd-11-stable/sys/dev/isci/scil/sci_abstract_list.c
/freebsd-11-stable/sys/dev/isci/scil/sci_abstract_list.h
/freebsd-11-stable/sys/dev/isci/scil/sci_base_controller.c
/freebsd-11-stable/sys/dev/isci/scil/sci_base_controller.h
/freebsd-11-stable/sys/dev/isci/scil/sci_base_domain.c
/freebsd-11-stable/sys/dev/isci/scil/sci_base_domain.h
/freebsd-11-stable/sys/dev/isci/scil/sci_base_iterator.c
/freebsd-11-stable/sys/dev/isci/scil/sci_base_iterator.h
/freebsd-11-stable/sys/dev/isci/scil/sci_base_library.c
/freebsd-11-stable/sys/dev/isci/scil/sci_base_library.h
/freebsd-11-stable/sys/dev/isci/scil/sci_base_logger.c
/freebsd-11-stable/sys/dev/isci/scil/sci_base_logger.h
/freebsd-11-stable/sys/dev/isci/scil/sci_base_memory_descriptor_list.c
/freebsd-11-stable/sys/dev/isci/scil/sci_base_memory_descriptor_list.h
/freebsd-11-stable/sys/dev/isci/scil/sci_base_memory_descriptor_list_decorator.c
/freebsd-11-stable/sys/dev/isci/scil/sci_base_object.c
/freebsd-11-stable/sys/dev/isci/scil/sci_base_object.h
/freebsd-11-stable/sys/dev/isci/scil/sci_base_observer.c
/freebsd-11-stable/sys/dev/isci/scil/sci_base_observer.h
/freebsd-11-stable/sys/dev/isci/scil/sci_base_phy.c
/freebsd-11-stable/sys/dev/isci/scil/sci_base_phy.h
/freebsd-11-stable/sys/dev/isci/scil/sci_base_port.c
/freebsd-11-stable/sys/dev/isci/scil/sci_base_port.h
/freebsd-11-stable/sys/dev/isci/scil/sci_base_remote_device.c
/freebsd-11-stable/sys/dev/isci/scil/sci_base_remote_device.h
/freebsd-11-stable/sys/dev/isci/scil/sci_base_request.c
/freebsd-11-stable/sys/dev/isci/scil/sci_base_request.h
/freebsd-11-stable/sys/dev/isci/scil/sci_base_state.h
/freebsd-11-stable/sys/dev/isci/scil/sci_base_state_machine.c
/freebsd-11-stable/sys/dev/isci/scil/sci_base_state_machine.h
/freebsd-11-stable/sys/dev/isci/scil/sci_base_state_machine_logger.c
/freebsd-11-stable/sys/dev/isci/scil/sci_base_state_machine_logger.h
/freebsd-11-stable/sys/dev/isci/scil/sci_base_state_machine_observer.c
/freebsd-11-stable/sys/dev/isci/scil/sci_base_state_machine_observer.h
/freebsd-11-stable/sys/dev/isci/scil/sci_base_subject.c
/freebsd-11-stable/sys/dev/isci/scil/sci_base_subject.h
/freebsd-11-stable/sys/dev/isci/scil/sci_controller.h
/freebsd-11-stable/sys/dev/isci/scil/sci_controller_constants.h
/freebsd-11-stable/sys/dev/isci/scil/sci_fast_list.h
/freebsd-11-stable/sys/dev/isci/scil/sci_iterator.h
/freebsd-11-stable/sys/dev/isci/scil/sci_library.h
/freebsd-11-stable/sys/dev/isci/scil/sci_logger.h
/freebsd-11-stable/sys/dev/isci/scil/sci_memory_descriptor_list.h
/freebsd-11-stable/sys/dev/isci/scil/sci_memory_descriptor_list_decorator.h
/freebsd-11-stable/sys/dev/isci/scil/sci_object.h
/freebsd-11-stable/sys/dev/isci/scil/sci_overview.h
/freebsd-11-stable/sys/dev/isci/scil/sci_pool.h
/freebsd-11-stable/sys/dev/isci/scil/sci_simple_list.h
/freebsd-11-stable/sys/dev/isci/scil/sci_status.h
/freebsd-11-stable/sys/dev/isci/scil/sci_types.h
/freebsd-11-stable/sys/dev/isci/scil/sci_util.c
/freebsd-11-stable/sys/dev/isci/scil/sci_util.h
/freebsd-11-stable/sys/dev/isci/scil/scic_config_parameters.h
/freebsd-11-stable/sys/dev/isci/scil/scic_controller.h
/freebsd-11-stable/sys/dev/isci/scil/scic_io_request.h
/freebsd-11-stable/sys/dev/isci/scil/scic_library.h
/freebsd-11-stable/sys/dev/isci/scil/scic_logger.h
/freebsd-11-stable/sys/dev/isci/scil/scic_overview.h
/freebsd-11-stable/sys/dev/isci/scil/scic_phy.h
/freebsd-11-stable/sys/dev/isci/scil/scic_port.h
/freebsd-11-stable/sys/dev/isci/scil/scic_remote_device.h
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_controller.c
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_controller.h
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_controller_registers.h
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_library.c
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_library.h
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_logger.h
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_pci.c
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_pci.h
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_phy.c
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_phy.h
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_phy_registers.h
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_port.c
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_port.h
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_port_configuration_agent.c
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_port_configuration_agent.h
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_port_registers.h
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_remote_device.c
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_remote_device.h
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_remote_node_context.c
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_remote_node_context.h
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_remote_node_table.c
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_remote_node_table.h
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_request.c
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_request.h
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_sgpio.c
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_smp_remote_device.c
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_smp_request.c
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_smp_request.h
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_ssp_request.c
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_stp_packet_request.c
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_stp_packet_request.h
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_stp_pio_request.h
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_stp_remote_device.c
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_stp_request.c
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_stp_request.h
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_unsolicited_frame_control.c
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_unsolicited_frame_control.h
/freebsd-11-stable/sys/dev/isci/scil/scic_sgpio.h
/freebsd-11-stable/sys/dev/isci/scil/scic_task_request.h
/freebsd-11-stable/sys/dev/isci/scil/scic_user_callback.h
/freebsd-11-stable/sys/dev/isci/scil/scif_config_parameters.h
/freebsd-11-stable/sys/dev/isci/scil/scif_controller.h
/freebsd-11-stable/sys/dev/isci/scil/scif_domain.h
/freebsd-11-stable/sys/dev/isci/scil/scif_io_request.h
/freebsd-11-stable/sys/dev/isci/scil/scif_library.h
/freebsd-11-stable/sys/dev/isci/scil/scif_logger.h
/freebsd-11-stable/sys/dev/isci/scil/scif_overview.h
/freebsd-11-stable/sys/dev/isci/scil/scif_remote_device.h
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_constants.h
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_controller.c
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_controller.h
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_controller_state_handlers.c
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_controller_states.c
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_design.h
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_domain.c
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_domain.h
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_domain_state_handlers.c
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_domain_states.c
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_high_priority_request_queue.c
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_high_priority_request_queue.h
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_internal_io_request.c
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_internal_io_request.h
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_io_request.c
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_io_request.h
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_io_request_state_handlers.c
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_io_request_states.c
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_library.c
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_library.h
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_logger.h
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_remote_device.c
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_remote_device.h
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_remote_device_ready_substate_handlers.c
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_remote_device_ready_substates.c
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_remote_device_starting_substate_handlers.c
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_remote_device_starting_substates.c
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_remote_device_state_handlers.c
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_remote_device_states.c
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_request.c
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_request.h
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_sati_binding.h
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_smp_activity_clear_affiliation.c
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_smp_io_request.c
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_smp_io_request.h
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_smp_phy.c
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_smp_phy.h
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_smp_remote_device.c
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_smp_remote_device.h
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_stp_io_request.c
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_stp_io_request.h
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_stp_remote_device.c
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_stp_remote_device.h
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_stp_task_request.c
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_stp_task_request.h
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_task_request.c
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_task_request.h
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_task_request_state_handlers.c
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_task_request_states.c
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_timer.c
/freebsd-11-stable/sys/dev/isci/scil/scif_task_request.h
/freebsd-11-stable/sys/dev/isci/scil/scif_user_callback.h
/freebsd-11-stable/sys/dev/isci/scil/scu_bios_definitions.h
/freebsd-11-stable/sys/dev/isci/scil/scu_completion_codes.h
/freebsd-11-stable/sys/dev/isci/scil/scu_constants.h
/freebsd-11-stable/sys/dev/isci/scil/scu_event_codes.h
/freebsd-11-stable/sys/dev/isci/scil/scu_registers.h
/freebsd-11-stable/sys/dev/isci/scil/scu_remote_node_context.h
/freebsd-11-stable/sys/dev/isci/scil/scu_task_context.h
/freebsd-11-stable/sys/dev/isci/scil/scu_unsolicited_frame.h
/freebsd-11-stable/sys/dev/isci/scil/scu_viit_data.h
/freebsd-11-stable/sys/dev/isci/types.h
/freebsd-11-stable/sys/dev/iscsi/icl.c
/freebsd-11-stable/sys/dev/iscsi/icl.h
/freebsd-11-stable/sys/dev/iscsi/iscsi.c
/freebsd-11-stable/sys/dev/iscsi/iscsi.h
/freebsd-11-stable/sys/dev/iscsi/iscsi_ioctl.h
/freebsd-11-stable/sys/dev/iscsi/iscsi_proto.h
/freebsd-11-stable/sys/dev/iscsi_initiator/isc_cam.c
/freebsd-11-stable/sys/dev/iscsi_initiator/isc_sm.c
/freebsd-11-stable/sys/dev/iscsi_initiator/isc_soc.c
/freebsd-11-stable/sys/dev/iscsi_initiator/isc_subr.c
/freebsd-11-stable/sys/dev/iscsi_initiator/iscsi.c
/freebsd-11-stable/sys/dev/iscsi_initiator/iscsi.h
/freebsd-11-stable/sys/dev/iscsi_initiator/iscsi_subr.c
/freebsd-11-stable/sys/dev/iscsi_initiator/iscsivar.h
/freebsd-11-stable/sys/dev/isp/isp_freebsd.c
/freebsd-11-stable/sys/dev/isp/isp_freebsd.h
/freebsd-11-stable/sys/dev/isp/isp_ioctl.h
/freebsd-11-stable/sys/dev/isp/isp_library.c
/freebsd-11-stable/sys/dev/isp/isp_library.h
/freebsd-11-stable/sys/dev/isp/isp_sbus.c
/freebsd-11-stable/sys/dev/isp/isp_stds.h
/freebsd-11-stable/sys/dev/isp/isp_target.c
/freebsd-11-stable/sys/dev/isp/isp_target.h
/freebsd-11-stable/sys/dev/isp/ispreg.h
/freebsd-11-stable/sys/dev/ispfw/asm_1000.h
/freebsd-11-stable/sys/dev/ispfw/asm_1040.h
/freebsd-11-stable/sys/dev/ispfw/asm_1080.h
/freebsd-11-stable/sys/dev/ispfw/asm_12160.h
/freebsd-11-stable/sys/dev/ispfw/asm_2100.h
/freebsd-11-stable/sys/dev/ispfw/asm_2200.h
/freebsd-11-stable/sys/dev/ispfw/asm_2300.h
/freebsd-11-stable/sys/dev/ispfw/asm_2322.h
/freebsd-11-stable/sys/dev/ispfw/asm_2400.h
/freebsd-11-stable/sys/dev/ispfw/asm_2500.h
/freebsd-11-stable/sys/dev/ispfw/ispfw.c
/freebsd-11-stable/sys/dev/iwi/if_iwi.c
/freebsd-11-stable/sys/dev/iwi/if_iwireg.h
/freebsd-11-stable/sys/dev/iwi/if_iwivar.h
/freebsd-11-stable/sys/dev/ixgb/if_ixgb.c
/freebsd-11-stable/sys/dev/ixgb/if_ixgb.h
/freebsd-11-stable/sys/dev/ixgb/if_ixgb_osdep.h
/freebsd-11-stable/sys/dev/ixgb/ixgb_ee.c
/freebsd-11-stable/sys/dev/ixgb/ixgb_ee.h
/freebsd-11-stable/sys/dev/ixgb/ixgb_hw.c
/freebsd-11-stable/sys/dev/ixgb/ixgb_hw.h
/freebsd-11-stable/sys/dev/ixgb/ixgb_ids.h
/freebsd-11-stable/sys/dev/ixgbe/ixgbe.h
/freebsd-11-stable/sys/dev/ixgbe/ixgbe_82598.c
/freebsd-11-stable/sys/dev/ixgbe/ixgbe_82598.h
/freebsd-11-stable/sys/dev/ixgbe/ixgbe_82599.c
/freebsd-11-stable/sys/dev/ixgbe/ixgbe_82599.h
/freebsd-11-stable/sys/dev/ixgbe/ixgbe_api.c
/freebsd-11-stable/sys/dev/ixgbe/ixgbe_api.h
/freebsd-11-stable/sys/dev/ixgbe/ixgbe_common.c
/freebsd-11-stable/sys/dev/ixgbe/ixgbe_common.h
/freebsd-11-stable/sys/dev/ixgbe/ixgbe_dcb.c
/freebsd-11-stable/sys/dev/ixgbe/ixgbe_dcb.h
/freebsd-11-stable/sys/dev/ixgbe/ixgbe_dcb_82598.c
/freebsd-11-stable/sys/dev/ixgbe/ixgbe_dcb_82598.h
/freebsd-11-stable/sys/dev/ixgbe/ixgbe_dcb_82599.c
/freebsd-11-stable/sys/dev/ixgbe/ixgbe_dcb_82599.h
/freebsd-11-stable/sys/dev/ixgbe/ixgbe_mbx.c
/freebsd-11-stable/sys/dev/ixgbe/ixgbe_mbx.h
/freebsd-11-stable/sys/dev/ixgbe/ixgbe_osdep.h
/freebsd-11-stable/sys/dev/ixgbe/ixgbe_phy.c
/freebsd-11-stable/sys/dev/ixgbe/ixgbe_phy.h
/freebsd-11-stable/sys/dev/ixgbe/ixgbe_type.h
/freebsd-11-stable/sys/dev/ixgbe/ixgbe_vf.c
/freebsd-11-stable/sys/dev/ixgbe/ixgbe_vf.h
/freebsd-11-stable/sys/dev/ixgbe/ixgbe_x540.c
/freebsd-11-stable/sys/dev/ixgbe/ixgbe_x540.h
/freebsd-11-stable/sys/dev/jme/if_jme.c
/freebsd-11-stable/sys/dev/jme/if_jmereg.h
/freebsd-11-stable/sys/dev/jme/if_jmevar.h
/freebsd-11-stable/sys/dev/joy/joy.c
/freebsd-11-stable/sys/dev/joy/joy_isa.c
/freebsd-11-stable/sys/dev/joy/joyvar.h
/freebsd-11-stable/sys/dev/kbd/kbd.c
/freebsd-11-stable/sys/dev/kbd/kbdreg.h
/freebsd-11-stable/sys/dev/kbd/kbdtables.h
/freebsd-11-stable/sys/dev/kbdmux/kbdmux.c
/freebsd-11-stable/sys/dev/ksyms/ksyms.c
/freebsd-11-stable/sys/dev/le/am7990.c
/freebsd-11-stable/sys/dev/le/am79900.c
/freebsd-11-stable/sys/dev/le/am79900reg.h
/freebsd-11-stable/sys/dev/le/am79900var.h
/freebsd-11-stable/sys/dev/le/am7990reg.h
/freebsd-11-stable/sys/dev/le/am7990var.h
/freebsd-11-stable/sys/dev/le/if_le_isa.c
/freebsd-11-stable/sys/dev/le/if_le_lebuffer.c
/freebsd-11-stable/sys/dev/le/if_le_ledma.c
/freebsd-11-stable/sys/dev/le/if_le_pci.c
/freebsd-11-stable/sys/dev/le/lance.c
/freebsd-11-stable/sys/dev/le/lancereg.h
/freebsd-11-stable/sys/dev/le/lancevar.h
/freebsd-11-stable/sys/dev/le/lebuffer_sbus.c
/freebsd-11-stable/sys/dev/lge/if_lge.c
/freebsd-11-stable/sys/dev/lge/if_lgereg.h
/freebsd-11-stable/sys/dev/lmc/if_lmc.c
/freebsd-11-stable/sys/dev/lmc/if_lmc.h
/freebsd-11-stable/sys/dev/malo/if_malo.c
/freebsd-11-stable/sys/dev/malo/if_malo.h
/freebsd-11-stable/sys/dev/malo/if_malo_pci.c
/freebsd-11-stable/sys/dev/malo/if_malohal.c
/freebsd-11-stable/sys/dev/malo/if_malohal.h
/freebsd-11-stable/sys/dev/malo/if_maloioctl.h
/freebsd-11-stable/sys/dev/mc146818/mc146818.c
/freebsd-11-stable/sys/dev/mc146818/mc146818var.h
/freebsd-11-stable/sys/dev/md/md.c
/freebsd-11-stable/sys/dev/mem/memdev.c
/freebsd-11-stable/sys/dev/mem/memutil.c
/freebsd-11-stable/sys/dev/mfi/mfi.c
/freebsd-11-stable/sys/dev/mfi/mfi_cam.c
/freebsd-11-stable/sys/dev/mfi/mfi_debug.c
/freebsd-11-stable/sys/dev/mfi/mfi_disk.c
/freebsd-11-stable/sys/dev/mfi/mfi_ioctl.h
/freebsd-11-stable/sys/dev/mfi/mfi_linux.c
/freebsd-11-stable/sys/dev/mfi/mfi_pci.c
/freebsd-11-stable/sys/dev/mfi/mfi_syspd.c
/freebsd-11-stable/sys/dev/mfi/mfi_tbolt.c
/freebsd-11-stable/sys/dev/mfi/mfireg.h
/freebsd-11-stable/sys/dev/mfi/mfivar.h
/freebsd-11-stable/sys/dev/mge/if_mge.c
/freebsd-11-stable/sys/dev/mge/if_mgevar.h
/freebsd-11-stable/sys/dev/mii/acphy.c
/freebsd-11-stable/sys/dev/mii/acphyreg.h
/freebsd-11-stable/sys/dev/mii/amphy.c
/freebsd-11-stable/sys/dev/mii/amphyreg.h
/freebsd-11-stable/sys/dev/mii/atphy.c
/freebsd-11-stable/sys/dev/mii/atphyreg.h
/freebsd-11-stable/sys/dev/mii/axphy.c
/freebsd-11-stable/sys/dev/mii/bmtphy.c
/freebsd-11-stable/sys/dev/mii/bmtphyreg.h
/freebsd-11-stable/sys/dev/mii/brgphy.c
/freebsd-11-stable/sys/dev/mii/brgphyreg.h
/freebsd-11-stable/sys/dev/mii/ciphy.c
/freebsd-11-stable/sys/dev/mii/ciphyreg.h
/freebsd-11-stable/sys/dev/mii/e1000phy.c
/freebsd-11-stable/sys/dev/mii/e1000phyreg.h
/freebsd-11-stable/sys/dev/mii/gentbi.c
/freebsd-11-stable/sys/dev/mii/icsphy.c
/freebsd-11-stable/sys/dev/mii/icsphyreg.h
/freebsd-11-stable/sys/dev/mii/ip1000phy.c
/freebsd-11-stable/sys/dev/mii/ip1000phyreg.h
/freebsd-11-stable/sys/dev/mii/jmphy.c
/freebsd-11-stable/sys/dev/mii/jmphyreg.h
/freebsd-11-stable/sys/dev/mii/lxtphy.c
/freebsd-11-stable/sys/dev/mii/lxtphyreg.h
/freebsd-11-stable/sys/dev/mii/mii.c
/freebsd-11-stable/sys/dev/mii/mii.h
/freebsd-11-stable/sys/dev/mii/mii_bitbang.c
/freebsd-11-stable/sys/dev/mii/mii_bitbang.h
/freebsd-11-stable/sys/dev/mii/mii_physubr.c
/freebsd-11-stable/sys/dev/mii/miivar.h
/freebsd-11-stable/sys/dev/mii/mlphy.c
/freebsd-11-stable/sys/dev/mii/nsgphy.c
/freebsd-11-stable/sys/dev/mii/nsgphyreg.h
/freebsd-11-stable/sys/dev/mii/nsphy.c
/freebsd-11-stable/sys/dev/mii/nsphyreg.h
/freebsd-11-stable/sys/dev/mii/nsphyter.c
/freebsd-11-stable/sys/dev/mii/nsphyterreg.h
/freebsd-11-stable/sys/dev/mii/pnaphy.c
/freebsd-11-stable/sys/dev/mii/qsphy.c
/freebsd-11-stable/sys/dev/mii/qsphyreg.h
/freebsd-11-stable/sys/dev/mii/rdcphy.c
/freebsd-11-stable/sys/dev/mii/rdcphyreg.h
/freebsd-11-stable/sys/dev/mii/rgephy.c
/freebsd-11-stable/sys/dev/mii/rgephyreg.h
/freebsd-11-stable/sys/dev/mii/rlphy.c
/freebsd-11-stable/sys/dev/mii/rlswitch.c
/freebsd-11-stable/sys/dev/mii/smcphy.c
/freebsd-11-stable/sys/dev/mii/smscphy.c
/freebsd-11-stable/sys/dev/mii/tdkphy.c
/freebsd-11-stable/sys/dev/mii/tdkphyreg.h
/freebsd-11-stable/sys/dev/mii/tlphy.c
/freebsd-11-stable/sys/dev/mii/tlphyreg.h
/freebsd-11-stable/sys/dev/mii/truephy.c
/freebsd-11-stable/sys/dev/mii/truephyreg.h
/freebsd-11-stable/sys/dev/mii/ukphy.c
/freebsd-11-stable/sys/dev/mii/ukphy_subr.c
/freebsd-11-stable/sys/dev/mii/xmphy.c
/freebsd-11-stable/sys/dev/mii/xmphyreg.h
/freebsd-11-stable/sys/dev/mk48txx/mk48txx.c
/freebsd-11-stable/sys/dev/mk48txx/mk48txxreg.h
/freebsd-11-stable/sys/dev/mk48txx/mk48txxvar.h
/freebsd-11-stable/sys/dev/mlx/mlx.c
/freebsd-11-stable/sys/dev/mlx/mlx_disk.c
/freebsd-11-stable/sys/dev/mlx/mlx_pci.c
/freebsd-11-stable/sys/dev/mlx/mlxio.h
/freebsd-11-stable/sys/dev/mlx/mlxreg.h
/freebsd-11-stable/sys/dev/mlx/mlxvar.h
/freebsd-11-stable/sys/dev/mly/mly.c
/freebsd-11-stable/sys/dev/mly/mly_tables.h
/freebsd-11-stable/sys/dev/mly/mlyio.h
/freebsd-11-stable/sys/dev/mly/mlyreg.h
/freebsd-11-stable/sys/dev/mly/mlyvar.h
/freebsd-11-stable/sys/dev/mmc/bridge.h
/freebsd-11-stable/sys/dev/mmc/mmc.c
/freebsd-11-stable/sys/dev/mmc/mmcbrvar.h
/freebsd-11-stable/sys/dev/mmc/mmcreg.h
/freebsd-11-stable/sys/dev/mmc/mmcsd.c
/freebsd-11-stable/sys/dev/mmc/mmcvar.h
/freebsd-11-stable/sys/dev/mps/mpi/mpi2.h
/freebsd-11-stable/sys/dev/mps/mpi/mpi2_cnfg.h
/freebsd-11-stable/sys/dev/mps/mpi/mpi2_hbd.h
/freebsd-11-stable/sys/dev/mps/mpi/mpi2_init.h
/freebsd-11-stable/sys/dev/mps/mpi/mpi2_ioc.h
/freebsd-11-stable/sys/dev/mps/mpi/mpi2_ra.h
/freebsd-11-stable/sys/dev/mps/mpi/mpi2_raid.h
/freebsd-11-stable/sys/dev/mps/mpi/mpi2_sas.h
/freebsd-11-stable/sys/dev/mps/mpi/mpi2_targ.h
/freebsd-11-stable/sys/dev/mps/mpi/mpi2_tool.h
/freebsd-11-stable/sys/dev/mps/mpi/mpi2_type.h
/freebsd-11-stable/sys/dev/mps/mps.c
/freebsd-11-stable/sys/dev/mps/mps_config.c
/freebsd-11-stable/sys/dev/mps/mps_ioctl.h
/freebsd-11-stable/sys/dev/mps/mps_mapping.c
/freebsd-11-stable/sys/dev/mps/mps_mapping.h
/freebsd-11-stable/sys/dev/mps/mps_pci.c
/freebsd-11-stable/sys/dev/mps/mps_sas.c
/freebsd-11-stable/sys/dev/mps/mps_sas.h
/freebsd-11-stable/sys/dev/mps/mps_sas_lsi.c
/freebsd-11-stable/sys/dev/mps/mps_table.c
/freebsd-11-stable/sys/dev/mps/mps_table.h
/freebsd-11-stable/sys/dev/mps/mps_user.c
/freebsd-11-stable/sys/dev/mps/mpsvar.h
/freebsd-11-stable/sys/dev/mpt/mpilib/mpi.h
/freebsd-11-stable/sys/dev/mpt/mpilib/mpi_cnfg.h
/freebsd-11-stable/sys/dev/mpt/mpilib/mpi_fc.h
/freebsd-11-stable/sys/dev/mpt/mpilib/mpi_init.h
/freebsd-11-stable/sys/dev/mpt/mpilib/mpi_ioc.h
/freebsd-11-stable/sys/dev/mpt/mpilib/mpi_lan.h
/freebsd-11-stable/sys/dev/mpt/mpilib/mpi_log_fc.h
/freebsd-11-stable/sys/dev/mpt/mpilib/mpi_log_sas.h
/freebsd-11-stable/sys/dev/mpt/mpilib/mpi_raid.h
/freebsd-11-stable/sys/dev/mpt/mpilib/mpi_sas.h
/freebsd-11-stable/sys/dev/mpt/mpilib/mpi_targ.h
/freebsd-11-stable/sys/dev/mpt/mpilib/mpi_tool.h
/freebsd-11-stable/sys/dev/mpt/mpilib/mpi_type.h
/freebsd-11-stable/sys/dev/mpt/mpt.c
/freebsd-11-stable/sys/dev/mpt/mpt.h
/freebsd-11-stable/sys/dev/mpt/mpt_cam.c
/freebsd-11-stable/sys/dev/mpt/mpt_cam.h
/freebsd-11-stable/sys/dev/mpt/mpt_debug.c
/freebsd-11-stable/sys/dev/mpt/mpt_pci.c
/freebsd-11-stable/sys/dev/mpt/mpt_raid.c
/freebsd-11-stable/sys/dev/mpt/mpt_raid.h
/freebsd-11-stable/sys/dev/mpt/mpt_reg.h
/freebsd-11-stable/sys/dev/mpt/mpt_user.c
/freebsd-11-stable/sys/dev/mse/mse.c
/freebsd-11-stable/sys/dev/mse/mse_isa.c
/freebsd-11-stable/sys/dev/mse/msevar.h
/freebsd-11-stable/sys/dev/msk/if_msk.c
/freebsd-11-stable/sys/dev/msk/if_mskreg.h
/freebsd-11-stable/sys/dev/mvs/mvs.c
/freebsd-11-stable/sys/dev/mvs/mvs.h
/freebsd-11-stable/sys/dev/mvs/mvs_pci.c
/freebsd-11-stable/sys/dev/mvs/mvs_soc.c
/freebsd-11-stable/sys/dev/mwl/if_mwl.c
/freebsd-11-stable/sys/dev/mwl/if_mwl_pci.c
/freebsd-11-stable/sys/dev/mwl/if_mwlioctl.h
/freebsd-11-stable/sys/dev/mwl/if_mwlvar.h
/freebsd-11-stable/sys/dev/mwl/mwldiag.h
/freebsd-11-stable/sys/dev/mwl/mwlhal.c
/freebsd-11-stable/sys/dev/mwl/mwlhal.h
/freebsd-11-stable/sys/dev/mwl/mwlreg.h
/freebsd-11-stable/sys/dev/mxge/eth_z8e.h
/freebsd-11-stable/sys/dev/mxge/ethp_z8e.h
/freebsd-11-stable/sys/dev/mxge/if_mxge.c
/freebsd-11-stable/sys/dev/mxge/if_mxge_var.h
/freebsd-11-stable/sys/dev/mxge/mcp_gen_header.h
/freebsd-11-stable/sys/dev/mxge/mxge_mcp.h
/freebsd-11-stable/sys/dev/mxge/rss_eth_z8e.h
/freebsd-11-stable/sys/dev/mxge/rss_ethp_z8e.h
/freebsd-11-stable/sys/dev/my/if_my.c
/freebsd-11-stable/sys/dev/my/if_myreg.h
/freebsd-11-stable/sys/dev/nand/nand.c
/freebsd-11-stable/sys/dev/nand/nand.h
/freebsd-11-stable/sys/dev/nand/nand_bbt.c
/freebsd-11-stable/sys/dev/nand/nand_cdev.c
/freebsd-11-stable/sys/dev/nand/nand_dev.h
/freebsd-11-stable/sys/dev/nand/nand_ecc_pos.h
/freebsd-11-stable/sys/dev/nand/nand_generic.c
/freebsd-11-stable/sys/dev/nand/nand_geom.c
/freebsd-11-stable/sys/dev/nand/nand_id.c
/freebsd-11-stable/sys/dev/nand/nandbus.c
/freebsd-11-stable/sys/dev/nand/nandbus.h
/freebsd-11-stable/sys/dev/nand/nandsim.c
/freebsd-11-stable/sys/dev/nand/nandsim.h
/freebsd-11-stable/sys/dev/nand/nandsim_chip.c
/freebsd-11-stable/sys/dev/nand/nandsim_chip.h
/freebsd-11-stable/sys/dev/nand/nandsim_ctrl.c
/freebsd-11-stable/sys/dev/nand/nandsim_log.c
/freebsd-11-stable/sys/dev/nand/nandsim_log.h
/freebsd-11-stable/sys/dev/nand/nandsim_swap.c
/freebsd-11-stable/sys/dev/nand/nandsim_swap.h
/freebsd-11-stable/sys/dev/nand/nfc_at91.c
/freebsd-11-stable/sys/dev/nand/nfc_at91.h
/freebsd-11-stable/sys/dev/nand/nfc_fsl.c
/freebsd-11-stable/sys/dev/nand/nfc_fsl.h
/freebsd-11-stable/sys/dev/nand/nfc_mv.c
/freebsd-11-stable/sys/dev/ncv/ncr53c500.c
/freebsd-11-stable/sys/dev/ncv/ncr53c500_pccard.c
/freebsd-11-stable/sys/dev/ncv/ncr53c500hw.h
/freebsd-11-stable/sys/dev/ncv/ncr53c500hwtab.h
/freebsd-11-stable/sys/dev/ncv/ncr53c500reg.h
/freebsd-11-stable/sys/dev/ncv/ncr53c500var.h
/freebsd-11-stable/sys/dev/netmap/if_em_netmap.h
/freebsd-11-stable/sys/dev/netmap/if_igb_netmap.h
/freebsd-11-stable/sys/dev/netmap/if_lem_netmap.h
/freebsd-11-stable/sys/dev/netmap/if_re_netmap.h
/freebsd-11-stable/sys/dev/netmap/ixgbe_netmap.h
/freebsd-11-stable/sys/dev/netmap/netmap.c
/freebsd-11-stable/sys/dev/netmap/netmap_freebsd.c
/freebsd-11-stable/sys/dev/netmap/netmap_generic.c
/freebsd-11-stable/sys/dev/netmap/netmap_kern.h
/freebsd-11-stable/sys/dev/netmap/netmap_mbq.c
/freebsd-11-stable/sys/dev/netmap/netmap_mbq.h
/freebsd-11-stable/sys/dev/netmap/netmap_mem2.c
/freebsd-11-stable/sys/dev/netmap/netmap_mem2.h
/freebsd-11-stable/sys/dev/netmap/netmap_offloadings.c
/freebsd-11-stable/sys/dev/netmap/netmap_pipe.c
/freebsd-11-stable/sys/dev/netmap/netmap_vale.c
/freebsd-11-stable/sys/dev/nge/if_nge.c
/freebsd-11-stable/sys/dev/nge/if_ngereg.h
/freebsd-11-stable/sys/dev/nmdm/nmdm.c
/freebsd-11-stable/sys/dev/nsp/nsp.c
/freebsd-11-stable/sys/dev/nsp/nsp_pccard.c
/freebsd-11-stable/sys/dev/nsp/nspreg.h
/freebsd-11-stable/sys/dev/nsp/nspvar.h
/freebsd-11-stable/sys/dev/null/null.c
/freebsd-11-stable/sys/dev/nvd/nvd.c
/freebsd-11-stable/sys/dev/nvme/nvme.c
/freebsd-11-stable/sys/dev/nvme/nvme.h
/freebsd-11-stable/sys/dev/nvme/nvme_ctrlr.c
/freebsd-11-stable/sys/dev/nvme/nvme_ctrlr_cmd.c
/freebsd-11-stable/sys/dev/nvme/nvme_ns.c
/freebsd-11-stable/sys/dev/nvme/nvme_ns_cmd.c
/freebsd-11-stable/sys/dev/nvme/nvme_private.h
/freebsd-11-stable/sys/dev/nvme/nvme_qpair.c
/freebsd-11-stable/sys/dev/nvme/nvme_sysctl.c
/freebsd-11-stable/sys/dev/nvme/nvme_test.c
/freebsd-11-stable/sys/dev/nvme/nvme_util.c
/freebsd-11-stable/sys/dev/nvram/nvram.c
/freebsd-11-stable/sys/dev/nvram2env/nvram2env.c
/freebsd-11-stable/sys/dev/nxge/if_nxge.c
/freebsd-11-stable/sys/dev/nxge/if_nxge.h
/freebsd-11-stable/sys/dev/nxge/include/version.h
/freebsd-11-stable/sys/dev/nxge/include/xge-debug.h
/freebsd-11-stable/sys/dev/nxge/include/xge-defs.h
/freebsd-11-stable/sys/dev/nxge/include/xge-list.h
/freebsd-11-stable/sys/dev/nxge/include/xge-os-pal.h
/freebsd-11-stable/sys/dev/nxge/include/xge-queue.h
/freebsd-11-stable/sys/dev/nxge/include/xgehal-channel.h
/freebsd-11-stable/sys/dev/nxge/include/xgehal-config.h
/freebsd-11-stable/sys/dev/nxge/include/xgehal-device.h
/freebsd-11-stable/sys/dev/nxge/include/xgehal-driver.h
/freebsd-11-stable/sys/dev/nxge/include/xgehal-event.h
/freebsd-11-stable/sys/dev/nxge/include/xgehal-fifo.h
/freebsd-11-stable/sys/dev/nxge/include/xgehal-mgmt.h
/freebsd-11-stable/sys/dev/nxge/include/xgehal-mgmtaux.h
/freebsd-11-stable/sys/dev/nxge/include/xgehal-mm.h
/freebsd-11-stable/sys/dev/nxge/include/xgehal-regs.h
/freebsd-11-stable/sys/dev/nxge/include/xgehal-ring.h
/freebsd-11-stable/sys/dev/nxge/include/xgehal-stats.h
/freebsd-11-stable/sys/dev/nxge/include/xgehal-types.h
/freebsd-11-stable/sys/dev/nxge/include/xgehal.h
/freebsd-11-stable/sys/dev/nxge/xge-osdep.h
/freebsd-11-stable/sys/dev/nxge/xgehal/xge-queue.c
/freebsd-11-stable/sys/dev/nxge/xgehal/xgehal-channel-fp.c
/freebsd-11-stable/sys/dev/nxge/xgehal/xgehal-channel.c
/freebsd-11-stable/sys/dev/nxge/xgehal/xgehal-config.c
/freebsd-11-stable/sys/dev/nxge/xgehal/xgehal-device-fp.c
/freebsd-11-stable/sys/dev/nxge/xgehal/xgehal-device.c
/freebsd-11-stable/sys/dev/nxge/xgehal/xgehal-driver.c
/freebsd-11-stable/sys/dev/nxge/xgehal/xgehal-fifo-fp.c
/freebsd-11-stable/sys/dev/nxge/xgehal/xgehal-fifo.c
/freebsd-11-stable/sys/dev/nxge/xgehal/xgehal-mgmt.c
/freebsd-11-stable/sys/dev/nxge/xgehal/xgehal-mgmtaux.c
/freebsd-11-stable/sys/dev/nxge/xgehal/xgehal-mm.c
/freebsd-11-stable/sys/dev/nxge/xgehal/xgehal-ring-fp.c
/freebsd-11-stable/sys/dev/nxge/xgehal/xgehal-ring.c
/freebsd-11-stable/sys/dev/nxge/xgehal/xgehal-stats.c
/freebsd-11-stable/sys/dev/nxge/xgell-version.h
/freebsd-11-stable/sys/dev/oce/oce_hw.c
/freebsd-11-stable/sys/dev/oce/oce_hw.h
/freebsd-11-stable/sys/dev/oce/oce_if.c
/freebsd-11-stable/sys/dev/oce/oce_if.h
/freebsd-11-stable/sys/dev/oce/oce_mbox.c
/freebsd-11-stable/sys/dev/oce/oce_queue.c
/freebsd-11-stable/sys/dev/oce/oce_sysctl.c
/freebsd-11-stable/sys/dev/oce/oce_util.c
/freebsd-11-stable/sys/dev/ofw/ofw_bus.h
/freebsd-11-stable/sys/dev/ofw/ofw_bus_subr.c
/freebsd-11-stable/sys/dev/ofw/ofw_bus_subr.h
/freebsd-11-stable/sys/dev/ofw/ofw_console.c
/freebsd-11-stable/sys/dev/ofw/ofw_disk.c
/freebsd-11-stable/sys/dev/ofw/ofw_fdt.c
/freebsd-11-stable/sys/dev/ofw/ofw_pci.h
/freebsd-11-stable/sys/dev/ofw/ofw_standard.c
/freebsd-11-stable/sys/dev/ofw/ofwvar.h
/freebsd-11-stable/sys/dev/ofw/openfirm.c
/freebsd-11-stable/sys/dev/ofw/openfirm.h
/freebsd-11-stable/sys/dev/ofw/openfirmio.c
/freebsd-11-stable/sys/dev/ofw/openfirmio.h
/freebsd-11-stable/sys/dev/ofw/openpromio.c
/freebsd-11-stable/sys/dev/ofw/openpromio.h
/freebsd-11-stable/sys/dev/pbio/pbio.c
/freebsd-11-stable/sys/dev/pbio/pbioio.h
/freebsd-11-stable/sys/dev/pccard/pccard.c
/freebsd-11-stable/sys/dev/pccard/pccard_cis.c
/freebsd-11-stable/sys/dev/pccard/pccard_cis.h
/freebsd-11-stable/sys/dev/pccard/pccard_cis_quirks.c
/freebsd-11-stable/sys/dev/pccard/pccard_device.c
/freebsd-11-stable/sys/dev/pccard/pccardreg.h
/freebsd-11-stable/sys/dev/pccard/pccardvar.h
/freebsd-11-stable/sys/dev/pccard/pccardvarp.h
/freebsd-11-stable/sys/dev/pccbb/pccbb.c
/freebsd-11-stable/sys/dev/pccbb/pccbb_isa.c
/freebsd-11-stable/sys/dev/pccbb/pccbb_pci.c
/freebsd-11-stable/sys/dev/pccbb/pccbbdevid.h
/freebsd-11-stable/sys/dev/pccbb/pccbbreg.h
/freebsd-11-stable/sys/dev/pccbb/pccbbvar.h
/freebsd-11-stable/sys/dev/pcf/envctrl.c
/freebsd-11-stable/sys/dev/pcf/pcf.c
/freebsd-11-stable/sys/dev/pcf/pcf_ebus.c
/freebsd-11-stable/sys/dev/pcf/pcf_isa.c
/freebsd-11-stable/sys/dev/pcf/pcfvar.h
/freebsd-11-stable/sys/dev/pci/fixup_pci.c
/freebsd-11-stable/sys/dev/pci/hostb_pci.c
/freebsd-11-stable/sys/dev/pci/ignore_pci.c
/freebsd-11-stable/sys/dev/pci/isa_pci.c
/freebsd-11-stable/sys/dev/pci/pci.c
/freebsd-11-stable/sys/dev/pci/pci_pci.c
/freebsd-11-stable/sys/dev/pci/pci_private.h
/freebsd-11-stable/sys/dev/pci/pci_subr.c
/freebsd-11-stable/sys/dev/pci/pci_user.c
/freebsd-11-stable/sys/dev/pci/pcib_private.h
/freebsd-11-stable/sys/dev/pci/pcireg.h
/freebsd-11-stable/sys/dev/pci/pcivar.h
/freebsd-11-stable/sys/dev/pci/vga_pci.c
/freebsd-11-stable/sys/dev/pcn/if_pcn.c
/freebsd-11-stable/sys/dev/pcn/if_pcnreg.h
/freebsd-11-stable/sys/dev/pdq/if_fpa.c
/freebsd-11-stable/sys/dev/pdq/pdq.c
/freebsd-11-stable/sys/dev/pdq/pdq_freebsd.h
/freebsd-11-stable/sys/dev/pdq/pdq_ifsubr.c
/freebsd-11-stable/sys/dev/pdq/pdqreg.h
/freebsd-11-stable/sys/dev/pdq/pdqvar.h
/freebsd-11-stable/sys/dev/powermac_nvram/powermac_nvram.c
/freebsd-11-stable/sys/dev/powermac_nvram/powermac_nvramvar.h
/freebsd-11-stable/sys/dev/ppbus/if_plip.c
/freebsd-11-stable/sys/dev/ppbus/immio.c
/freebsd-11-stable/sys/dev/ppbus/lpbb.c
/freebsd-11-stable/sys/dev/ppbus/lpt.c
/freebsd-11-stable/sys/dev/ppbus/lpt.h
/freebsd-11-stable/sys/dev/ppbus/pcfclock.c
/freebsd-11-stable/sys/dev/ppbus/ppb_1284.c
/freebsd-11-stable/sys/dev/ppbus/ppb_1284.h
/freebsd-11-stable/sys/dev/ppbus/ppb_base.c
/freebsd-11-stable/sys/dev/ppbus/ppb_msq.c
/freebsd-11-stable/sys/dev/ppbus/ppb_msq.h
/freebsd-11-stable/sys/dev/ppbus/ppbconf.c
/freebsd-11-stable/sys/dev/ppbus/ppbconf.h
/freebsd-11-stable/sys/dev/ppbus/ppbio.h
/freebsd-11-stable/sys/dev/ppbus/ppi.c
/freebsd-11-stable/sys/dev/ppbus/ppi.h
/freebsd-11-stable/sys/dev/ppbus/vpo.c
/freebsd-11-stable/sys/dev/ppbus/vpoio.c
/freebsd-11-stable/sys/dev/ppbus/vpoio.h
/freebsd-11-stable/sys/dev/ppc/ppc.c
/freebsd-11-stable/sys/dev/ppc/ppc_acpi.c
/freebsd-11-stable/sys/dev/ppc/ppc_isa.c
/freebsd-11-stable/sys/dev/ppc/ppc_pci.c
/freebsd-11-stable/sys/dev/ppc/ppc_puc.c
/freebsd-11-stable/sys/dev/ppc/ppcreg.h
/freebsd-11-stable/sys/dev/ppc/ppcvar.h
/freebsd-11-stable/sys/dev/pst/pst-iop.c
/freebsd-11-stable/sys/dev/pst/pst-iop.h
/freebsd-11-stable/sys/dev/pst/pst-pci.c
/freebsd-11-stable/sys/dev/pst/pst-raid.c
/freebsd-11-stable/sys/dev/pty/pty.c
/freebsd-11-stable/sys/dev/puc/puc.c
/freebsd-11-stable/sys/dev/puc/puc_bfe.h
/freebsd-11-stable/sys/dev/puc/puc_bus.h
/freebsd-11-stable/sys/dev/puc/puc_cfg.c
/freebsd-11-stable/sys/dev/puc/puc_cfg.h
/freebsd-11-stable/sys/dev/puc/puc_pccard.c
/freebsd-11-stable/sys/dev/puc/puc_pci.c
/freebsd-11-stable/sys/dev/puc/pucdata.c
/freebsd-11-stable/sys/dev/qlxgb/qla_dbg.c
/freebsd-11-stable/sys/dev/qlxgb/qla_dbg.h
/freebsd-11-stable/sys/dev/qlxgb/qla_def.h
/freebsd-11-stable/sys/dev/qlxgb/qla_glbl.h
/freebsd-11-stable/sys/dev/qlxgb/qla_hw.c
/freebsd-11-stable/sys/dev/qlxgb/qla_hw.h
/freebsd-11-stable/sys/dev/qlxgb/qla_inline.h
/freebsd-11-stable/sys/dev/qlxgb/qla_ioctl.c
/freebsd-11-stable/sys/dev/qlxgb/qla_ioctl.h
/freebsd-11-stable/sys/dev/qlxgb/qla_isr.c
/freebsd-11-stable/sys/dev/qlxgb/qla_misc.c
/freebsd-11-stable/sys/dev/qlxgb/qla_os.c
/freebsd-11-stable/sys/dev/qlxgb/qla_os.h
/freebsd-11-stable/sys/dev/qlxgb/qla_reg.h
/freebsd-11-stable/sys/dev/qlxgb/qla_ver.h
/freebsd-11-stable/sys/dev/qlxgbe/ql_dbg.c
/freebsd-11-stable/sys/dev/qlxgbe/ql_dbg.h
/freebsd-11-stable/sys/dev/qlxgbe/ql_def.h
/freebsd-11-stable/sys/dev/qlxgbe/ql_glbl.h
/freebsd-11-stable/sys/dev/qlxgbe/ql_hw.c
/freebsd-11-stable/sys/dev/qlxgbe/ql_hw.h
/freebsd-11-stable/sys/dev/qlxgbe/ql_inline.h
/freebsd-11-stable/sys/dev/qlxgbe/ql_ioctl.c
/freebsd-11-stable/sys/dev/qlxgbe/ql_ioctl.h
/freebsd-11-stable/sys/dev/qlxgbe/ql_isr.c
/freebsd-11-stable/sys/dev/qlxgbe/ql_misc.c
/freebsd-11-stable/sys/dev/qlxgbe/ql_os.c
/freebsd-11-stable/sys/dev/qlxgbe/ql_os.h
/freebsd-11-stable/sys/dev/qlxgbe/ql_reset.c
/freebsd-11-stable/sys/dev/qlxgbe/ql_tmplt.h
/freebsd-11-stable/sys/dev/qlxgbe/ql_ver.h
/freebsd-11-stable/sys/dev/qlxge/qls_dbg.c
/freebsd-11-stable/sys/dev/qlxge/qls_dbg.h
/freebsd-11-stable/sys/dev/qlxge/qls_def.h
/freebsd-11-stable/sys/dev/qlxge/qls_dump.c
/freebsd-11-stable/sys/dev/qlxge/qls_dump.h
/freebsd-11-stable/sys/dev/qlxge/qls_glbl.h
/freebsd-11-stable/sys/dev/qlxge/qls_hw.c
/freebsd-11-stable/sys/dev/qlxge/qls_hw.h
/freebsd-11-stable/sys/dev/qlxge/qls_inline.h
/freebsd-11-stable/sys/dev/qlxge/qls_ioctl.c
/freebsd-11-stable/sys/dev/qlxge/qls_ioctl.h
/freebsd-11-stable/sys/dev/qlxge/qls_isr.c
/freebsd-11-stable/sys/dev/qlxge/qls_os.c
/freebsd-11-stable/sys/dev/qlxge/qls_os.h
/freebsd-11-stable/sys/dev/qlxge/qls_ver.h
/freebsd-11-stable/sys/dev/quicc/quicc_bfe.h
/freebsd-11-stable/sys/dev/quicc/quicc_bfe_fdt.c
/freebsd-11-stable/sys/dev/quicc/quicc_bus.h
/freebsd-11-stable/sys/dev/quicc/quicc_core.c
/freebsd-11-stable/sys/dev/rc/rc.c
/freebsd-11-stable/sys/dev/rc/rcreg.h
/freebsd-11-stable/sys/dev/re/if_re.c
/freebsd-11-stable/sys/dev/rndtest/rndtest.c
/freebsd-11-stable/sys/dev/rndtest/rndtest.h
/freebsd-11-stable/sys/dev/rp/rp.c
/freebsd-11-stable/sys/dev/rp/rp_isa.c
/freebsd-11-stable/sys/dev/rp/rp_pci.c
/freebsd-11-stable/sys/dev/rp/rpreg.h
/freebsd-11-stable/sys/dev/rp/rpvar.h
/freebsd-11-stable/sys/dev/rt/if_rt.c
/freebsd-11-stable/sys/dev/rt/if_rtreg.h
/freebsd-11-stable/sys/dev/rt/if_rtvar.h
/freebsd-11-stable/sys/dev/safe/safe.c
/freebsd-11-stable/sys/dev/safe/safereg.h
/freebsd-11-stable/sys/dev/safe/safevar.h
/freebsd-11-stable/sys/dev/scc/scc_bfe.h
/freebsd-11-stable/sys/dev/scc/scc_bfe_ebus.c
/freebsd-11-stable/sys/dev/scc/scc_bfe_macio.c
/freebsd-11-stable/sys/dev/scc/scc_bfe_quicc.c
/freebsd-11-stable/sys/dev/scc/scc_bfe_sbus.c
/freebsd-11-stable/sys/dev/scc/scc_bus.h
/freebsd-11-stable/sys/dev/scc/scc_core.c
/freebsd-11-stable/sys/dev/scc/scc_dev_quicc.c
/freebsd-11-stable/sys/dev/scc/scc_dev_sab82532.c
/freebsd-11-stable/sys/dev/scc/scc_dev_z8530.c
/freebsd-11-stable/sys/dev/sdhci/sdhci.c
/freebsd-11-stable/sys/dev/sdhci/sdhci.h
/freebsd-11-stable/sys/dev/sdhci/sdhci_fdt.c
/freebsd-11-stable/sys/dev/sdhci/sdhci_pci.c
/freebsd-11-stable/sys/dev/sec/sec.c
/freebsd-11-stable/sys/dev/sec/sec.h
/freebsd-11-stable/sys/dev/sf/if_sf.c
/freebsd-11-stable/sys/dev/sf/if_sfreg.h
/freebsd-11-stable/sys/dev/sfxge/common/efsys.h
/freebsd-11-stable/sys/dev/sfxge/common/efx.h
/freebsd-11-stable/sys/dev/sfxge/common/efx_bootcfg.c
/freebsd-11-stable/sys/dev/sfxge/common/efx_ev.c
/freebsd-11-stable/sys/dev/sfxge/common/efx_filter.c
/freebsd-11-stable/sys/dev/sfxge/common/efx_impl.h
/freebsd-11-stable/sys/dev/sfxge/common/efx_intr.c
/freebsd-11-stable/sys/dev/sfxge/common/efx_mac.c
/freebsd-11-stable/sys/dev/sfxge/common/efx_mcdi.c
/freebsd-11-stable/sys/dev/sfxge/common/efx_mcdi.h
/freebsd-11-stable/sys/dev/sfxge/common/efx_mon.c
/freebsd-11-stable/sys/dev/sfxge/common/efx_nic.c
/freebsd-11-stable/sys/dev/sfxge/common/efx_nvram.c
/freebsd-11-stable/sys/dev/sfxge/common/efx_phy.c
/freebsd-11-stable/sys/dev/sfxge/common/efx_port.c
/freebsd-11-stable/sys/dev/sfxge/common/efx_regs.h
/freebsd-11-stable/sys/dev/sfxge/common/efx_regs_ef10.h
/freebsd-11-stable/sys/dev/sfxge/common/efx_regs_mcdi.h
/freebsd-11-stable/sys/dev/sfxge/common/efx_regs_pci.h
/freebsd-11-stable/sys/dev/sfxge/common/efx_rx.c
/freebsd-11-stable/sys/dev/sfxge/common/efx_sram.c
/freebsd-11-stable/sys/dev/sfxge/common/efx_tx.c
/freebsd-11-stable/sys/dev/sfxge/common/efx_types.h
/freebsd-11-stable/sys/dev/sfxge/common/efx_vpd.c
/freebsd-11-stable/sys/dev/sfxge/common/siena_flash.h
/freebsd-11-stable/sys/dev/sfxge/common/siena_impl.h
/freebsd-11-stable/sys/dev/sfxge/common/siena_mac.c
/freebsd-11-stable/sys/dev/sfxge/common/siena_nic.c
/freebsd-11-stable/sys/dev/sfxge/common/siena_nvram.c
/freebsd-11-stable/sys/dev/sfxge/common/siena_phy.c
/freebsd-11-stable/sys/dev/sfxge/common/siena_sram.c
/freebsd-11-stable/sys/dev/sfxge/common/siena_vpd.c
/freebsd-11-stable/sys/dev/sfxge/sfxge.c
/freebsd-11-stable/sys/dev/sfxge/sfxge.h
/freebsd-11-stable/sys/dev/sfxge/sfxge_dma.c
/freebsd-11-stable/sys/dev/sfxge/sfxge_ev.c
/freebsd-11-stable/sys/dev/sfxge/sfxge_intr.c
/freebsd-11-stable/sys/dev/sfxge/sfxge_mcdi.c
/freebsd-11-stable/sys/dev/sfxge/sfxge_port.c
/freebsd-11-stable/sys/dev/sfxge/sfxge_rx.c
/freebsd-11-stable/sys/dev/sfxge/sfxge_rx.h
/freebsd-11-stable/sys/dev/sfxge/sfxge_tx.c
/freebsd-11-stable/sys/dev/sfxge/sfxge_tx.h
/freebsd-11-stable/sys/dev/sge/if_sge.c
/freebsd-11-stable/sys/dev/sge/if_sgereg.h
/freebsd-11-stable/sys/dev/siba/siba_bwn.c
/freebsd-11-stable/sys/dev/siba/siba_core.c
/freebsd-11-stable/sys/dev/siba/siba_ids.h
/freebsd-11-stable/sys/dev/siba/sibareg.h
/freebsd-11-stable/sys/dev/siba/sibavar.h
/freebsd-11-stable/sys/dev/siis/siis.c
/freebsd-11-stable/sys/dev/siis/siis.h
/freebsd-11-stable/sys/dev/sio/sio.c
/freebsd-11-stable/sys/dev/sio/sio_isa.c
/freebsd-11-stable/sys/dev/sio/sio_pccard.c
/freebsd-11-stable/sys/dev/sio/sio_pci.c
/freebsd-11-stable/sys/dev/sio/sio_puc.c
/freebsd-11-stable/sys/dev/sio/sioreg.h
/freebsd-11-stable/sys/dev/sio/siovar.h
/freebsd-11-stable/sys/dev/sis/if_sis.c
/freebsd-11-stable/sys/dev/sis/if_sisreg.h
/freebsd-11-stable/sys/dev/sk/if_sk.c
/freebsd-11-stable/sys/dev/sk/if_skreg.h
/freebsd-11-stable/sys/dev/sk/xmaciireg.h
/freebsd-11-stable/sys/dev/smbus/smb.c
/freebsd-11-stable/sys/dev/smbus/smb.h
/freebsd-11-stable/sys/dev/smbus/smbconf.c
/freebsd-11-stable/sys/dev/smbus/smbconf.h
/freebsd-11-stable/sys/dev/smbus/smbus.c
/freebsd-11-stable/sys/dev/smbus/smbus.h
/freebsd-11-stable/sys/dev/smc/if_smc.c
/freebsd-11-stable/sys/dev/smc/if_smcreg.h
/freebsd-11-stable/sys/dev/smc/if_smcvar.h
/freebsd-11-stable/sys/dev/sn/if_sn.c
/freebsd-11-stable/sys/dev/sn/if_sn_isa.c
/freebsd-11-stable/sys/dev/sn/if_sn_pccard.c
/freebsd-11-stable/sys/dev/sn/if_snreg.h
/freebsd-11-stable/sys/dev/sn/if_snvar.h
/freebsd-11-stable/sys/dev/sn/ositech.h
/freebsd-11-stable/sys/dev/snp/snp.c
/freebsd-11-stable/sys/dev/sound/chip.h
/freebsd-11-stable/sys/dev/sound/clone.c
/freebsd-11-stable/sys/dev/sound/clone.h
/freebsd-11-stable/sys/dev/sound/driver.c
/freebsd-11-stable/sys/dev/sound/isa/ad1816.c
/freebsd-11-stable/sys/dev/sound/isa/ad1816.h
/freebsd-11-stable/sys/dev/sound/isa/ess.c
/freebsd-11-stable/sys/dev/sound/isa/gusc.c
/freebsd-11-stable/sys/dev/sound/isa/mss.c
/freebsd-11-stable/sys/dev/sound/isa/mss.h
/freebsd-11-stable/sys/dev/sound/isa/sb.h
/freebsd-11-stable/sys/dev/sound/isa/sb16.c
/freebsd-11-stable/sys/dev/sound/isa/sb8.c
/freebsd-11-stable/sys/dev/sound/isa/sbc.c
/freebsd-11-stable/sys/dev/sound/isa/sndbuf_dma.c
/freebsd-11-stable/sys/dev/sound/macio/aoa.c
/freebsd-11-stable/sys/dev/sound/macio/aoa.h
/freebsd-11-stable/sys/dev/sound/macio/davbus.c
/freebsd-11-stable/sys/dev/sound/macio/davbusreg.h
/freebsd-11-stable/sys/dev/sound/macio/i2s.c
/freebsd-11-stable/sys/dev/sound/macio/onyx.c
/freebsd-11-stable/sys/dev/sound/macio/snapper.c
/freebsd-11-stable/sys/dev/sound/macio/tumbler.c
/freebsd-11-stable/sys/dev/sound/midi/midi.c
/freebsd-11-stable/sys/dev/sound/midi/midi.h
/freebsd-11-stable/sys/dev/sound/midi/midiq.h
/freebsd-11-stable/sys/dev/sound/midi/mpu401.c
/freebsd-11-stable/sys/dev/sound/midi/mpu401.h
/freebsd-11-stable/sys/dev/sound/midi/sequencer.c
/freebsd-11-stable/sys/dev/sound/midi/sequencer.h
/freebsd-11-stable/sys/dev/sound/pci/allegro_code.h
/freebsd-11-stable/sys/dev/sound/pci/allegro_reg.h
/freebsd-11-stable/sys/dev/sound/pci/als4000.c
/freebsd-11-stable/sys/dev/sound/pci/als4000.h
/freebsd-11-stable/sys/dev/sound/pci/atiixp.c
/freebsd-11-stable/sys/dev/sound/pci/atiixp.h
/freebsd-11-stable/sys/dev/sound/pci/aureal.c
/freebsd-11-stable/sys/dev/sound/pci/aureal.h
/freebsd-11-stable/sys/dev/sound/pci/cmi.c
/freebsd-11-stable/sys/dev/sound/pci/cmireg.h
/freebsd-11-stable/sys/dev/sound/pci/cs4281.c
/freebsd-11-stable/sys/dev/sound/pci/cs4281.h
/freebsd-11-stable/sys/dev/sound/pci/cs461x_dsp.h
/freebsd-11-stable/sys/dev/sound/pci/csa.c
/freebsd-11-stable/sys/dev/sound/pci/csapcm.c
/freebsd-11-stable/sys/dev/sound/pci/csareg.h
/freebsd-11-stable/sys/dev/sound/pci/csavar.h
/freebsd-11-stable/sys/dev/sound/pci/ds1-fw.h
/freebsd-11-stable/sys/dev/sound/pci/ds1.c
/freebsd-11-stable/sys/dev/sound/pci/emu10k1.c
/freebsd-11-stable/sys/dev/sound/pci/emu10kx-midi.c
/freebsd-11-stable/sys/dev/sound/pci/emu10kx-pcm.c
/freebsd-11-stable/sys/dev/sound/pci/emu10kx.c
/freebsd-11-stable/sys/dev/sound/pci/emu10kx.h
/freebsd-11-stable/sys/dev/sound/pci/envy24.c
/freebsd-11-stable/sys/dev/sound/pci/envy24.h
/freebsd-11-stable/sys/dev/sound/pci/envy24ht.c
/freebsd-11-stable/sys/dev/sound/pci/envy24ht.h
/freebsd-11-stable/sys/dev/sound/pci/es137x.c
/freebsd-11-stable/sys/dev/sound/pci/es137x.h
/freebsd-11-stable/sys/dev/sound/pci/fm801.c
/freebsd-11-stable/sys/dev/sound/pci/hda/hda_reg.h
/freebsd-11-stable/sys/dev/sound/pci/hda/hdaa.c
/freebsd-11-stable/sys/dev/sound/pci/hda/hdaa.h
/freebsd-11-stable/sys/dev/sound/pci/hda/hdaa_patches.c
/freebsd-11-stable/sys/dev/sound/pci/hda/hdac.c
/freebsd-11-stable/sys/dev/sound/pci/hda/hdac.h
/freebsd-11-stable/sys/dev/sound/pci/hda/hdac_private.h
/freebsd-11-stable/sys/dev/sound/pci/hda/hdac_reg.h
/freebsd-11-stable/sys/dev/sound/pci/hda/hdacc.c
/freebsd-11-stable/sys/dev/sound/pci/hdspe-pcm.c
/freebsd-11-stable/sys/dev/sound/pci/hdspe.c
/freebsd-11-stable/sys/dev/sound/pci/hdspe.h
/freebsd-11-stable/sys/dev/sound/pci/ich.c
/freebsd-11-stable/sys/dev/sound/pci/ich.h
/freebsd-11-stable/sys/dev/sound/pci/maestro.c
/freebsd-11-stable/sys/dev/sound/pci/maestro3.c
/freebsd-11-stable/sys/dev/sound/pci/maestro_reg.h
/freebsd-11-stable/sys/dev/sound/pci/neomagic-coeff.h
/freebsd-11-stable/sys/dev/sound/pci/neomagic.c
/freebsd-11-stable/sys/dev/sound/pci/neomagic.h
/freebsd-11-stable/sys/dev/sound/pci/solo.c
/freebsd-11-stable/sys/dev/sound/pci/spicds.c
/freebsd-11-stable/sys/dev/sound/pci/spicds.h
/freebsd-11-stable/sys/dev/sound/pci/t4dwave.c
/freebsd-11-stable/sys/dev/sound/pci/t4dwave.h
/freebsd-11-stable/sys/dev/sound/pci/via8233.c
/freebsd-11-stable/sys/dev/sound/pci/via8233.h
/freebsd-11-stable/sys/dev/sound/pci/via82c686.c
/freebsd-11-stable/sys/dev/sound/pci/via82c686.h
/freebsd-11-stable/sys/dev/sound/pci/vibes.c
/freebsd-11-stable/sys/dev/sound/pci/vibes.h
/freebsd-11-stable/sys/dev/sound/pcm/ac97.c
/freebsd-11-stable/sys/dev/sound/pcm/ac97.h
/freebsd-11-stable/sys/dev/sound/pcm/ac97_patch.c
/freebsd-11-stable/sys/dev/sound/pcm/ac97_patch.h
/freebsd-11-stable/sys/dev/sound/pcm/buffer.c
/freebsd-11-stable/sys/dev/sound/pcm/buffer.h
/freebsd-11-stable/sys/dev/sound/pcm/channel.c
/freebsd-11-stable/sys/dev/sound/pcm/channel.h
/freebsd-11-stable/sys/dev/sound/pcm/dsp.c
/freebsd-11-stable/sys/dev/sound/pcm/dsp.h
/freebsd-11-stable/sys/dev/sound/pcm/feeder.c
/freebsd-11-stable/sys/dev/sound/pcm/feeder.h
/freebsd-11-stable/sys/dev/sound/pcm/feeder_chain.c
/freebsd-11-stable/sys/dev/sound/pcm/feeder_eq.c
/freebsd-11-stable/sys/dev/sound/pcm/feeder_format.c
/freebsd-11-stable/sys/dev/sound/pcm/feeder_matrix.c
/freebsd-11-stable/sys/dev/sound/pcm/feeder_mixer.c
/freebsd-11-stable/sys/dev/sound/pcm/feeder_rate.c
/freebsd-11-stable/sys/dev/sound/pcm/feeder_volume.c
/freebsd-11-stable/sys/dev/sound/pcm/g711.h
/freebsd-11-stable/sys/dev/sound/pcm/intpcm.h
/freebsd-11-stable/sys/dev/sound/pcm/matrix.h
/freebsd-11-stable/sys/dev/sound/pcm/matrix_map.h
/freebsd-11-stable/sys/dev/sound/pcm/mixer.c
/freebsd-11-stable/sys/dev/sound/pcm/mixer.h
/freebsd-11-stable/sys/dev/sound/pcm/pcm.h
/freebsd-11-stable/sys/dev/sound/pcm/sndstat.c
/freebsd-11-stable/sys/dev/sound/pcm/sndstat.h
/freebsd-11-stable/sys/dev/sound/pcm/sound.c
/freebsd-11-stable/sys/dev/sound/pcm/sound.h
/freebsd-11-stable/sys/dev/sound/pcm/vchan.c
/freebsd-11-stable/sys/dev/sound/pcm/vchan.h
/freebsd-11-stable/sys/dev/sound/sbus/apcdmareg.h
/freebsd-11-stable/sys/dev/sound/sbus/cs4231.c
/freebsd-11-stable/sys/dev/sound/sbus/cs4231.h
/freebsd-11-stable/sys/dev/sound/unit.c
/freebsd-11-stable/sys/dev/sound/unit.h
/freebsd-11-stable/sys/dev/sound/usb/uaudio.c
/freebsd-11-stable/sys/dev/sound/usb/uaudio.h
/freebsd-11-stable/sys/dev/sound/usb/uaudio_pcm.c
/freebsd-11-stable/sys/dev/sound/usb/uaudioreg.h
/freebsd-11-stable/sys/dev/sound/version.h
/freebsd-11-stable/sys/dev/spibus/ofw_spibus.c
/freebsd-11-stable/sys/dev/ste/if_ste.c
/freebsd-11-stable/sys/dev/ste/if_stereg.h
/freebsd-11-stable/sys/dev/stg/tmc18c30.c
/freebsd-11-stable/sys/dev/stg/tmc18c30_isa.c
/freebsd-11-stable/sys/dev/stg/tmc18c30_pccard.c
/freebsd-11-stable/sys/dev/stg/tmc18c30_pci.c
/freebsd-11-stable/sys/dev/stg/tmc18c30_subr.c
/freebsd-11-stable/sys/dev/stg/tmc18c30reg.h
/freebsd-11-stable/sys/dev/stg/tmc18c30var.h
/freebsd-11-stable/sys/dev/stge/if_stge.c
/freebsd-11-stable/sys/dev/stge/if_stgereg.h
/freebsd-11-stable/sys/dev/sym/sym_conf.h
/freebsd-11-stable/sys/dev/sym/sym_defs.h
/freebsd-11-stable/sys/dev/sym/sym_fw.h
/freebsd-11-stable/sys/dev/sym/sym_fw1.h
/freebsd-11-stable/sys/dev/sym/sym_fw2.h
/freebsd-11-stable/sys/dev/sym/sym_hipd.c
/freebsd-11-stable/sys/dev/syscons/apm/apm_saver.c
/freebsd-11-stable/sys/dev/syscons/blank/blank_saver.c
/freebsd-11-stable/sys/dev/syscons/daemon/daemon_saver.c
/freebsd-11-stable/sys/dev/syscons/dragon/dragon_saver.c
/freebsd-11-stable/sys/dev/syscons/fade/fade_saver.c
/freebsd-11-stable/sys/dev/syscons/fire/fire_saver.c
/freebsd-11-stable/sys/dev/syscons/green/green_saver.c
/freebsd-11-stable/sys/dev/syscons/logo/logo_saver.c
/freebsd-11-stable/sys/dev/syscons/rain/rain_saver.c
/freebsd-11-stable/sys/dev/syscons/scgfbrndr.c
/freebsd-11-stable/sys/dev/syscons/schistory.c
/freebsd-11-stable/sys/dev/syscons/scmouse.c
/freebsd-11-stable/sys/dev/syscons/scterm-teken.c
/freebsd-11-stable/sys/dev/syscons/scterm.c
/freebsd-11-stable/sys/dev/syscons/scvesactl.c
/freebsd-11-stable/sys/dev/syscons/scvgarndr.c
/freebsd-11-stable/sys/dev/syscons/scvidctl.c
/freebsd-11-stable/sys/dev/syscons/scvtb.c
/freebsd-11-stable/sys/dev/syscons/snake/snake_saver.c
/freebsd-11-stable/sys/dev/syscons/star/star_saver.c
/freebsd-11-stable/sys/dev/syscons/syscons.c
/freebsd-11-stable/sys/dev/syscons/syscons.h
/freebsd-11-stable/sys/dev/syscons/sysmouse.c
/freebsd-11-stable/sys/dev/syscons/warp/warp_saver.c
/freebsd-11-stable/sys/dev/tdfx/tdfx_io.h
/freebsd-11-stable/sys/dev/tdfx/tdfx_linux.c
/freebsd-11-stable/sys/dev/tdfx/tdfx_linux.h
/freebsd-11-stable/sys/dev/tdfx/tdfx_pci.c
/freebsd-11-stable/sys/dev/tdfx/tdfx_pci.h
/freebsd-11-stable/sys/dev/tdfx/tdfx_vars.h
/freebsd-11-stable/sys/dev/terasic/de4led/terasic_de4led.c
/freebsd-11-stable/sys/dev/terasic/de4led/terasic_de4led.h
/freebsd-11-stable/sys/dev/terasic/de4led/terasic_de4led_fdt.c
/freebsd-11-stable/sys/dev/terasic/de4led/terasic_de4led_nexus.c
/freebsd-11-stable/sys/dev/terasic/mtl/terasic_mtl.c
/freebsd-11-stable/sys/dev/terasic/mtl/terasic_mtl.h
/freebsd-11-stable/sys/dev/terasic/mtl/terasic_mtl_fdt.c
/freebsd-11-stable/sys/dev/terasic/mtl/terasic_mtl_nexus.c
/freebsd-11-stable/sys/dev/terasic/mtl/terasic_mtl_pixel.c
/freebsd-11-stable/sys/dev/terasic/mtl/terasic_mtl_reg.c
/freebsd-11-stable/sys/dev/terasic/mtl/terasic_mtl_syscons.c
/freebsd-11-stable/sys/dev/terasic/mtl/terasic_mtl_text.c
/freebsd-11-stable/sys/dev/ti/if_ti.c
/freebsd-11-stable/sys/dev/ti/if_tireg.h
/freebsd-11-stable/sys/dev/tl/if_tl.c
/freebsd-11-stable/sys/dev/tl/if_tlreg.h
/freebsd-11-stable/sys/dev/trm/trm.c
/freebsd-11-stable/sys/dev/trm/trm.h
/freebsd-11-stable/sys/dev/tsec/if_tsec.c
/freebsd-11-stable/sys/dev/tsec/if_tsec.h
/freebsd-11-stable/sys/dev/tsec/if_tsec_fdt.c
/freebsd-11-stable/sys/dev/tsec/if_tsecreg.h
/freebsd-11-stable/sys/dev/twa/tw_cl.h
/freebsd-11-stable/sys/dev/twa/tw_cl_externs.h
/freebsd-11-stable/sys/dev/twa/tw_cl_fwif.h
/freebsd-11-stable/sys/dev/twa/tw_cl_init.c
/freebsd-11-stable/sys/dev/twa/tw_cl_intr.c
/freebsd-11-stable/sys/dev/twa/tw_cl_io.c
/freebsd-11-stable/sys/dev/twa/tw_cl_ioctl.h
/freebsd-11-stable/sys/dev/twa/tw_cl_misc.c
/freebsd-11-stable/sys/dev/twa/tw_cl_share.h
/freebsd-11-stable/sys/dev/twa/tw_osl.h
/freebsd-11-stable/sys/dev/twa/tw_osl_cam.c
/freebsd-11-stable/sys/dev/twa/tw_osl_externs.h
/freebsd-11-stable/sys/dev/twa/tw_osl_freebsd.c
/freebsd-11-stable/sys/dev/twa/tw_osl_includes.h
/freebsd-11-stable/sys/dev/twa/tw_osl_inline.h
/freebsd-11-stable/sys/dev/twa/tw_osl_ioctl.h
/freebsd-11-stable/sys/dev/twa/tw_osl_share.h
/freebsd-11-stable/sys/dev/twa/tw_osl_types.h
/freebsd-11-stable/sys/dev/twe/twe.c
/freebsd-11-stable/sys/dev/twe/twe_compat.h
/freebsd-11-stable/sys/dev/twe/twe_freebsd.c
/freebsd-11-stable/sys/dev/twe/twe_tables.h
/freebsd-11-stable/sys/dev/twe/tweio.h
/freebsd-11-stable/sys/dev/twe/twereg.h
/freebsd-11-stable/sys/dev/twe/twevar.h
/freebsd-11-stable/sys/dev/tws/tws.c
/freebsd-11-stable/sys/dev/tws/tws.h
/freebsd-11-stable/sys/dev/tws/tws_cam.c
/freebsd-11-stable/sys/dev/tws/tws_hdm.c
/freebsd-11-stable/sys/dev/tws/tws_hdm.h
/freebsd-11-stable/sys/dev/tws/tws_services.c
/freebsd-11-stable/sys/dev/tws/tws_services.h
/freebsd-11-stable/sys/dev/tws/tws_user.c
/freebsd-11-stable/sys/dev/tws/tws_user.h
/freebsd-11-stable/sys/dev/tx/if_tx.c
/freebsd-11-stable/sys/dev/tx/if_txreg.h
/freebsd-11-stable/sys/dev/tx/if_txvar.h
/freebsd-11-stable/sys/dev/txp/3c990img.h
/freebsd-11-stable/sys/dev/txp/if_txp.c
/freebsd-11-stable/sys/dev/txp/if_txpreg.h
/freebsd-11-stable/sys/dev/uart/uart.h
/freebsd-11-stable/sys/dev/uart/uart_bus.h
/freebsd-11-stable/sys/dev/uart/uart_bus_acpi.c
/freebsd-11-stable/sys/dev/uart/uart_bus_ebus.c
/freebsd-11-stable/sys/dev/uart/uart_bus_fdt.c
/freebsd-11-stable/sys/dev/uart/uart_bus_isa.c
/freebsd-11-stable/sys/dev/uart/uart_bus_pccard.c
/freebsd-11-stable/sys/dev/uart/uart_bus_pci.c
/freebsd-11-stable/sys/dev/uart/uart_bus_puc.c
/freebsd-11-stable/sys/dev/uart/uart_bus_scc.c
/freebsd-11-stable/sys/dev/uart/uart_core.c
/freebsd-11-stable/sys/dev/uart/uart_cpu.h
/freebsd-11-stable/sys/dev/uart/uart_cpu_fdt.c
/freebsd-11-stable/sys/dev/uart/uart_cpu_powerpc.c
/freebsd-11-stable/sys/dev/uart/uart_cpu_sparc64.c
/freebsd-11-stable/sys/dev/uart/uart_cpu_x86.c
/freebsd-11-stable/sys/dev/uart/uart_dbg.c
/freebsd-11-stable/sys/dev/uart/uart_dev_imx.c
/freebsd-11-stable/sys/dev/uart/uart_dev_lpc.c
/freebsd-11-stable/sys/dev/uart/uart_dev_ns8250.c
/freebsd-11-stable/sys/dev/uart/uart_dev_ns8250.h
/freebsd-11-stable/sys/dev/uart/uart_dev_pl011.c
/freebsd-11-stable/sys/dev/uart/uart_dev_quicc.c
/freebsd-11-stable/sys/dev/uart/uart_dev_sab82532.c
/freebsd-11-stable/sys/dev/uart/uart_dev_ti8250.c
/freebsd-11-stable/sys/dev/uart/uart_dev_z8530.c
/freebsd-11-stable/sys/dev/uart/uart_kbd_sun.c
/freebsd-11-stable/sys/dev/uart/uart_kbd_sun.h
/freebsd-11-stable/sys/dev/uart/uart_subr.c
/freebsd-11-stable/sys/dev/uart/uart_tty.c
/freebsd-11-stable/sys/dev/ubsec/ubsec.c
/freebsd-11-stable/sys/dev/ubsec/ubsecreg.h
/freebsd-11-stable/sys/dev/ubsec/ubsecvar.h
/freebsd-11-stable/sys/dev/usb/controller/at91dci.c
/freebsd-11-stable/sys/dev/usb/controller/at91dci.h
/freebsd-11-stable/sys/dev/usb/controller/at91dci_atmelarm.c
/freebsd-11-stable/sys/dev/usb/controller/at91dci_fdt.c
/freebsd-11-stable/sys/dev/usb/controller/atmegadci.c
/freebsd-11-stable/sys/dev/usb/controller/atmegadci.h
/freebsd-11-stable/sys/dev/usb/controller/atmegadci_atmelarm.c
/freebsd-11-stable/sys/dev/usb/controller/avr32dci.c
/freebsd-11-stable/sys/dev/usb/controller/avr32dci.h
/freebsd-11-stable/sys/dev/usb/controller/dwc_otg.c
/freebsd-11-stable/sys/dev/usb/controller/dwc_otg.h
/freebsd-11-stable/sys/dev/usb/controller/dwc_otg_fdt.c
/freebsd-11-stable/sys/dev/usb/controller/dwc_otgreg.h
/freebsd-11-stable/sys/dev/usb/controller/ehci.c
/freebsd-11-stable/sys/dev/usb/controller/ehci.h
/freebsd-11-stable/sys/dev/usb/controller/ehci_fsl.c
/freebsd-11-stable/sys/dev/usb/controller/ehci_imx.c
/freebsd-11-stable/sys/dev/usb/controller/ehci_ixp4xx.c
/freebsd-11-stable/sys/dev/usb/controller/ehci_mv.c
/freebsd-11-stable/sys/dev/usb/controller/ehci_pci.c
/freebsd-11-stable/sys/dev/usb/controller/ehcireg.h
/freebsd-11-stable/sys/dev/usb/controller/musb_otg.c
/freebsd-11-stable/sys/dev/usb/controller/musb_otg.h
/freebsd-11-stable/sys/dev/usb/controller/musb_otg_atmelarm.c
/freebsd-11-stable/sys/dev/usb/controller/ohci.c
/freebsd-11-stable/sys/dev/usb/controller/ohci.h
/freebsd-11-stable/sys/dev/usb/controller/ohci_pci.c
/freebsd-11-stable/sys/dev/usb/controller/ohci_s3c24x0.c
/freebsd-11-stable/sys/dev/usb/controller/ohcireg.h
/freebsd-11-stable/sys/dev/usb/controller/uhci.c
/freebsd-11-stable/sys/dev/usb/controller/uhci.h
/freebsd-11-stable/sys/dev/usb/controller/uhci_pci.c
/freebsd-11-stable/sys/dev/usb/controller/uhcireg.h
/freebsd-11-stable/sys/dev/usb/controller/usb_controller.c
/freebsd-11-stable/sys/dev/usb/controller/uss820dci.c
/freebsd-11-stable/sys/dev/usb/controller/uss820dci.h
/freebsd-11-stable/sys/dev/usb/controller/uss820dci_atmelarm.c
/freebsd-11-stable/sys/dev/usb/controller/xhci.c
/freebsd-11-stable/sys/dev/usb/controller/xhci.h
/freebsd-11-stable/sys/dev/usb/controller/xhci_pci.c
/freebsd-11-stable/sys/dev/usb/controller/xhcireg.h
/freebsd-11-stable/sys/dev/usb/gadget/g_audio.c
/freebsd-11-stable/sys/dev/usb/gadget/g_audio.h
/freebsd-11-stable/sys/dev/usb/gadget/g_keyboard.c
/freebsd-11-stable/sys/dev/usb/gadget/g_keyboard.h
/freebsd-11-stable/sys/dev/usb/gadget/g_modem.c
/freebsd-11-stable/sys/dev/usb/gadget/g_modem.h
/freebsd-11-stable/sys/dev/usb/gadget/g_mouse.c
/freebsd-11-stable/sys/dev/usb/gadget/g_mouse.h
/freebsd-11-stable/sys/dev/usb/input/atp.c
/freebsd-11-stable/sys/dev/usb/input/uep.c
/freebsd-11-stable/sys/dev/usb/input/uhid.c
/freebsd-11-stable/sys/dev/usb/input/ukbd.c
/freebsd-11-stable/sys/dev/usb/input/ums.c
/freebsd-11-stable/sys/dev/usb/input/usb_rdesc.h
/freebsd-11-stable/sys/dev/usb/input/wsp.c
/freebsd-11-stable/sys/dev/usb/misc/udbp.c
/freebsd-11-stable/sys/dev/usb/misc/ufm.c
/freebsd-11-stable/sys/dev/usb/net/if_aue.c
/freebsd-11-stable/sys/dev/usb/net/if_auereg.h
/freebsd-11-stable/sys/dev/usb/net/if_axe.c
/freebsd-11-stable/sys/dev/usb/net/if_axereg.h
/freebsd-11-stable/sys/dev/usb/net/if_axge.c
/freebsd-11-stable/sys/dev/usb/net/if_axgereg.h
/freebsd-11-stable/sys/dev/usb/net/if_cdce.c
/freebsd-11-stable/sys/dev/usb/net/if_cdcereg.h
/freebsd-11-stable/sys/dev/usb/net/if_cue.c
/freebsd-11-stable/sys/dev/usb/net/if_cuereg.h
/freebsd-11-stable/sys/dev/usb/net/if_ipheth.c
/freebsd-11-stable/sys/dev/usb/net/if_iphethvar.h
/freebsd-11-stable/sys/dev/usb/net/if_kue.c
/freebsd-11-stable/sys/dev/usb/net/if_kuefw.h
/freebsd-11-stable/sys/dev/usb/net/if_kuereg.h
/freebsd-11-stable/sys/dev/usb/net/if_mos.c
/freebsd-11-stable/sys/dev/usb/net/if_mosreg.h
/freebsd-11-stable/sys/dev/usb/net/if_rue.c
/freebsd-11-stable/sys/dev/usb/net/if_ruereg.h
/freebsd-11-stable/sys/dev/usb/net/if_smsc.c
/freebsd-11-stable/sys/dev/usb/net/if_smscreg.h
/freebsd-11-stable/sys/dev/usb/net/if_udav.c
/freebsd-11-stable/sys/dev/usb/net/if_udavreg.h
/freebsd-11-stable/sys/dev/usb/net/if_usie.c
/freebsd-11-stable/sys/dev/usb/net/if_usievar.h
/freebsd-11-stable/sys/dev/usb/net/ruephy.c
/freebsd-11-stable/sys/dev/usb/net/ruephyreg.h
/freebsd-11-stable/sys/dev/usb/net/uhso.c
/freebsd-11-stable/sys/dev/usb/net/usb_ethernet.c
/freebsd-11-stable/sys/dev/usb/net/usb_ethernet.h
/freebsd-11-stable/sys/dev/usb/quirk/usb_quirk.c
/freebsd-11-stable/sys/dev/usb/quirk/usb_quirk.h
/freebsd-11-stable/sys/dev/usb/serial/ubsa.c
/freebsd-11-stable/sys/dev/usb/serial/ubser.c
/freebsd-11-stable/sys/dev/usb/serial/uchcom.c
/freebsd-11-stable/sys/dev/usb/serial/ucycom.c
/freebsd-11-stable/sys/dev/usb/serial/ufoma.c
/freebsd-11-stable/sys/dev/usb/serial/uftdi.c
/freebsd-11-stable/sys/dev/usb/serial/ugensa.c
/freebsd-11-stable/sys/dev/usb/serial/uipaq.c
/freebsd-11-stable/sys/dev/usb/serial/ulpt.c
/freebsd-11-stable/sys/dev/usb/serial/umcs.c
/freebsd-11-stable/sys/dev/usb/serial/umcs.h
/freebsd-11-stable/sys/dev/usb/serial/umct.c
/freebsd-11-stable/sys/dev/usb/serial/umodem.c
/freebsd-11-stable/sys/dev/usb/serial/uplcom.c
/freebsd-11-stable/sys/dev/usb/serial/usb_serial.c
/freebsd-11-stable/sys/dev/usb/serial/usb_serial.h
/freebsd-11-stable/sys/dev/usb/serial/uvisor.c
/freebsd-11-stable/sys/dev/usb/serial/uvscom.c
/freebsd-11-stable/sys/dev/usb/storage/umass.c
/freebsd-11-stable/sys/dev/usb/storage/urio.c
/freebsd-11-stable/sys/dev/usb/storage/ustorage_fs.c
/freebsd-11-stable/sys/dev/usb/template/usb_template.c
/freebsd-11-stable/sys/dev/usb/template/usb_template.h
/freebsd-11-stable/sys/dev/usb/template/usb_template_audio.c
/freebsd-11-stable/sys/dev/usb/template/usb_template_cdce.c
/freebsd-11-stable/sys/dev/usb/template/usb_template_kbd.c
/freebsd-11-stable/sys/dev/usb/template/usb_template_modem.c
/freebsd-11-stable/sys/dev/usb/template/usb_template_mouse.c
/freebsd-11-stable/sys/dev/usb/template/usb_template_msc.c
/freebsd-11-stable/sys/dev/usb/template/usb_template_mtp.c
/freebsd-11-stable/sys/dev/usb/ufm_ioctl.h
/freebsd-11-stable/sys/dev/usb/usb.h
/freebsd-11-stable/sys/dev/usb/usb_bus.h
/freebsd-11-stable/sys/dev/usb/usb_busdma.c
/freebsd-11-stable/sys/dev/usb/usb_busdma.h
/freebsd-11-stable/sys/dev/usb/usb_cdc.h
/freebsd-11-stable/sys/dev/usb/usb_controller.h
/freebsd-11-stable/sys/dev/usb/usb_core.c
/freebsd-11-stable/sys/dev/usb/usb_core.h
/freebsd-11-stable/sys/dev/usb/usb_debug.c
/freebsd-11-stable/sys/dev/usb/usb_debug.h
/freebsd-11-stable/sys/dev/usb/usb_dev.c
/freebsd-11-stable/sys/dev/usb/usb_dev.h
/freebsd-11-stable/sys/dev/usb/usb_device.c
/freebsd-11-stable/sys/dev/usb/usb_device.h
/freebsd-11-stable/sys/dev/usb/usb_dynamic.c
/freebsd-11-stable/sys/dev/usb/usb_dynamic.h
/freebsd-11-stable/sys/dev/usb/usb_endian.h
/freebsd-11-stable/sys/dev/usb/usb_error.c
/freebsd-11-stable/sys/dev/usb/usb_freebsd.h
/freebsd-11-stable/sys/dev/usb/usb_freebsd_loader.h
/freebsd-11-stable/sys/dev/usb/usb_generic.c
/freebsd-11-stable/sys/dev/usb/usb_generic.h
/freebsd-11-stable/sys/dev/usb/usb_handle_request.c
/freebsd-11-stable/sys/dev/usb/usb_hid.c
/freebsd-11-stable/sys/dev/usb/usb_hub.c
/freebsd-11-stable/sys/dev/usb/usb_hub.h
/freebsd-11-stable/sys/dev/usb/usb_ioctl.h
/freebsd-11-stable/sys/dev/usb/usb_lookup.c
/freebsd-11-stable/sys/dev/usb/usb_mbuf.c
/freebsd-11-stable/sys/dev/usb/usb_mbuf.h
/freebsd-11-stable/sys/dev/usb/usb_msctest.c
/freebsd-11-stable/sys/dev/usb/usb_msctest.h
/freebsd-11-stable/sys/dev/usb/usb_parse.c
/freebsd-11-stable/sys/dev/usb/usb_pci.h
/freebsd-11-stable/sys/dev/usb/usb_pf.c
/freebsd-11-stable/sys/dev/usb/usb_pf.h
/freebsd-11-stable/sys/dev/usb/usb_process.c
/freebsd-11-stable/sys/dev/usb/usb_process.h
/freebsd-11-stable/sys/dev/usb/usb_request.c
/freebsd-11-stable/sys/dev/usb/usb_request.h
/freebsd-11-stable/sys/dev/usb/usb_transfer.c
/freebsd-11-stable/sys/dev/usb/usb_transfer.h
/freebsd-11-stable/sys/dev/usb/usb_util.c
/freebsd-11-stable/sys/dev/usb/usb_util.h
/freebsd-11-stable/sys/dev/usb/usbdi.h
/freebsd-11-stable/sys/dev/usb/usbdi_util.h
/freebsd-11-stable/sys/dev/usb/usbhid.h
/freebsd-11-stable/sys/dev/usb/wlan/if_uath.c
/freebsd-11-stable/sys/dev/usb/wlan/if_zydfw.h
/freebsd-11-stable/sys/dev/vge/if_vge.c
/freebsd-11-stable/sys/dev/vge/if_vgereg.h
/freebsd-11-stable/sys/dev/vge/if_vgevar.h
/freebsd-11-stable/sys/dev/viawd/viawd.c
/freebsd-11-stable/sys/dev/viawd/viawd.h
/freebsd-11-stable/sys/dev/virtio/balloon/virtio_balloon.c
/freebsd-11-stable/sys/dev/virtio/balloon/virtio_balloon.h
/freebsd-11-stable/sys/dev/virtio/block/virtio_blk.c
/freebsd-11-stable/sys/dev/virtio/block/virtio_blk.h
/freebsd-11-stable/sys/dev/virtio/network/if_vtnet.c
/freebsd-11-stable/sys/dev/virtio/network/if_vtnetvar.h
/freebsd-11-stable/sys/dev/virtio/network/virtio_net.h
/freebsd-11-stable/sys/dev/virtio/pci/virtio_pci.c
/freebsd-11-stable/sys/dev/virtio/pci/virtio_pci.h
/freebsd-11-stable/sys/dev/virtio/random/virtio_random.c
/freebsd-11-stable/sys/dev/virtio/scsi/virtio_scsi.c
/freebsd-11-stable/sys/dev/virtio/scsi/virtio_scsi.h
/freebsd-11-stable/sys/dev/virtio/scsi/virtio_scsivar.h
/freebsd-11-stable/sys/dev/virtio/virtio.c
/freebsd-11-stable/sys/dev/virtio/virtio.h
/freebsd-11-stable/sys/dev/virtio/virtio_ring.h
/freebsd-11-stable/sys/dev/virtio/virtqueue.c
/freebsd-11-stable/sys/dev/virtio/virtqueue.h
/freebsd-11-stable/sys/dev/vkbd/vkbd.c
/freebsd-11-stable/sys/dev/vkbd/vkbd_var.h
/freebsd-11-stable/sys/dev/vr/if_vr.c
/freebsd-11-stable/sys/dev/vr/if_vrreg.h
/freebsd-11-stable/sys/dev/vt/colors/vt_termcolors.c
/freebsd-11-stable/sys/dev/vt/colors/vt_termcolors.h
/freebsd-11-stable/sys/dev/vt/font/vt_font_default.c
/freebsd-11-stable/sys/dev/vt/font/vt_mouse_cursor.c
/freebsd-11-stable/sys/dev/vt/hw/efifb/efifb.c
/freebsd-11-stable/sys/dev/vt/hw/fb/vt_early_fb.c
/freebsd-11-stable/sys/dev/vt/hw/fb/vt_fb.c
/freebsd-11-stable/sys/dev/vt/hw/fb/vt_fb.h
/freebsd-11-stable/sys/dev/vt/hw/ofwfb/ofwfb.c
/freebsd-11-stable/sys/dev/vt/logo/logo_freebsd.c
/freebsd-11-stable/sys/dev/vt/vt.h
/freebsd-11-stable/sys/dev/vt/vt_buf.c
/freebsd-11-stable/sys/dev/vt/vt_consolectl.c
/freebsd-11-stable/sys/dev/vt/vt_core.c
/freebsd-11-stable/sys/dev/vt/vt_font.c
/freebsd-11-stable/sys/dev/vt/vt_sysmouse.c
/freebsd-11-stable/sys/dev/vte/if_vte.c
/freebsd-11-stable/sys/dev/vte/if_vtereg.h
/freebsd-11-stable/sys/dev/vte/if_vtevar.h
/freebsd-11-stable/sys/dev/vx/if_vx.c
/freebsd-11-stable/sys/dev/vx/if_vx_pci.c
/freebsd-11-stable/sys/dev/vx/if_vxreg.h
/freebsd-11-stable/sys/dev/vx/if_vxvar.h
/freebsd-11-stable/sys/dev/vxge/include/vxge-debug.h
/freebsd-11-stable/sys/dev/vxge/include/vxge-defs.h
/freebsd-11-stable/sys/dev/vxge/include/vxge-list.h
/freebsd-11-stable/sys/dev/vxge/include/vxge-os-debug.h
/freebsd-11-stable/sys/dev/vxge/include/vxge-os-pal.h
/freebsd-11-stable/sys/dev/vxge/include/vxge-queue.h
/freebsd-11-stable/sys/dev/vxge/include/vxgehal-config.h
/freebsd-11-stable/sys/dev/vxge/include/vxgehal-ll.h
/freebsd-11-stable/sys/dev/vxge/include/vxgehal-mgmt.h
/freebsd-11-stable/sys/dev/vxge/include/vxgehal-mgmtaux.h
/freebsd-11-stable/sys/dev/vxge/include/vxgehal-stats.h
/freebsd-11-stable/sys/dev/vxge/include/vxgehal-status.h
/freebsd-11-stable/sys/dev/vxge/include/vxgehal-types.h
/freebsd-11-stable/sys/dev/vxge/include/vxgehal-version.h
/freebsd-11-stable/sys/dev/vxge/vxge-firmware.h
/freebsd-11-stable/sys/dev/vxge/vxge-osdep.h
/freebsd-11-stable/sys/dev/vxge/vxge.c
/freebsd-11-stable/sys/dev/vxge/vxge.h
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxge-queue.c
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-blockpool.c
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-blockpool.h
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-channel.c
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-channel.h
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-common-reg.h
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-config-priv.h
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-config.c
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-debug.h
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-device.c
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-device.h
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-doorbells.c
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-doorbells.h
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-driver.c
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-driver.h
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-fifo.c
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-fifo.h
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-ifmsg.c
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-ifmsg.h
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-legacy-reg.h
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-memrepair-reg.h
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-mgmt.c
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-mgmtaux.c
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-mm.c
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-mm.h
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-mrpcim-reg.h
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-mrpcim.c
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-mrpcim.h
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-pcicfgmgmt-reg.h
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-regdefs.h
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-regs.h
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-ring.c
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-ring.h
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-srpcim-reg.h
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-srpcim.c
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-srpcim.h
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-swapper.c
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-swapper.h
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-toc-reg.h
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-virtualpath.c
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-virtualpath.h
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-vpath-reg.h
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-vpmgmt-reg.h
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal.h
/freebsd-11-stable/sys/dev/vxge/vxgell-version.h
/freebsd-11-stable/sys/dev/watchdog/watchdog.c
/freebsd-11-stable/sys/dev/wb/if_wb.c
/freebsd-11-stable/sys/dev/wb/if_wbreg.h
/freebsd-11-stable/sys/dev/wbwd/wbwd.c
/freebsd-11-stable/sys/dev/wi/if_wavelan_ieee.h
/freebsd-11-stable/sys/dev/wi/if_wi_macio.c
/freebsd-11-stable/sys/dev/wi/if_wi_pccard.c
/freebsd-11-stable/sys/dev/wi/if_wi_pci.c
/freebsd-11-stable/sys/dev/wi/if_wireg.h
/freebsd-11-stable/sys/dev/wi/if_wivar.h
/freebsd-11-stable/sys/dev/wtap/if_medium.c
/freebsd-11-stable/sys/dev/wtap/if_medium.h
/freebsd-11-stable/sys/dev/wtap/if_wtap.c
/freebsd-11-stable/sys/dev/wtap/if_wtap_module.c
/freebsd-11-stable/sys/dev/wtap/if_wtapioctl.h
/freebsd-11-stable/sys/dev/wtap/if_wtapvar.h
/freebsd-11-stable/sys/dev/wtap/plugins/visibility.c
/freebsd-11-stable/sys/dev/wtap/plugins/visibility.h
/freebsd-11-stable/sys/dev/wtap/plugins/visibility_ioctl.h
/freebsd-11-stable/sys/dev/wtap/plugins/wtap_plugin.h
/freebsd-11-stable/sys/dev/wtap/wtap_hal/hal.c
/freebsd-11-stable/sys/dev/wtap/wtap_hal/hal.h
/freebsd-11-stable/sys/dev/wtap/wtap_hal/handler.h
/freebsd-11-stable/sys/dev/xe/if_xe.c
/freebsd-11-stable/sys/dev/xe/if_xe_pccard.c
/freebsd-11-stable/sys/dev/xe/if_xereg.h
/freebsd-11-stable/sys/dev/xe/if_xevar.h
/freebsd-11-stable/sys/dev/xen/blkback/blkback.c
/freebsd-11-stable/sys/dev/xen/control/control.c
/freebsd-11-stable/sys/dev/xen/netback/netback.c
/freebsd-11-stable/sys/dev/xen/netback/netback_unit_tests.c
/freebsd-11-stable/sys/dev/xen/netfront/netfront.c
/freebsd-11-stable/sys/dev/xen/pcifront/pcifront.c
/freebsd-11-stable/sys/dev/xen/timer/timer.c
/freebsd-11-stable/sys/dev/xen/timer/timer.h
/freebsd-11-stable/sys/dev/xen/xenpci/xenpci.c
/freebsd-11-stable/sys/dev/xen/xenpci/xenpcivar.h
/freebsd-11-stable/sys/dev/xl/if_xl.c
/freebsd-11-stable/sys/dev/xl/if_xlreg.h
/freebsd-11-stable/sys/dev/xl/xlphy.c
/freebsd-11-stable/sys/fs/cd9660/cd9660_bmap.c
/freebsd-11-stable/sys/fs/cd9660/cd9660_lookup.c
/freebsd-11-stable/sys/fs/cd9660/cd9660_mount.h
/freebsd-11-stable/sys/fs/cd9660/cd9660_node.c
/freebsd-11-stable/sys/fs/cd9660/cd9660_node.h
/freebsd-11-stable/sys/fs/cd9660/cd9660_rrip.c
/freebsd-11-stable/sys/fs/cd9660/cd9660_rrip.h
/freebsd-11-stable/sys/fs/cd9660/cd9660_util.c
/freebsd-11-stable/sys/fs/cd9660/cd9660_vfsops.c
/freebsd-11-stable/sys/fs/cd9660/cd9660_vnops.c
/freebsd-11-stable/sys/fs/cd9660/iso.h
/freebsd-11-stable/sys/fs/cd9660/iso_rrip.h
/freebsd-11-stable/sys/fs/deadfs/dead_vnops.c
/freebsd-11-stable/sys/fs/ext2fs/ext2_alloc.c
/freebsd-11-stable/sys/fs/ext2fs/ext2_balloc.c
/freebsd-11-stable/sys/fs/ext2fs/ext2_bmap.c
/freebsd-11-stable/sys/fs/ext2fs/ext2_extern.h
/freebsd-11-stable/sys/fs/ext2fs/ext2_inode.c
/freebsd-11-stable/sys/fs/ext2fs/ext2_lookup.c
/freebsd-11-stable/sys/fs/ext2fs/ext2_mount.h
/freebsd-11-stable/sys/fs/ext2fs/ext2_subr.c
/freebsd-11-stable/sys/fs/ext2fs/ext2_vfsops.c
/freebsd-11-stable/sys/fs/ext2fs/ext2_vnops.c
/freebsd-11-stable/sys/fs/ext2fs/fs.h
/freebsd-11-stable/sys/fs/ext2fs/inode.h
/freebsd-11-stable/sys/fs/fdescfs/fdesc.h
/freebsd-11-stable/sys/fs/fdescfs/fdesc_vfsops.c
/freebsd-11-stable/sys/fs/fdescfs/fdesc_vnops.c
/freebsd-11-stable/sys/fs/fifofs/fifo_vnops.c
/freebsd-11-stable/sys/fs/fuse/fuse.h
/freebsd-11-stable/sys/fs/fuse/fuse_debug.h
/freebsd-11-stable/sys/fs/fuse/fuse_device.c
/freebsd-11-stable/sys/fs/fuse/fuse_file.c
/freebsd-11-stable/sys/fs/fuse/fuse_file.h
/freebsd-11-stable/sys/fs/fuse/fuse_internal.c
/freebsd-11-stable/sys/fs/fuse/fuse_internal.h
/freebsd-11-stable/sys/fs/fuse/fuse_io.c
/freebsd-11-stable/sys/fs/fuse/fuse_io.h
/freebsd-11-stable/sys/fs/fuse/fuse_ipc.c
/freebsd-11-stable/sys/fs/fuse/fuse_ipc.h
/freebsd-11-stable/sys/fs/fuse/fuse_kernel.h
/freebsd-11-stable/sys/fs/fuse/fuse_main.c
/freebsd-11-stable/sys/fs/fuse/fuse_node.c
/freebsd-11-stable/sys/fs/fuse/fuse_node.h
/freebsd-11-stable/sys/fs/fuse/fuse_param.h
/freebsd-11-stable/sys/fs/fuse/fuse_vfsops.c
/freebsd-11-stable/sys/fs/fuse/fuse_vnops.c
/freebsd-11-stable/sys/fs/nfs/nfs.h
/freebsd-11-stable/sys/fs/nfs/nfs_commonkrpc.c
/freebsd-11-stable/sys/fs/nfs/nfs_commonport.c
/freebsd-11-stable/sys/fs/nfs/nfs_commonsubs.c
/freebsd-11-stable/sys/fs/nfs/nfs_var.h
/freebsd-11-stable/sys/fs/nfs/nfsm_subs.h
/freebsd-11-stable/sys/fs/nfs/nfsport.h
/freebsd-11-stable/sys/fs/nfs/nfsproto.h
/freebsd-11-stable/sys/fs/nfs/nfsrvcache.h
/freebsd-11-stable/sys/fs/nfs/rpcv2.h
/freebsd-11-stable/sys/fs/nfs/xdr_subs.h
/freebsd-11-stable/sys/fs/nfsclient/nfs.h
/freebsd-11-stable/sys/fs/nfsclient/nfs_clbio.c
/freebsd-11-stable/sys/fs/nfsclient/nfs_clcomsubs.c
/freebsd-11-stable/sys/fs/nfsclient/nfs_clkrpc.c
/freebsd-11-stable/sys/fs/nfsclient/nfs_clnfsiod.c
/freebsd-11-stable/sys/fs/nfsclient/nfs_clnode.c
/freebsd-11-stable/sys/fs/nfsclient/nfs_clport.c
/freebsd-11-stable/sys/fs/nfsclient/nfs_clrpcops.c
/freebsd-11-stable/sys/fs/nfsclient/nfs_clsubs.c
/freebsd-11-stable/sys/fs/nfsclient/nfs_clvfsops.c
/freebsd-11-stable/sys/fs/nfsclient/nfs_clvnops.c
/freebsd-11-stable/sys/fs/nfsclient/nfsmount.h
/freebsd-11-stable/sys/fs/nfsclient/nfsnode.h
/freebsd-11-stable/sys/fs/nfsserver/nfs_nfsdcache.c
/freebsd-11-stable/sys/fs/nfsserver/nfs_nfsdkrpc.c
/freebsd-11-stable/sys/fs/nfsserver/nfs_nfsdport.c
/freebsd-11-stable/sys/fs/nfsserver/nfs_nfsdserv.c
/freebsd-11-stable/sys/fs/nfsserver/nfs_nfsdsocket.c
/freebsd-11-stable/sys/fs/nfsserver/nfs_nfsdsubs.c
/freebsd-11-stable/sys/fs/nullfs/null.h
/freebsd-11-stable/sys/fs/nullfs/null_subr.c
/freebsd-11-stable/sys/fs/nullfs/null_vfsops.c
/freebsd-11-stable/sys/fs/nullfs/null_vnops.c
/freebsd-11-stable/sys/fs/procfs/procfs.c
/freebsd-11-stable/sys/fs/procfs/procfs.h
/freebsd-11-stable/sys/fs/procfs/procfs_dbregs.c
/freebsd-11-stable/sys/fs/procfs/procfs_fpregs.c
/freebsd-11-stable/sys/fs/procfs/procfs_map.c
/freebsd-11-stable/sys/fs/procfs/procfs_mem.c
/freebsd-11-stable/sys/fs/procfs/procfs_note.c
/freebsd-11-stable/sys/fs/procfs/procfs_osrel.c
/freebsd-11-stable/sys/fs/procfs/procfs_regs.c
/freebsd-11-stable/sys/fs/procfs/procfs_rlimit.c
/freebsd-11-stable/sys/fs/procfs/procfs_status.c
/freebsd-11-stable/sys/fs/procfs/procfs_type.c
/freebsd-11-stable/sys/fs/unionfs/union.h
/freebsd-11-stable/sys/fs/unionfs/union_subr.c
/freebsd-11-stable/sys/fs/unionfs/union_vfsops.c
/freebsd-11-stable/sys/fs/unionfs/union_vnops.c
/freebsd-11-stable/sys/geom/vinum/geom_vinum_share.c
/freebsd-11-stable/sys/geom/vinum/geom_vinum_subr.c
/freebsd-11-stable/sys/geom/vinum/geom_vinum_var.h
/freebsd-11-stable/sys/i386/acpica/acpi_machdep.c
/freebsd-11-stable/sys/i386/bios/smapi.c
/freebsd-11-stable/sys/i386/i386/atomic.c
/freebsd-11-stable/sys/i386/i386/bios.c
/freebsd-11-stable/sys/i386/i386/bpf_jit_machdep.c
/freebsd-11-stable/sys/i386/i386/bpf_jit_machdep.h
/freebsd-11-stable/sys/i386/i386/elf_machdep.c
/freebsd-11-stable/sys/i386/i386/gdb_machdep.c
/freebsd-11-stable/sys/i386/i386/genassym.c
/freebsd-11-stable/sys/i386/i386/geode.c
/freebsd-11-stable/sys/i386/i386/in_cksum.c
/freebsd-11-stable/sys/i386/i386/initcpu.c
/freebsd-11-stable/sys/i386/i386/io.c
/freebsd-11-stable/sys/i386/i386/k6_mem.c
/freebsd-11-stable/sys/i386/i386/longrun.c
/freebsd-11-stable/sys/i386/i386/machdep.c
/freebsd-11-stable/sys/i386/i386/mem.c
/freebsd-11-stable/sys/i386/i386/minidump_machdep.c
/freebsd-11-stable/sys/i386/i386/mp_machdep.c
/freebsd-11-stable/sys/i386/i386/pmap.c
/freebsd-11-stable/sys/i386/i386/ptrace_machdep.c
/freebsd-11-stable/sys/i386/i386/sys_machdep.c
/freebsd-11-stable/sys/i386/i386/trap.c
/freebsd-11-stable/sys/i386/i386/uio_machdep.c
/freebsd-11-stable/sys/i386/i386/vm86.c
/freebsd-11-stable/sys/i386/i386/vm_machdep.c
/freebsd-11-stable/sys/i386/ibcs2/coff.h
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_dirent.h
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_errno.c
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_errno.h
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_fcntl.c
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_fcntl.h
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_ioctl.c
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_ipc.c
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_ipc.h
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_isc.c
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_misc.c
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_mount.h
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_msg.c
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_other.c
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_signal.c
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_signal.h
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_socksys.c
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_socksys.h
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_stat.c
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_stat.h
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_statfs.h
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_stropts.h
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_sysi86.c
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_sysvec.c
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_termios.h
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_time.h
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_types.h
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_unistd.h
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_ustat.h
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_util.c
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_util.h
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_utime.h
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_utsname.h
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_xenix.c
/freebsd-11-stable/sys/i386/ibcs2/imgact_coff.c
/freebsd-11-stable/sys/i386/include/_bus.h
/freebsd-11-stable/sys/i386/include/asm.h
/freebsd-11-stable/sys/i386/include/asmacros.h
/freebsd-11-stable/sys/i386/include/atomic.h
/freebsd-11-stable/sys/i386/include/bootinfo.h
/freebsd-11-stable/sys/i386/include/bus_dma.h
/freebsd-11-stable/sys/i386/include/counter.h
/freebsd-11-stable/sys/i386/include/cpu.h
/freebsd-11-stable/sys/i386/include/cpufunc.h
/freebsd-11-stable/sys/i386/include/cputypes.h
/freebsd-11-stable/sys/i386/include/elan_mmcr.h
/freebsd-11-stable/sys/i386/include/exec.h
/freebsd-11-stable/sys/i386/include/floatingpoint.h
/freebsd-11-stable/sys/i386/include/gdb_machdep.h
/freebsd-11-stable/sys/i386/include/ieeefp.h
/freebsd-11-stable/sys/i386/include/if_wl_wavelan.h
/freebsd-11-stable/sys/i386/include/in_cksum.h
/freebsd-11-stable/sys/i386/include/intr_machdep.h
/freebsd-11-stable/sys/i386/include/ioctl_bt848.h
/freebsd-11-stable/sys/i386/include/ioctl_meteor.h
/freebsd-11-stable/sys/i386/include/iodev.h
/freebsd-11-stable/sys/i386/include/kdb.h
/freebsd-11-stable/sys/i386/include/limits.h
/freebsd-11-stable/sys/i386/include/md_var.h
/freebsd-11-stable/sys/i386/include/memdev.h
/freebsd-11-stable/sys/i386/include/minidump.h
/freebsd-11-stable/sys/i386/include/mp_watchdog.h
/freebsd-11-stable/sys/i386/include/npx.h
/freebsd-11-stable/sys/i386/include/param.h
/freebsd-11-stable/sys/i386/include/pc/bios.h
/freebsd-11-stable/sys/i386/include/pcaudioio.h
/freebsd-11-stable/sys/i386/include/pcb.h
/freebsd-11-stable/sys/i386/include/pcb_ext.h
/freebsd-11-stable/sys/i386/include/pcpu.h
/freebsd-11-stable/sys/i386/include/pmap.h
/freebsd-11-stable/sys/i386/include/pmc_mdep.h
/freebsd-11-stable/sys/i386/include/ppireg.h
/freebsd-11-stable/sys/i386/include/proc.h
/freebsd-11-stable/sys/i386/include/profile.h
/freebsd-11-stable/sys/i386/include/reloc.h
/freebsd-11-stable/sys/i386/include/runq.h
/freebsd-11-stable/sys/i386/include/segments.h
/freebsd-11-stable/sys/i386/include/sf_buf.h
/freebsd-11-stable/sys/i386/include/sigframe.h
/freebsd-11-stable/sys/i386/include/signal.h
/freebsd-11-stable/sys/i386/include/smapi.h
/freebsd-11-stable/sys/i386/include/timerreg.h
/freebsd-11-stable/sys/i386/include/tss.h
/freebsd-11-stable/sys/i386/include/ucontext.h
/freebsd-11-stable/sys/i386/include/varargs.h
/freebsd-11-stable/sys/i386/include/vm.h
/freebsd-11-stable/sys/i386/include/vm86.h
/freebsd-11-stable/sys/i386/include/vmparam.h
/freebsd-11-stable/sys/i386/isa/ccbque.h
/freebsd-11-stable/sys/i386/isa/elink.c
/freebsd-11-stable/sys/i386/isa/elink.h
/freebsd-11-stable/sys/i386/isa/pmtimer.c
/freebsd-11-stable/sys/i386/isa/prof_machdep.c
/freebsd-11-stable/sys/i386/linux/imgact_linux.c
/freebsd-11-stable/sys/i386/linux/linux.h
/freebsd-11-stable/sys/i386/linux/linux_dummy.c
/freebsd-11-stable/sys/i386/linux/linux_machdep.c
/freebsd-11-stable/sys/i386/linux/linux_ptrace.c
/freebsd-11-stable/sys/i386/linux/linux_sysvec.c
/freebsd-11-stable/sys/i386/pci/pci_cfgreg.c
/freebsd-11-stable/sys/i386/pci/pci_pir.c
/freebsd-11-stable/sys/isa/isareg.h
/freebsd-11-stable/sys/isa/pnpreg.h
/freebsd-11-stable/sys/isa/rtc.h
/freebsd-11-stable/sys/kern/init_main.c
/freebsd-11-stable/sys/kern/kern_acct.c
/freebsd-11-stable/sys/kern/kern_clock.c
/freebsd-11-stable/sys/kern/kern_cons.c
/freebsd-11-stable/sys/kern/kern_descrip.c
/freebsd-11-stable/sys/kern/kern_exit.c
/freebsd-11-stable/sys/kern/kern_fork.c
/freebsd-11-stable/sys/kern/kern_ktrace.c
/freebsd-11-stable/sys/kern/kern_lockf.c
/freebsd-11-stable/sys/kern/kern_malloc.c
/freebsd-11-stable/sys/kern/kern_mib.c
/freebsd-11-stable/sys/kern/kern_proc.c
/freebsd-11-stable/sys/kern/kern_prot.c
/freebsd-11-stable/sys/kern/kern_resource.c
/freebsd-11-stable/sys/kern/kern_rmlock.c
/freebsd-11-stable/sys/kern/kern_shutdown.c
/freebsd-11-stable/sys/kern/kern_sig.c
/freebsd-11-stable/sys/kern/kern_synch.c
/freebsd-11-stable/sys/kern/kern_sysctl.c
/freebsd-11-stable/sys/kern/kern_time.c
/freebsd-11-stable/sys/kern/kern_timeout.c
/freebsd-11-stable/sys/kern/kern_xxx.c
/freebsd-11-stable/sys/kern/ksched.c
/freebsd-11-stable/sys/kern/p1003_1b.c
/freebsd-11-stable/sys/kern/posix4_mib.c
/freebsd-11-stable/sys/kern/sched_4bsd.c
/freebsd-11-stable/sys/kern/subr_autoconf.c
/freebsd-11-stable/sys/kern/subr_blist.c
/freebsd-11-stable/sys/kern/subr_clock.c
/freebsd-11-stable/sys/kern/subr_hash.c
/freebsd-11-stable/sys/kern/subr_log.c
/freebsd-11-stable/sys/kern/subr_mchain.c
/freebsd-11-stable/sys/kern/subr_param.c
/freebsd-11-stable/sys/kern/subr_pcpu.c
/freebsd-11-stable/sys/kern/subr_prf.c
/freebsd-11-stable/sys/kern/subr_prof.c
/freebsd-11-stable/sys/kern/subr_rtc.c
/freebsd-11-stable/sys/kern/subr_scanf.c
/freebsd-11-stable/sys/kern/subr_sglist.c
/freebsd-11-stable/sys/kern/subr_syscall.c
/freebsd-11-stable/sys/kern/subr_trap.c
/freebsd-11-stable/sys/kern/subr_uio.c
/freebsd-11-stable/sys/kern/sys_generic.c
/freebsd-11-stable/sys/kern/sys_socket.c
/freebsd-11-stable/sys/kern/tty_compat.c
/freebsd-11-stable/sys/kern/tty_info.c
/freebsd-11-stable/sys/kern/uipc_domain.c
/freebsd-11-stable/sys/kern/uipc_mbuf.c
/freebsd-11-stable/sys/kern/uipc_mbuf2.c
/freebsd-11-stable/sys/kern/uipc_sockbuf.c
/freebsd-11-stable/sys/kern/uipc_socket.c
/freebsd-11-stable/sys/kern/uipc_syscalls.c
/freebsd-11-stable/sys/kern/uipc_usrreq.c
/freebsd-11-stable/sys/kern/vfs_cache.c
/freebsd-11-stable/sys/kern/vfs_cluster.c
/freebsd-11-stable/sys/kern/vfs_default.c
/freebsd-11-stable/sys/kern/vfs_export.c
/freebsd-11-stable/sys/kern/vfs_init.c
/freebsd-11-stable/sys/kern/vfs_lookup.c
/freebsd-11-stable/sys/kern/vfs_mount.c
/freebsd-11-stable/sys/kern/vfs_mountroot.c
/freebsd-11-stable/sys/kern/vfs_subr.c
/freebsd-11-stable/sys/kern/vfs_syscalls.c
/freebsd-11-stable/sys/kern/vfs_vnops.c
/freebsd-11-stable/sys/libkern/arm/muldi3.c
/freebsd-11-stable/sys/libkern/ashldi3.c
/freebsd-11-stable/sys/libkern/ashrdi3.c
/freebsd-11-stable/sys/libkern/bcmp.c
/freebsd-11-stable/sys/libkern/bsearch.c
/freebsd-11-stable/sys/libkern/cmpdi2.c
/freebsd-11-stable/sys/libkern/divdi3.c
/freebsd-11-stable/sys/libkern/ffs.c
/freebsd-11-stable/sys/libkern/ffsl.c
/freebsd-11-stable/sys/libkern/fls.c
/freebsd-11-stable/sys/libkern/flsl.c
/freebsd-11-stable/sys/libkern/flsll.c
/freebsd-11-stable/sys/libkern/fnmatch.c
/freebsd-11-stable/sys/libkern/lshrdi3.c
/freebsd-11-stable/sys/libkern/mcount.c
/freebsd-11-stable/sys/libkern/memchr.c
/freebsd-11-stable/sys/libkern/memcmp.c
/freebsd-11-stable/sys/libkern/moddi3.c
/freebsd-11-stable/sys/libkern/qdivrem.c
/freebsd-11-stable/sys/libkern/qsort.c
/freebsd-11-stable/sys/libkern/quad.h
/freebsd-11-stable/sys/libkern/random.c
/freebsd-11-stable/sys/libkern/scanc.c
/freebsd-11-stable/sys/libkern/strcasecmp.c
/freebsd-11-stable/sys/libkern/strcat.c
/freebsd-11-stable/sys/libkern/strchr.c
/freebsd-11-stable/sys/libkern/strcmp.c
/freebsd-11-stable/sys/libkern/strcpy.c
/freebsd-11-stable/sys/libkern/strncmp.c
/freebsd-11-stable/sys/libkern/strncpy.c
/freebsd-11-stable/sys/libkern/strrchr.c
/freebsd-11-stable/sys/libkern/strsep.c
/freebsd-11-stable/sys/libkern/strstr.c
/freebsd-11-stable/sys/libkern/strtol.c
/freebsd-11-stable/sys/libkern/strtoq.c
/freebsd-11-stable/sys/libkern/strtoul.c
/freebsd-11-stable/sys/libkern/strtouq.c
/freebsd-11-stable/sys/libkern/ucmpdi2.c
/freebsd-11-stable/sys/libkern/udivdi3.c
/freebsd-11-stable/sys/libkern/umoddi3.c
/freebsd-11-stable/sys/mips/adm5120/adm5120_machdep.c
/freebsd-11-stable/sys/mips/adm5120/adm5120reg.h
/freebsd-11-stable/sys/mips/adm5120/admpci.c
/freebsd-11-stable/sys/mips/adm5120/console.c
/freebsd-11-stable/sys/mips/adm5120/if_admsw.c
/freebsd-11-stable/sys/mips/adm5120/if_admswreg.h
/freebsd-11-stable/sys/mips/adm5120/if_admswvar.h
/freebsd-11-stable/sys/mips/adm5120/obio.c
/freebsd-11-stable/sys/mips/adm5120/obiovar.h
/freebsd-11-stable/sys/mips/adm5120/uart_bus_adm5120.c
/freebsd-11-stable/sys/mips/adm5120/uart_cpu_adm5120.c
/freebsd-11-stable/sys/mips/adm5120/uart_dev_adm5120.c
/freebsd-11-stable/sys/mips/adm5120/uart_dev_adm5120.h
/freebsd-11-stable/sys/mips/alchemy/alchemy_machdep.c
/freebsd-11-stable/sys/mips/alchemy/obio.c
/freebsd-11-stable/sys/mips/alchemy/uart_bus_alchemy.c
/freebsd-11-stable/sys/mips/alchemy/uart_cpu_alchemy.c
/freebsd-11-stable/sys/mips/atheros/apb.c
/freebsd-11-stable/sys/mips/atheros/apbvar.h
/freebsd-11-stable/sys/mips/atheros/ar71xx_bus_space_reversed.c
/freebsd-11-stable/sys/mips/atheros/ar71xx_chip.c
/freebsd-11-stable/sys/mips/atheros/ar71xx_chip.h
/freebsd-11-stable/sys/mips/atheros/ar71xx_cpudef.h
/freebsd-11-stable/sys/mips/atheros/ar71xx_ehci.c
/freebsd-11-stable/sys/mips/atheros/ar71xx_fixup.c
/freebsd-11-stable/sys/mips/atheros/ar71xx_fixup.h
/freebsd-11-stable/sys/mips/atheros/ar71xx_gpio.c
/freebsd-11-stable/sys/mips/atheros/ar71xx_gpiovar.h
/freebsd-11-stable/sys/mips/atheros/ar71xx_machdep.c
/freebsd-11-stable/sys/mips/atheros/ar71xx_ohci.c
/freebsd-11-stable/sys/mips/atheros/ar71xx_pci.c
/freebsd-11-stable/sys/mips/atheros/ar71xx_pci_bus_space.c
/freebsd-11-stable/sys/mips/atheros/ar71xx_setup.c
/freebsd-11-stable/sys/mips/atheros/ar71xx_setup.h
/freebsd-11-stable/sys/mips/atheros/ar71xx_spi.c
/freebsd-11-stable/sys/mips/atheros/ar71xx_wdog.c
/freebsd-11-stable/sys/mips/atheros/ar71xxreg.h
/freebsd-11-stable/sys/mips/atheros/ar724x_chip.c
/freebsd-11-stable/sys/mips/atheros/ar724x_chip.h
/freebsd-11-stable/sys/mips/atheros/ar724x_pci.c
/freebsd-11-stable/sys/mips/atheros/ar724xreg.h
/freebsd-11-stable/sys/mips/atheros/ar91xx_chip.c
/freebsd-11-stable/sys/mips/atheros/ar91xx_chip.h
/freebsd-11-stable/sys/mips/atheros/ar91xxreg.h
/freebsd-11-stable/sys/mips/atheros/ar933x_chip.c
/freebsd-11-stable/sys/mips/atheros/ar933x_chip.h
/freebsd-11-stable/sys/mips/atheros/ar933x_uart.h
/freebsd-11-stable/sys/mips/atheros/ar933xreg.h
/freebsd-11-stable/sys/mips/atheros/ar934x_chip.c
/freebsd-11-stable/sys/mips/atheros/ar934x_chip.h
/freebsd-11-stable/sys/mips/atheros/ar934xreg.h
/freebsd-11-stable/sys/mips/atheros/if_arge.c
/freebsd-11-stable/sys/mips/atheros/if_argevar.h
/freebsd-11-stable/sys/mips/atheros/pcf2123_rtc.c
/freebsd-11-stable/sys/mips/atheros/pcf2123reg.h
/freebsd-11-stable/sys/mips/atheros/uart_bus_ar71xx.c
/freebsd-11-stable/sys/mips/atheros/uart_bus_ar933x.c
/freebsd-11-stable/sys/mips/atheros/uart_cpu_ar71xx.c
/freebsd-11-stable/sys/mips/atheros/uart_cpu_ar933x.c
/freebsd-11-stable/sys/mips/atheros/uart_dev_ar933x.c
/freebsd-11-stable/sys/mips/atheros/uart_dev_ar933x.h
/freebsd-11-stable/sys/mips/beri/beri_machdep.c
/freebsd-11-stable/sys/mips/beri/beri_pic.c
/freebsd-11-stable/sys/mips/cavium/ciu.c
/freebsd-11-stable/sys/mips/cavium/cryptocteon/cavium_crypto.c
/freebsd-11-stable/sys/mips/cavium/cvmx_config.h
/freebsd-11-stable/sys/mips/cavium/if_octm.c
/freebsd-11-stable/sys/mips/cavium/obio.c
/freebsd-11-stable/sys/mips/cavium/obiovar.h
/freebsd-11-stable/sys/mips/cavium/octe/cavium-ethernet.h
/freebsd-11-stable/sys/mips/cavium/octe/ethernet-common.c
/freebsd-11-stable/sys/mips/cavium/octe/ethernet-common.h
/freebsd-11-stable/sys/mips/cavium/octe/ethernet-defines.h
/freebsd-11-stable/sys/mips/cavium/octe/ethernet-headers.h
/freebsd-11-stable/sys/mips/cavium/octe/ethernet-mdio.c
/freebsd-11-stable/sys/mips/cavium/octe/ethernet-mdio.h
/freebsd-11-stable/sys/mips/cavium/octe/ethernet-mem.c
/freebsd-11-stable/sys/mips/cavium/octe/ethernet-mem.h
/freebsd-11-stable/sys/mips/cavium/octe/ethernet-mv88e61xx.c
/freebsd-11-stable/sys/mips/cavium/octe/ethernet-mv88e61xx.h
/freebsd-11-stable/sys/mips/cavium/octe/ethernet-rgmii.c
/freebsd-11-stable/sys/mips/cavium/octe/ethernet-rx.c
/freebsd-11-stable/sys/mips/cavium/octe/ethernet-rx.h
/freebsd-11-stable/sys/mips/cavium/octe/ethernet-sgmii.c
/freebsd-11-stable/sys/mips/cavium/octe/ethernet-spi.c
/freebsd-11-stable/sys/mips/cavium/octe/ethernet-tx.c
/freebsd-11-stable/sys/mips/cavium/octe/ethernet-tx.h
/freebsd-11-stable/sys/mips/cavium/octe/ethernet-util.h
/freebsd-11-stable/sys/mips/cavium/octe/ethernet-xaui.c
/freebsd-11-stable/sys/mips/cavium/octe/ethernet.c
/freebsd-11-stable/sys/mips/cavium/octe/mv88e61xxphy.c
/freebsd-11-stable/sys/mips/cavium/octe/mv88e61xxphyreg.h
/freebsd-11-stable/sys/mips/cavium/octe/octe.c
/freebsd-11-stable/sys/mips/cavium/octe/octebus.c
/freebsd-11-stable/sys/mips/cavium/octe/octebusvar.h
/freebsd-11-stable/sys/mips/cavium/octe/wrapper-cvmx-includes.h
/freebsd-11-stable/sys/mips/cavium/octeon_cop2.h
/freebsd-11-stable/sys/mips/cavium/octeon_ds1337.c
/freebsd-11-stable/sys/mips/cavium/octeon_ebt3000_cf.c
/freebsd-11-stable/sys/mips/cavium/octeon_gpio.c
/freebsd-11-stable/sys/mips/cavium/octeon_gpiovar.h
/freebsd-11-stable/sys/mips/cavium/octeon_irq.h
/freebsd-11-stable/sys/mips/cavium/octeon_machdep.c
/freebsd-11-stable/sys/mips/cavium/octeon_mp.c
/freebsd-11-stable/sys/mips/cavium/octeon_pci_console.c
/freebsd-11-stable/sys/mips/cavium/octeon_pcmap_regs.h
/freebsd-11-stable/sys/mips/cavium/octeon_pmc.c
/freebsd-11-stable/sys/mips/cavium/octeon_rnd.c
/freebsd-11-stable/sys/mips/cavium/octeon_rtc.c
/freebsd-11-stable/sys/mips/cavium/octeon_wdog.c
/freebsd-11-stable/sys/mips/cavium/octopci.c
/freebsd-11-stable/sys/mips/cavium/octopci_bus_space.c
/freebsd-11-stable/sys/mips/cavium/octopcireg.h
/freebsd-11-stable/sys/mips/cavium/octopcivar.h
/freebsd-11-stable/sys/mips/cavium/uart_bus_octeonusart.c
/freebsd-11-stable/sys/mips/cavium/uart_cpu_octeonusart.c
/freebsd-11-stable/sys/mips/cavium/uart_dev_oct16550.c
/freebsd-11-stable/sys/mips/cavium/usb/octusb.c
/freebsd-11-stable/sys/mips/cavium/usb/octusb.h
/freebsd-11-stable/sys/mips/cavium/usb/octusb_octeon.c
/freebsd-11-stable/sys/mips/gxemul/gxemul_machdep.c
/freebsd-11-stable/sys/mips/gxemul/mpreg.h
/freebsd-11-stable/sys/mips/idt/idt_machdep.c
/freebsd-11-stable/sys/mips/idt/idtpci.c
/freebsd-11-stable/sys/mips/idt/idtreg.h
/freebsd-11-stable/sys/mips/idt/if_kr.c
/freebsd-11-stable/sys/mips/idt/if_krreg.h
/freebsd-11-stable/sys/mips/idt/obio.c
/freebsd-11-stable/sys/mips/idt/obiovar.h
/freebsd-11-stable/sys/mips/idt/uart_bus_rc32434.c
/freebsd-11-stable/sys/mips/idt/uart_cpu_rc32434.c
/freebsd-11-stable/sys/mips/include/_align.h
/freebsd-11-stable/sys/mips/include/_bus.h
/freebsd-11-stable/sys/mips/include/_inttypes.h
/freebsd-11-stable/sys/mips/include/_limits.h
/freebsd-11-stable/sys/mips/include/_stdint.h
/freebsd-11-stable/sys/mips/include/_types.h
/freebsd-11-stable/sys/mips/include/asm.h
/freebsd-11-stable/sys/mips/include/atomic.h
/freebsd-11-stable/sys/mips/include/bootinfo.h
/freebsd-11-stable/sys/mips/include/bus.h
/freebsd-11-stable/sys/mips/include/bus_dma.h
/freebsd-11-stable/sys/mips/include/cache.h
/freebsd-11-stable/sys/mips/include/cache_mipsNN.h
/freebsd-11-stable/sys/mips/include/cache_r4k.h
/freebsd-11-stable/sys/mips/include/counter.h
/freebsd-11-stable/sys/mips/include/cpu.h
/freebsd-11-stable/sys/mips/include/cpufunc.h
/freebsd-11-stable/sys/mips/include/cpuinfo.h
/freebsd-11-stable/sys/mips/include/cpuregs.h
/freebsd-11-stable/sys/mips/include/db_machdep.h
/freebsd-11-stable/sys/mips/include/elf.h
/freebsd-11-stable/sys/mips/include/endian.h
/freebsd-11-stable/sys/mips/include/exec.h
/freebsd-11-stable/sys/mips/include/fdt.h
/freebsd-11-stable/sys/mips/include/float.h
/freebsd-11-stable/sys/mips/include/floatingpoint.h
/freebsd-11-stable/sys/mips/include/frame.h
/freebsd-11-stable/sys/mips/include/gdb_machdep.h
/freebsd-11-stable/sys/mips/include/hwfunc.h
/freebsd-11-stable/sys/mips/include/ieee.h
/freebsd-11-stable/sys/mips/include/in_cksum.h
/freebsd-11-stable/sys/mips/include/intr_machdep.h
/freebsd-11-stable/sys/mips/include/kdb.h
/freebsd-11-stable/sys/mips/include/limits.h
/freebsd-11-stable/sys/mips/include/md_var.h
/freebsd-11-stable/sys/mips/include/memdev.h
/freebsd-11-stable/sys/mips/include/metadata.h
/freebsd-11-stable/sys/mips/include/minidump.h
/freebsd-11-stable/sys/mips/include/mips_opcode.h
/freebsd-11-stable/sys/mips/include/octeon_cop2.h
/freebsd-11-stable/sys/mips/include/ofw_machdep.h
/freebsd-11-stable/sys/mips/include/param.h
/freebsd-11-stable/sys/mips/include/pcb.h
/freebsd-11-stable/sys/mips/include/pcpu.h
/freebsd-11-stable/sys/mips/include/pmap.h
/freebsd-11-stable/sys/mips/include/proc.h
/freebsd-11-stable/sys/mips/include/profile.h
/freebsd-11-stable/sys/mips/include/pte.h
/freebsd-11-stable/sys/mips/include/ptrace.h
/freebsd-11-stable/sys/mips/include/reg.h
/freebsd-11-stable/sys/mips/include/regdef.h
/freebsd-11-stable/sys/mips/include/regnum.h
/freebsd-11-stable/sys/mips/include/reloc.h
/freebsd-11-stable/sys/mips/include/runq.h
/freebsd-11-stable/sys/mips/include/sc_machdep.h
/freebsd-11-stable/sys/mips/include/sf_buf.h
/freebsd-11-stable/sys/mips/include/sigframe.h
/freebsd-11-stable/sys/mips/include/signal.h
/freebsd-11-stable/sys/mips/include/sysarch.h
/freebsd-11-stable/sys/mips/include/tlb.h
/freebsd-11-stable/sys/mips/include/tls.h
/freebsd-11-stable/sys/mips/include/trap.h
/freebsd-11-stable/sys/mips/include/ucontext.h
/freebsd-11-stable/sys/mips/include/varargs.h
/freebsd-11-stable/sys/mips/include/vdso.h
/freebsd-11-stable/sys/mips/include/vm.h
/freebsd-11-stable/sys/mips/include/vmparam.h
/freebsd-11-stable/sys/mips/malta/gt.c
/freebsd-11-stable/sys/mips/malta/gt_pci.c
/freebsd-11-stable/sys/mips/malta/gt_pci_bus_space.c
/freebsd-11-stable/sys/mips/malta/gt_pci_bus_space.h
/freebsd-11-stable/sys/mips/malta/gtreg.h
/freebsd-11-stable/sys/mips/malta/gtvar.h
/freebsd-11-stable/sys/mips/malta/malta_machdep.c
/freebsd-11-stable/sys/mips/malta/maltareg.h
/freebsd-11-stable/sys/mips/malta/obio.c
/freebsd-11-stable/sys/mips/malta/obiovar.h
/freebsd-11-stable/sys/mips/malta/uart_bus_maltausart.c
/freebsd-11-stable/sys/mips/malta/uart_cpu_maltausart.c
/freebsd-11-stable/sys/mips/malta/yamon.c
/freebsd-11-stable/sys/mips/malta/yamon.h
/freebsd-11-stable/sys/mips/mips/autoconf.c
/freebsd-11-stable/sys/mips/mips/bus_space_generic.c
/freebsd-11-stable/sys/mips/mips/busdma_machdep.c
/freebsd-11-stable/sys/mips/mips/cache.c
/freebsd-11-stable/sys/mips/mips/cache_mipsNN.c
/freebsd-11-stable/sys/mips/mips/cpu.c
/freebsd-11-stable/sys/mips/mips/db_disasm.c
/freebsd-11-stable/sys/mips/mips/db_interface.c
/freebsd-11-stable/sys/mips/mips/db_trace.c
/freebsd-11-stable/sys/mips/mips/dump_machdep.c
/freebsd-11-stable/sys/mips/mips/elf_machdep.c
/freebsd-11-stable/sys/mips/mips/elf_trampoline.c
/freebsd-11-stable/sys/mips/mips/freebsd32_machdep.c
/freebsd-11-stable/sys/mips/mips/gdb_machdep.c
/freebsd-11-stable/sys/mips/mips/genassym.c
/freebsd-11-stable/sys/mips/mips/in_cksum.c
/freebsd-11-stable/sys/mips/mips/intr_machdep.c
/freebsd-11-stable/sys/mips/mips/libkern_machdep.c
/freebsd-11-stable/sys/mips/mips/machdep.c
/freebsd-11-stable/sys/mips/mips/mem.c
/freebsd-11-stable/sys/mips/mips/minidump_machdep.c
/freebsd-11-stable/sys/mips/mips/mp_machdep.c
/freebsd-11-stable/sys/mips/mips/octeon_cop2.c
/freebsd-11-stable/sys/mips/mips/pm_machdep.c
/freebsd-11-stable/sys/mips/mips/pmap.c
/freebsd-11-stable/sys/mips/mips/ptrace_machdep.c
/freebsd-11-stable/sys/mips/mips/sc_machdep.c
/freebsd-11-stable/sys/mips/mips/stack_machdep.c
/freebsd-11-stable/sys/mips/mips/stdatomic.c
/freebsd-11-stable/sys/mips/mips/sys_machdep.c
/freebsd-11-stable/sys/mips/mips/tick.c
/freebsd-11-stable/sys/mips/mips/tlb.c
/freebsd-11-stable/sys/mips/mips/trap.c
/freebsd-11-stable/sys/mips/mips/uio_machdep.c
/freebsd-11-stable/sys/mips/mips/uma_machdep.c
/freebsd-11-stable/sys/mips/mips/vm_machdep.c
/freebsd-11-stable/sys/mips/nlm/board.c
/freebsd-11-stable/sys/mips/nlm/board.h
/freebsd-11-stable/sys/mips/nlm/board_cpld.c
/freebsd-11-stable/sys/mips/nlm/board_eeprom.c
/freebsd-11-stable/sys/mips/nlm/bus_space_rmi.c
/freebsd-11-stable/sys/mips/nlm/bus_space_rmi_pci.c
/freebsd-11-stable/sys/mips/nlm/clock.h
/freebsd-11-stable/sys/mips/nlm/cms.c
/freebsd-11-stable/sys/mips/nlm/dev/net/mdio.c
/freebsd-11-stable/sys/mips/nlm/dev/net/nae.c
/freebsd-11-stable/sys/mips/nlm/dev/net/sgmii.c
/freebsd-11-stable/sys/mips/nlm/dev/net/ucore/ucore.h
/freebsd-11-stable/sys/mips/nlm/dev/net/ucore/ucore_app.c
/freebsd-11-stable/sys/mips/nlm/dev/net/xaui.c
/freebsd-11-stable/sys/mips/nlm/dev/net/xlpge.c
/freebsd-11-stable/sys/mips/nlm/dev/net/xlpge.h
/freebsd-11-stable/sys/mips/nlm/dev/sec/nlmrsa.c
/freebsd-11-stable/sys/mips/nlm/dev/sec/nlmrsalib.h
/freebsd-11-stable/sys/mips/nlm/dev/sec/nlmsec.c
/freebsd-11-stable/sys/mips/nlm/dev/sec/nlmseclib.c
/freebsd-11-stable/sys/mips/nlm/dev/sec/nlmseclib.h
/freebsd-11-stable/sys/mips/nlm/dev/sec/rsa_ucode.h
/freebsd-11-stable/sys/mips/nlm/hal/bridge.h
/freebsd-11-stable/sys/mips/nlm/hal/cop2.h
/freebsd-11-stable/sys/mips/nlm/hal/cpucontrol.h
/freebsd-11-stable/sys/mips/nlm/hal/fmn.c
/freebsd-11-stable/sys/mips/nlm/hal/fmn.h
/freebsd-11-stable/sys/mips/nlm/hal/gbu.h
/freebsd-11-stable/sys/mips/nlm/hal/haldefs.h
/freebsd-11-stable/sys/mips/nlm/hal/interlaken.h
/freebsd-11-stable/sys/mips/nlm/hal/iomap.h
/freebsd-11-stable/sys/mips/nlm/hal/mdio.h
/freebsd-11-stable/sys/mips/nlm/hal/mips-extns.h
/freebsd-11-stable/sys/mips/nlm/hal/mmu.h
/freebsd-11-stable/sys/mips/nlm/hal/nae.h
/freebsd-11-stable/sys/mips/nlm/hal/nlm_hal.c
/freebsd-11-stable/sys/mips/nlm/hal/nlmsaelib.h
/freebsd-11-stable/sys/mips/nlm/hal/pcibus.h
/freebsd-11-stable/sys/mips/nlm/hal/pic.h
/freebsd-11-stable/sys/mips/nlm/hal/poe.h
/freebsd-11-stable/sys/mips/nlm/hal/sgmii.h
/freebsd-11-stable/sys/mips/nlm/hal/sys.h
/freebsd-11-stable/sys/mips/nlm/hal/uart.h
/freebsd-11-stable/sys/mips/nlm/hal/ucore_loader.h
/freebsd-11-stable/sys/mips/nlm/hal/usb.h
/freebsd-11-stable/sys/mips/nlm/hal/xaui.h
/freebsd-11-stable/sys/mips/nlm/interrupt.h
/freebsd-11-stable/sys/mips/nlm/intr_machdep.c
/freebsd-11-stable/sys/mips/nlm/msgring.h
/freebsd-11-stable/sys/mips/nlm/tick.c
/freebsd-11-stable/sys/mips/nlm/uart_cpu_xlp.c
/freebsd-11-stable/sys/mips/nlm/usb_init.c
/freebsd-11-stable/sys/mips/nlm/xlp.h
/freebsd-11-stable/sys/mips/nlm/xlp_machdep.c
/freebsd-11-stable/sys/mips/nlm/xlp_pci.c
/freebsd-11-stable/sys/mips/rmi/board.c
/freebsd-11-stable/sys/mips/rmi/board.h
/freebsd-11-stable/sys/mips/rmi/bus_space_rmi.c
/freebsd-11-stable/sys/mips/rmi/bus_space_rmi_pci.c
/freebsd-11-stable/sys/mips/rmi/dev/iic/at24co2n.c
/freebsd-11-stable/sys/mips/rmi/dev/iic/max6657.c
/freebsd-11-stable/sys/mips/rmi/dev/nlge/if_nlge.c
/freebsd-11-stable/sys/mips/rmi/dev/nlge/if_nlge.h
/freebsd-11-stable/sys/mips/rmi/dev/sec/desc.h
/freebsd-11-stable/sys/mips/rmi/dev/sec/rmilib.c
/freebsd-11-stable/sys/mips/rmi/dev/sec/rmilib.h
/freebsd-11-stable/sys/mips/rmi/dev/sec/rmisec.c
/freebsd-11-stable/sys/mips/rmi/dev/xlr/debug.h
/freebsd-11-stable/sys/mips/rmi/fmn.c
/freebsd-11-stable/sys/mips/rmi/interrupt.h
/freebsd-11-stable/sys/mips/rmi/intr_machdep.c
/freebsd-11-stable/sys/mips/rmi/iodi.c
/freebsd-11-stable/sys/mips/rmi/iomap.h
/freebsd-11-stable/sys/mips/rmi/msgring.h
/freebsd-11-stable/sys/mips/rmi/pcibus.h
/freebsd-11-stable/sys/mips/rmi/pic.h
/freebsd-11-stable/sys/mips/rmi/rmi_boot_info.h
/freebsd-11-stable/sys/mips/rmi/rmi_mips_exts.h
/freebsd-11-stable/sys/mips/rmi/tick.c
/freebsd-11-stable/sys/mips/rmi/uart_bus_xlr_iodi.c
/freebsd-11-stable/sys/mips/rmi/uart_cpu_mips_xlr.c
/freebsd-11-stable/sys/mips/rmi/xlr_i2c.c
/freebsd-11-stable/sys/mips/rmi/xlr_machdep.c
/freebsd-11-stable/sys/mips/rmi/xlr_pci.c
/freebsd-11-stable/sys/mips/rmi/xlr_pcmcia.c
/freebsd-11-stable/sys/mips/rmi/xls_ehci.c
/freebsd-11-stable/sys/mips/rt305x/obio.c
/freebsd-11-stable/sys/mips/rt305x/obiovar.h
/freebsd-11-stable/sys/mips/rt305x/rt305x_dotg.c
/freebsd-11-stable/sys/mips/rt305x/rt305x_gpio.c
/freebsd-11-stable/sys/mips/rt305x/rt305x_gpio.h
/freebsd-11-stable/sys/mips/rt305x/rt305x_gpiovar.h
/freebsd-11-stable/sys/mips/rt305x/rt305x_ic.c
/freebsd-11-stable/sys/mips/rt305x/rt305x_icvar.h
/freebsd-11-stable/sys/mips/rt305x/rt305x_machdep.c
/freebsd-11-stable/sys/mips/rt305x/rt305x_sysctl.c
/freebsd-11-stable/sys/mips/rt305x/rt305x_sysctlvar.h
/freebsd-11-stable/sys/mips/rt305x/rt305xreg.h
/freebsd-11-stable/sys/mips/rt305x/rt_swreg.h
/freebsd-11-stable/sys/mips/rt305x/uart_bus_rt305x.c
/freebsd-11-stable/sys/mips/rt305x/uart_cpu_rt305x.c
/freebsd-11-stable/sys/mips/rt305x/uart_dev_rt305x.c
/freebsd-11-stable/sys/mips/rt305x/uart_dev_rt305x.h
/freebsd-11-stable/sys/mips/sibyte/ata_zbbus.c
/freebsd-11-stable/sys/mips/sibyte/sb_bus_space.h
/freebsd-11-stable/sys/mips/sibyte/sb_machdep.c
/freebsd-11-stable/sys/mips/sibyte/sb_scd.c
/freebsd-11-stable/sys/mips/sibyte/sb_scd.h
/freebsd-11-stable/sys/mips/sibyte/sb_zbbus.c
/freebsd-11-stable/sys/mips/sibyte/sb_zbpci.c
/freebsd-11-stable/sys/net/bpf.c
/freebsd-11-stable/sys/net/bpf.h
/freebsd-11-stable/sys/net/bpf_buffer.c
/freebsd-11-stable/sys/net/bpf_filter.c
/freebsd-11-stable/sys/net/bpf_jitter.c
/freebsd-11-stable/sys/net/bpf_jitter.h
/freebsd-11-stable/sys/net/bpfdesc.h
/freebsd-11-stable/sys/net/fddi.h
/freebsd-11-stable/sys/net/if.c
/freebsd-11-stable/sys/net/if.h
/freebsd-11-stable/sys/net/if_arc.h
/freebsd-11-stable/sys/net/if_arcsubr.c
/freebsd-11-stable/sys/net/if_arp.h
/freebsd-11-stable/sys/net/if_clone.c
/freebsd-11-stable/sys/net/if_clone.h
/freebsd-11-stable/sys/net/if_disc.c
/freebsd-11-stable/sys/net/if_dl.h
/freebsd-11-stable/sys/net/if_edsc.c
/freebsd-11-stable/sys/net/if_ethersubr.c
/freebsd-11-stable/sys/net/if_fddisubr.c
/freebsd-11-stable/sys/net/if_fwsubr.c
/freebsd-11-stable/sys/net/if_gif.c
/freebsd-11-stable/sys/net/if_gif.h
/freebsd-11-stable/sys/net/if_llc.h
/freebsd-11-stable/sys/net/if_loop.c
/freebsd-11-stable/sys/net/if_stf.c
/freebsd-11-stable/sys/net/if_types.h
/freebsd-11-stable/sys/net/if_var.h
/freebsd-11-stable/sys/net/ifq.h
/freebsd-11-stable/sys/net/pfkeyv2.h
/freebsd-11-stable/sys/net/radix.c
/freebsd-11-stable/sys/net/radix.h
/freebsd-11-stable/sys/net/radix_mpath.c
/freebsd-11-stable/sys/net/radix_mpath.h
/freebsd-11-stable/sys/net/raw_cb.c
/freebsd-11-stable/sys/net/raw_cb.h
/freebsd-11-stable/sys/net/raw_usrreq.c
/freebsd-11-stable/sys/net/route.c
/freebsd-11-stable/sys/net/route.h
/freebsd-11-stable/sys/net/rtsock.c
/freebsd-11-stable/sys/net/slcompress.c
/freebsd-11-stable/sys/net/slcompress.h
/freebsd-11-stable/sys/netinet/icmp6.h
/freebsd-11-stable/sys/netinet/icmp_var.h
/freebsd-11-stable/sys/netinet/if_ether.c
/freebsd-11-stable/sys/netinet/if_ether.h
/freebsd-11-stable/sys/netinet/igmp.c
/freebsd-11-stable/sys/netinet/igmp.h
/freebsd-11-stable/sys/netinet/igmp_var.h
/freebsd-11-stable/sys/netinet/in.c
/freebsd-11-stable/sys/netinet/in.h
/freebsd-11-stable/sys/netinet/in_cksum.c
/freebsd-11-stable/sys/netinet/in_gif.c
/freebsd-11-stable/sys/netinet/in_pcb.c
/freebsd-11-stable/sys/netinet/in_pcb.h
/freebsd-11-stable/sys/netinet/in_proto.c
/freebsd-11-stable/sys/netinet/in_systm.h
/freebsd-11-stable/sys/netinet/in_var.h
/freebsd-11-stable/sys/netinet/ip.h
/freebsd-11-stable/sys/netinet/ip6.h
/freebsd-11-stable/sys/netinet/ip_divert.c
/freebsd-11-stable/sys/netinet/ip_ecn.c
/freebsd-11-stable/sys/netinet/ip_ecn.h
/freebsd-11-stable/sys/netinet/ip_encap.c
/freebsd-11-stable/sys/netinet/ip_encap.h
/freebsd-11-stable/sys/netinet/ip_icmp.c
/freebsd-11-stable/sys/netinet/ip_icmp.h
/freebsd-11-stable/sys/netinet/ip_input.c
/freebsd-11-stable/sys/netinet/ip_mroute.c
/freebsd-11-stable/sys/netinet/ip_mroute.h
/freebsd-11-stable/sys/netinet/ip_options.c
/freebsd-11-stable/sys/netinet/ip_options.h
/freebsd-11-stable/sys/netinet/ip_output.c
/freebsd-11-stable/sys/netinet/ip_var.h
/freebsd-11-stable/sys/netinet/pim.h
/freebsd-11-stable/sys/netinet/pim_var.h
/freebsd-11-stable/sys/netinet/raw_ip.c
/freebsd-11-stable/sys/netinet/sctp.h
/freebsd-11-stable/sys/netinet/sctp_asconf.c
/freebsd-11-stable/sys/netinet/sctp_asconf.h
/freebsd-11-stable/sys/netinet/sctp_auth.c
/freebsd-11-stable/sys/netinet/sctp_auth.h
/freebsd-11-stable/sys/netinet/sctp_bsd_addr.c
/freebsd-11-stable/sys/netinet/sctp_bsd_addr.h
/freebsd-11-stable/sys/netinet/sctp_cc_functions.c
/freebsd-11-stable/sys/netinet/sctp_constants.h
/freebsd-11-stable/sys/netinet/sctp_crc32.c
/freebsd-11-stable/sys/netinet/sctp_crc32.h
/freebsd-11-stable/sys/netinet/sctp_dtrace_declare.h
/freebsd-11-stable/sys/netinet/sctp_dtrace_define.h
/freebsd-11-stable/sys/netinet/sctp_header.h
/freebsd-11-stable/sys/netinet/sctp_indata.c
/freebsd-11-stable/sys/netinet/sctp_indata.h
/freebsd-11-stable/sys/netinet/sctp_input.c
/freebsd-11-stable/sys/netinet/sctp_input.h
/freebsd-11-stable/sys/netinet/sctp_lock_bsd.h
/freebsd-11-stable/sys/netinet/sctp_os.h
/freebsd-11-stable/sys/netinet/sctp_os_bsd.h
/freebsd-11-stable/sys/netinet/sctp_output.c
/freebsd-11-stable/sys/netinet/sctp_output.h
/freebsd-11-stable/sys/netinet/sctp_pcb.c
/freebsd-11-stable/sys/netinet/sctp_pcb.h
/freebsd-11-stable/sys/netinet/sctp_peeloff.c
/freebsd-11-stable/sys/netinet/sctp_peeloff.h
/freebsd-11-stable/sys/netinet/sctp_structs.h
/freebsd-11-stable/sys/netinet/sctp_sysctl.c
/freebsd-11-stable/sys/netinet/sctp_sysctl.h
/freebsd-11-stable/sys/netinet/sctp_timer.c
/freebsd-11-stable/sys/netinet/sctp_timer.h
/freebsd-11-stable/sys/netinet/sctp_uio.h
/freebsd-11-stable/sys/netinet/sctp_usrreq.c
/freebsd-11-stable/sys/netinet/sctp_var.h
/freebsd-11-stable/sys/netinet/sctputil.c
/freebsd-11-stable/sys/netinet/sctputil.h
/freebsd-11-stable/sys/netinet/tcp.h
/freebsd-11-stable/sys/netinet/tcp_debug.c
/freebsd-11-stable/sys/netinet/tcp_debug.h
/freebsd-11-stable/sys/netinet/tcp_fsm.h
/freebsd-11-stable/sys/netinet/tcp_input.c
/freebsd-11-stable/sys/netinet/tcp_output.c
/freebsd-11-stable/sys/netinet/tcp_reass.c
/freebsd-11-stable/sys/netinet/tcp_sack.c
/freebsd-11-stable/sys/netinet/tcp_seq.h
/freebsd-11-stable/sys/netinet/tcp_subr.c
/freebsd-11-stable/sys/netinet/tcp_syncache.h
/freebsd-11-stable/sys/netinet/tcp_timer.c
/freebsd-11-stable/sys/netinet/tcp_timer.h
/freebsd-11-stable/sys/netinet/tcp_timewait.c
/freebsd-11-stable/sys/netinet/tcp_usrreq.c
/freebsd-11-stable/sys/netinet/tcp_var.h
/freebsd-11-stable/sys/netinet/tcpip.h
/freebsd-11-stable/sys/netinet/udp.h
/freebsd-11-stable/sys/netinet/udp_usrreq.c
/freebsd-11-stable/sys/netinet/udp_var.h
/freebsd-11-stable/sys/netinet6/dest6.c
/freebsd-11-stable/sys/netinet6/frag6.c
/freebsd-11-stable/sys/netinet6/icmp6.c
/freebsd-11-stable/sys/netinet6/in6.c
/freebsd-11-stable/sys/netinet6/in6.h
/freebsd-11-stable/sys/netinet6/in6_cksum.c
/freebsd-11-stable/sys/netinet6/in6_gif.c
/freebsd-11-stable/sys/netinet6/in6_ifattach.c
/freebsd-11-stable/sys/netinet6/in6_ifattach.h
/freebsd-11-stable/sys/netinet6/in6_pcb.c
/freebsd-11-stable/sys/netinet6/in6_pcb.h
/freebsd-11-stable/sys/netinet6/in6_proto.c
/freebsd-11-stable/sys/netinet6/in6_rmx.c
/freebsd-11-stable/sys/netinet6/in6_src.c
/freebsd-11-stable/sys/netinet6/in6_var.h
/freebsd-11-stable/sys/netinet6/ip6_ecn.h
/freebsd-11-stable/sys/netinet6/ip6_forward.c
/freebsd-11-stable/sys/netinet6/ip6_id.c
/freebsd-11-stable/sys/netinet6/ip6_input.c
/freebsd-11-stable/sys/netinet6/ip6_mroute.c
/freebsd-11-stable/sys/netinet6/ip6_mroute.h
/freebsd-11-stable/sys/netinet6/ip6_output.c
/freebsd-11-stable/sys/netinet6/ip6_var.h
/freebsd-11-stable/sys/netinet6/ip6protosw.h
/freebsd-11-stable/sys/netinet6/mld6.c
/freebsd-11-stable/sys/netinet6/nd6.c
/freebsd-11-stable/sys/netinet6/nd6.h
/freebsd-11-stable/sys/netinet6/nd6_nbr.c
/freebsd-11-stable/sys/netinet6/nd6_rtr.c
/freebsd-11-stable/sys/netinet6/pim6.h
/freebsd-11-stable/sys/netinet6/pim6_var.h
/freebsd-11-stable/sys/netinet6/raw_ip6.c
/freebsd-11-stable/sys/netinet6/raw_ip6.h
/freebsd-11-stable/sys/netinet6/route6.c
/freebsd-11-stable/sys/netinet6/scope6.c
/freebsd-11-stable/sys/netinet6/scope6_var.h
/freebsd-11-stable/sys/netinet6/sctp6_usrreq.c
/freebsd-11-stable/sys/netinet6/sctp6_var.h
/freebsd-11-stable/sys/netinet6/tcp6_var.h
/freebsd-11-stable/sys/netinet6/udp6_usrreq.c
/freebsd-11-stable/sys/netinet6/udp6_var.h
/freebsd-11-stable/sys/netipsec/ah.h
/freebsd-11-stable/sys/netipsec/esp.h
/freebsd-11-stable/sys/netipsec/ipcomp.h
/freebsd-11-stable/sys/netipsec/ipcomp_var.h
/freebsd-11-stable/sys/netipsec/ipsec.c
/freebsd-11-stable/sys/netipsec/ipsec.h
/freebsd-11-stable/sys/netipsec/ipsec6.h
/freebsd-11-stable/sys/netipsec/key.c
/freebsd-11-stable/sys/netipsec/key.h
/freebsd-11-stable/sys/netipsec/key_debug.c
/freebsd-11-stable/sys/netipsec/key_debug.h
/freebsd-11-stable/sys/netipsec/key_var.h
/freebsd-11-stable/sys/netipsec/keydb.h
/freebsd-11-stable/sys/netipsec/keysock.c
/freebsd-11-stable/sys/netipsec/keysock.h
/freebsd-11-stable/sys/netpfil/pf/in4_cksum.c
/freebsd-11-stable/sys/netsmb/smb_crypt.c
/freebsd-11-stable/sys/nfs/bootp_subr.c
/freebsd-11-stable/sys/nfs/krpc_subr.c
/freebsd-11-stable/sys/nfs/nfs_common.h
/freebsd-11-stable/sys/nfs/nfs_diskless.c
/freebsd-11-stable/sys/nfs/nfs_nfssvc.c
/freebsd-11-stable/sys/nfs/nfsdiskless.h
/freebsd-11-stable/sys/nfs/nfsproto.h
/freebsd-11-stable/sys/nfs/nfssvc.h
/freebsd-11-stable/sys/nfs/xdr_subs.h
/freebsd-11-stable/sys/nfsclient/nfs.h
/freebsd-11-stable/sys/nfsclient/nfsargs.h
/freebsd-11-stable/sys/nfsclient/nfsm_subs.h
/freebsd-11-stable/sys/nfsclient/nfsmount.h
/freebsd-11-stable/sys/nfsclient/nfsnode.h
/freebsd-11-stable/sys/nfsclient/nfsstats.h
/freebsd-11-stable/sys/nfsserver/nfs.h
/freebsd-11-stable/sys/nfsserver/nfsm_subs.h
/freebsd-11-stable/sys/nfsserver/nfsrvcache.h
/freebsd-11-stable/sys/nfsserver/nfsrvstats.h
/freebsd-11-stable/sys/ofed/drivers/infiniband/ulp/sdp/sdp_main.c
/freebsd-11-stable/sys/powerpc/aim/mmu_oea.c
/freebsd-11-stable/sys/powerpc/aim/mmu_oea64.c
/freebsd-11-stable/sys/powerpc/aim/mmu_oea64.h
/freebsd-11-stable/sys/powerpc/aim/moea64_native.c
/freebsd-11-stable/sys/powerpc/aim/mp_cpudep.c
/freebsd-11-stable/sys/powerpc/aim/slb.c
/freebsd-11-stable/sys/powerpc/booke/machdep_e500.c
/freebsd-11-stable/sys/powerpc/booke/machdep_ppc4xx.c
/freebsd-11-stable/sys/powerpc/booke/mp_cpudep.c
/freebsd-11-stable/sys/powerpc/booke/platform_bare.c
/freebsd-11-stable/sys/powerpc/booke/pmap.c
/freebsd-11-stable/sys/powerpc/cpufreq/dfs.c
/freebsd-11-stable/sys/powerpc/cpufreq/pcr.c
/freebsd-11-stable/sys/powerpc/cpufreq/pmufreq.c
/freebsd-11-stable/sys/powerpc/fpu/fpu_add.c
/freebsd-11-stable/sys/powerpc/fpu/fpu_arith.h
/freebsd-11-stable/sys/powerpc/fpu/fpu_compare.c
/freebsd-11-stable/sys/powerpc/fpu/fpu_div.c
/freebsd-11-stable/sys/powerpc/fpu/fpu_emu.c
/freebsd-11-stable/sys/powerpc/fpu/fpu_emu.h
/freebsd-11-stable/sys/powerpc/fpu/fpu_explode.c
/freebsd-11-stable/sys/powerpc/fpu/fpu_extern.h
/freebsd-11-stable/sys/powerpc/fpu/fpu_implode.c
/freebsd-11-stable/sys/powerpc/fpu/fpu_instr.h
/freebsd-11-stable/sys/powerpc/fpu/fpu_mul.c
/freebsd-11-stable/sys/powerpc/fpu/fpu_sqrt.c
/freebsd-11-stable/sys/powerpc/fpu/fpu_subr.c
/freebsd-11-stable/sys/powerpc/include/_align.h
/freebsd-11-stable/sys/powerpc/include/_bus.h
/freebsd-11-stable/sys/powerpc/include/_inttypes.h
/freebsd-11-stable/sys/powerpc/include/_limits.h
/freebsd-11-stable/sys/powerpc/include/_stdint.h
/freebsd-11-stable/sys/powerpc/include/_types.h
/freebsd-11-stable/sys/powerpc/include/altivec.h
/freebsd-11-stable/sys/powerpc/include/asm.h
/freebsd-11-stable/sys/powerpc/include/atomic.h
/freebsd-11-stable/sys/powerpc/include/bat.h
/freebsd-11-stable/sys/powerpc/include/bus.h
/freebsd-11-stable/sys/powerpc/include/bus_dma.h
/freebsd-11-stable/sys/powerpc/include/counter.h
/freebsd-11-stable/sys/powerpc/include/cpu.h
/freebsd-11-stable/sys/powerpc/include/cpufunc.h
/freebsd-11-stable/sys/powerpc/include/dbdma.h
/freebsd-11-stable/sys/powerpc/include/elf.h
/freebsd-11-stable/sys/powerpc/include/endian.h
/freebsd-11-stable/sys/powerpc/include/exec.h
/freebsd-11-stable/sys/powerpc/include/float.h
/freebsd-11-stable/sys/powerpc/include/floatingpoint.h
/freebsd-11-stable/sys/powerpc/include/fpu.h
/freebsd-11-stable/sys/powerpc/include/frame.h
/freebsd-11-stable/sys/powerpc/include/gdb_machdep.h
/freebsd-11-stable/sys/powerpc/include/hid.h
/freebsd-11-stable/sys/powerpc/include/ieee.h
/freebsd-11-stable/sys/powerpc/include/in_cksum.h
/freebsd-11-stable/sys/powerpc/include/intr_machdep.h
/freebsd-11-stable/sys/powerpc/include/kdb.h
/freebsd-11-stable/sys/powerpc/include/limits.h
/freebsd-11-stable/sys/powerpc/include/machdep.h
/freebsd-11-stable/sys/powerpc/include/md_var.h
/freebsd-11-stable/sys/powerpc/include/memdev.h
/freebsd-11-stable/sys/powerpc/include/metadata.h
/freebsd-11-stable/sys/powerpc/include/mmuvar.h
/freebsd-11-stable/sys/powerpc/include/ofw_machdep.h
/freebsd-11-stable/sys/powerpc/include/openpicreg.h
/freebsd-11-stable/sys/powerpc/include/openpicvar.h
/freebsd-11-stable/sys/powerpc/include/param.h
/freebsd-11-stable/sys/powerpc/include/pcb.h
/freebsd-11-stable/sys/powerpc/include/pcpu.h
/freebsd-11-stable/sys/powerpc/include/pio.h
/freebsd-11-stable/sys/powerpc/include/platform.h
/freebsd-11-stable/sys/powerpc/include/platformvar.h
/freebsd-11-stable/sys/powerpc/include/pmap.h
/freebsd-11-stable/sys/powerpc/include/proc.h
/freebsd-11-stable/sys/powerpc/include/psl.h
/freebsd-11-stable/sys/powerpc/include/pte.h
/freebsd-11-stable/sys/powerpc/include/ptrace.h
/freebsd-11-stable/sys/powerpc/include/reloc.h
/freebsd-11-stable/sys/powerpc/include/rtas.h
/freebsd-11-stable/sys/powerpc/include/runq.h
/freebsd-11-stable/sys/powerpc/include/sc_machdep.h
/freebsd-11-stable/sys/powerpc/include/sigframe.h
/freebsd-11-stable/sys/powerpc/include/signal.h
/freebsd-11-stable/sys/powerpc/include/slb.h
/freebsd-11-stable/sys/powerpc/include/smp.h
/freebsd-11-stable/sys/powerpc/include/spr.h
/freebsd-11-stable/sys/powerpc/include/sr.h
/freebsd-11-stable/sys/powerpc/include/stdarg.h
/freebsd-11-stable/sys/powerpc/include/sysarch.h
/freebsd-11-stable/sys/powerpc/include/tlb.h
/freebsd-11-stable/sys/powerpc/include/trap.h
/freebsd-11-stable/sys/powerpc/include/ucontext.h
/freebsd-11-stable/sys/powerpc/include/varargs.h
/freebsd-11-stable/sys/powerpc/include/vdso.h
/freebsd-11-stable/sys/powerpc/include/vm.h
/freebsd-11-stable/sys/powerpc/include/vmparam.h
/freebsd-11-stable/sys/powerpc/mambo/mambo.c
/freebsd-11-stable/sys/powerpc/mambo/mambo_console.c
/freebsd-11-stable/sys/powerpc/mambo/mambo_disk.c
/freebsd-11-stable/sys/powerpc/mambo/mambocall.h
/freebsd-11-stable/sys/powerpc/mpc85xx/atpic.c
/freebsd-11-stable/sys/powerpc/mpc85xx/ds1553_bus_fdt.c
/freebsd-11-stable/sys/powerpc/mpc85xx/ds1553_core.c
/freebsd-11-stable/sys/powerpc/mpc85xx/ds1553_reg.h
/freebsd-11-stable/sys/powerpc/mpc85xx/i2c.c
/freebsd-11-stable/sys/powerpc/mpc85xx/isa.c
/freebsd-11-stable/sys/powerpc/mpc85xx/lbc.c
/freebsd-11-stable/sys/powerpc/mpc85xx/lbc.h
/freebsd-11-stable/sys/powerpc/mpc85xx/mpc85xx.c
/freebsd-11-stable/sys/powerpc/mpc85xx/mpc85xx.h
/freebsd-11-stable/sys/powerpc/mpc85xx/pci_mpc85xx.c
/freebsd-11-stable/sys/powerpc/mpc85xx/platform_mpc85xx.c
/freebsd-11-stable/sys/powerpc/ofw/ofw_machdep.c
/freebsd-11-stable/sys/powerpc/ofw/ofw_pcib_pci.c
/freebsd-11-stable/sys/powerpc/ofw/ofw_pcibus.c
/freebsd-11-stable/sys/powerpc/ofw/ofw_pcibus.h
/freebsd-11-stable/sys/powerpc/ofw/ofw_real.c
/freebsd-11-stable/sys/powerpc/ofw/ofw_syscons.c
/freebsd-11-stable/sys/powerpc/ofw/ofw_syscons.h
/freebsd-11-stable/sys/powerpc/ofw/openpic_ofw.c
/freebsd-11-stable/sys/powerpc/ofw/rtas.c
/freebsd-11-stable/sys/powerpc/powermac/ata_dbdma.c
/freebsd-11-stable/sys/powerpc/powermac/ata_dbdma.h
/freebsd-11-stable/sys/powerpc/powermac/ata_kauai.c
/freebsd-11-stable/sys/powerpc/powermac/ata_macio.c
/freebsd-11-stable/sys/powerpc/powermac/atibl.c
/freebsd-11-stable/sys/powerpc/powermac/cpcht.c
/freebsd-11-stable/sys/powerpc/powermac/cuda.c
/freebsd-11-stable/sys/powerpc/powermac/cudavar.h
/freebsd-11-stable/sys/powerpc/powermac/dbdma.c
/freebsd-11-stable/sys/powerpc/powermac/dbdmavar.h
/freebsd-11-stable/sys/powerpc/powermac/fcu.c
/freebsd-11-stable/sys/powerpc/powermac/grackle.c
/freebsd-11-stable/sys/powerpc/powermac/gracklevar.h
/freebsd-11-stable/sys/powerpc/powermac/hrowpic.c
/freebsd-11-stable/sys/powerpc/powermac/hrowpicvar.h
/freebsd-11-stable/sys/powerpc/powermac/kiic.c
/freebsd-11-stable/sys/powerpc/powermac/macgpio.c
/freebsd-11-stable/sys/powerpc/powermac/macgpiovar.h
/freebsd-11-stable/sys/powerpc/powermac/macio.c
/freebsd-11-stable/sys/powerpc/powermac/maciovar.h
/freebsd-11-stable/sys/powerpc/powermac/nvbl.c
/freebsd-11-stable/sys/powerpc/powermac/platform_powermac.c
/freebsd-11-stable/sys/powerpc/powermac/pmu.c
/freebsd-11-stable/sys/powerpc/powermac/pmuvar.h
/freebsd-11-stable/sys/powerpc/powermac/powermac_thermal.c
/freebsd-11-stable/sys/powerpc/powermac/powermac_thermal.h
/freebsd-11-stable/sys/powerpc/powermac/pswitch.c
/freebsd-11-stable/sys/powerpc/powermac/smu.c
/freebsd-11-stable/sys/powerpc/powermac/smusat.c
/freebsd-11-stable/sys/powerpc/powermac/uninorth.c
/freebsd-11-stable/sys/powerpc/powermac/uninorthpci.c
/freebsd-11-stable/sys/powerpc/powermac/uninorthvar.h
/freebsd-11-stable/sys/powerpc/powermac/vcoregpio.c
/freebsd-11-stable/sys/powerpc/powermac/viareg.h
/freebsd-11-stable/sys/powerpc/powerpc/altivec.c
/freebsd-11-stable/sys/powerpc/powerpc/autoconf.c
/freebsd-11-stable/sys/powerpc/powerpc/bcopy.c
/freebsd-11-stable/sys/powerpc/powerpc/bus_machdep.c
/freebsd-11-stable/sys/powerpc/powerpc/busdma_machdep.c
/freebsd-11-stable/sys/powerpc/powerpc/clock.c
/freebsd-11-stable/sys/powerpc/powerpc/copyinout.c
/freebsd-11-stable/sys/powerpc/powerpc/copystr.c
/freebsd-11-stable/sys/powerpc/powerpc/cpu.c
/freebsd-11-stable/sys/powerpc/powerpc/db_hwwatch.c
/freebsd-11-stable/sys/powerpc/powerpc/dump_machdep.c
/freebsd-11-stable/sys/powerpc/powerpc/elf32_machdep.c
/freebsd-11-stable/sys/powerpc/powerpc/elf64_machdep.c
/freebsd-11-stable/sys/powerpc/powerpc/exec_machdep.c
/freebsd-11-stable/sys/powerpc/powerpc/fpu.c
/freebsd-11-stable/sys/powerpc/powerpc/fuswintr.c
/freebsd-11-stable/sys/powerpc/powerpc/gdb_machdep.c
/freebsd-11-stable/sys/powerpc/powerpc/genassym.c
/freebsd-11-stable/sys/powerpc/powerpc/in_cksum.c
/freebsd-11-stable/sys/powerpc/powerpc/intr_machdep.c
/freebsd-11-stable/sys/powerpc/powerpc/mem.c
/freebsd-11-stable/sys/powerpc/powerpc/mp_machdep.c
/freebsd-11-stable/sys/powerpc/powerpc/openpic.c
/freebsd-11-stable/sys/powerpc/powerpc/platform.c
/freebsd-11-stable/sys/powerpc/powerpc/pmap_dispatch.c
/freebsd-11-stable/sys/powerpc/powerpc/sc_machdep.c
/freebsd-11-stable/sys/powerpc/powerpc/stack_machdep.c
/freebsd-11-stable/sys/powerpc/powerpc/suswintr.c
/freebsd-11-stable/sys/powerpc/powerpc/syncicache.c
/freebsd-11-stable/sys/powerpc/powerpc/sys_machdep.c
/freebsd-11-stable/sys/powerpc/powerpc/uio_machdep.c
/freebsd-11-stable/sys/powerpc/powerpc/vm_machdep.c
/freebsd-11-stable/sys/powerpc/ps3/ehci_ps3.c
/freebsd-11-stable/sys/powerpc/ps3/if_glc.c
/freebsd-11-stable/sys/powerpc/ps3/if_glcreg.h
/freebsd-11-stable/sys/powerpc/ps3/mmu_ps3.c
/freebsd-11-stable/sys/powerpc/ps3/ohci_ps3.c
/freebsd-11-stable/sys/powerpc/ps3/platform_ps3.c
/freebsd-11-stable/sys/powerpc/ps3/ps3_syscons.c
/freebsd-11-stable/sys/powerpc/ps3/ps3bus.c
/freebsd-11-stable/sys/powerpc/ps3/ps3bus.h
/freebsd-11-stable/sys/powerpc/ps3/ps3cdrom.c
/freebsd-11-stable/sys/powerpc/ps3/ps3disk.c
/freebsd-11-stable/sys/powerpc/ps3/ps3pic.c
/freebsd-11-stable/sys/powerpc/pseries/mmu_phyp.c
/freebsd-11-stable/sys/powerpc/pseries/phyp-hvcall.h
/freebsd-11-stable/sys/powerpc/pseries/phyp_console.c
/freebsd-11-stable/sys/powerpc/pseries/phyp_llan.c
/freebsd-11-stable/sys/powerpc/pseries/phyp_vscsi.c
/freebsd-11-stable/sys/powerpc/pseries/platform_chrp.c
/freebsd-11-stable/sys/powerpc/pseries/plpar_iommu.c
/freebsd-11-stable/sys/powerpc/pseries/plpar_iommu.h
/freebsd-11-stable/sys/powerpc/pseries/plpar_pcibus.c
/freebsd-11-stable/sys/powerpc/pseries/rtas_dev.c
/freebsd-11-stable/sys/powerpc/pseries/rtas_pci.c
/freebsd-11-stable/sys/powerpc/pseries/vdevice.c
/freebsd-11-stable/sys/powerpc/pseries/xics.c
/freebsd-11-stable/sys/powerpc/psim/ata_iobus.c
/freebsd-11-stable/sys/powerpc/psim/iobus.c
/freebsd-11-stable/sys/powerpc/psim/iobusvar.h
/freebsd-11-stable/sys/powerpc/psim/openpic_iobus.c
/freebsd-11-stable/sys/powerpc/psim/uart_iobus.c
/freebsd-11-stable/sys/riscv/riscv/in_cksum.c
/freebsd-11-stable/sys/riscv/riscv/pmap.c
/freebsd-11-stable/sys/rpc/auth.h
/freebsd-11-stable/sys/rpc/auth_none.c
/freebsd-11-stable/sys/rpc/auth_unix.c
/freebsd-11-stable/sys/rpc/authunix_prot.c
/freebsd-11-stable/sys/rpc/clnt.h
/freebsd-11-stable/sys/rpc/clnt_dg.c
/freebsd-11-stable/sys/rpc/clnt_vc.c
/freebsd-11-stable/sys/rpc/krpc.h
/freebsd-11-stable/sys/rpc/nettype.h
/freebsd-11-stable/sys/rpc/pmap_prot.h
/freebsd-11-stable/sys/rpc/rpc.h
/freebsd-11-stable/sys/rpc/rpc_callmsg.c
/freebsd-11-stable/sys/rpc/rpc_com.h
/freebsd-11-stable/sys/rpc/rpc_generic.c
/freebsd-11-stable/sys/rpc/rpc_msg.h
/freebsd-11-stable/sys/rpc/rpc_prot.c
/freebsd-11-stable/sys/rpc/rpcb_clnt.c
/freebsd-11-stable/sys/rpc/rpcb_clnt.h
/freebsd-11-stable/sys/rpc/rpcb_prot.c
/freebsd-11-stable/sys/rpc/rpcb_prot.h
/freebsd-11-stable/sys/rpc/rpcm_subs.h
/freebsd-11-stable/sys/rpc/rpcsec_gss/rpcsec_gss.c
/freebsd-11-stable/sys/rpc/rpcsec_gss/rpcsec_gss_int.h
/freebsd-11-stable/sys/rpc/rpcsec_gss/rpcsec_gss_prot.c
/freebsd-11-stable/sys/rpc/rpcsec_gss/svc_rpcsec_gss.c
/freebsd-11-stable/sys/rpc/svc.c
/freebsd-11-stable/sys/rpc/svc.h
/freebsd-11-stable/sys/rpc/svc_auth.c
/freebsd-11-stable/sys/rpc/svc_auth.h
/freebsd-11-stable/sys/rpc/svc_auth_unix.c
/freebsd-11-stable/sys/rpc/svc_dg.c
/freebsd-11-stable/sys/rpc/svc_generic.c
/freebsd-11-stable/sys/rpc/svc_vc.c
/freebsd-11-stable/sys/rpc/types.h
/freebsd-11-stable/sys/rpc/xdr.h
/freebsd-11-stable/sys/security/audit/audit.c
/freebsd-11-stable/sys/security/audit/audit.h
/freebsd-11-stable/sys/security/audit/audit_arg.c
/freebsd-11-stable/sys/security/audit/audit_bsm.c
/freebsd-11-stable/sys/security/audit/audit_bsm_klib.c
/freebsd-11-stable/sys/security/audit/audit_private.h
/freebsd-11-stable/sys/security/audit/audit_syscalls.c
/freebsd-11-stable/sys/security/audit/audit_worker.c
/freebsd-11-stable/sys/security/audit/bsm_domain.c
/freebsd-11-stable/sys/security/audit/bsm_errno.c
/freebsd-11-stable/sys/security/audit/bsm_fcntl.c
/freebsd-11-stable/sys/security/audit/bsm_socket_type.c
/freebsd-11-stable/sys/security/audit/bsm_token.c
/freebsd-11-stable/sys/sparc64/include/_types.h
/freebsd-11-stable/sys/sparc64/include/asm.h
/freebsd-11-stable/sys/sparc64/include/bus_common.h
/freebsd-11-stable/sys/sparc64/include/cache.h
/freebsd-11-stable/sys/sparc64/include/cpu.h
/freebsd-11-stable/sys/sparc64/include/endian.h
/freebsd-11-stable/sys/sparc64/include/float.h
/freebsd-11-stable/sys/sparc64/include/floatingpoint.h
/freebsd-11-stable/sys/sparc64/include/ieee.h
/freebsd-11-stable/sys/sparc64/include/in_cksum.h
/freebsd-11-stable/sys/sparc64/include/iommureg.h
/freebsd-11-stable/sys/sparc64/include/md_var.h
/freebsd-11-stable/sys/sparc64/include/pmap.h
/freebsd-11-stable/sys/sparc64/include/proc.h
/freebsd-11-stable/sys/sparc64/include/ptrace.h
/freebsd-11-stable/sys/sparc64/include/reg.h
/freebsd-11-stable/sys/sparc64/include/reloc.h
/freebsd-11-stable/sys/sparc64/include/setjmp.h
/freebsd-11-stable/sys/sparc64/include/signal.h
/freebsd-11-stable/sys/sparc64/include/sysarch.h
/freebsd-11-stable/sys/sparc64/include/varargs.h
/freebsd-11-stable/sys/sparc64/include/vmparam.h
/freebsd-11-stable/sys/sparc64/sparc64/cache.c
/freebsd-11-stable/sys/sparc64/sparc64/eeprom.c
/freebsd-11-stable/sys/sparc64/sparc64/in_cksum.c
/freebsd-11-stable/sys/sparc64/sparc64/intr_machdep.c
/freebsd-11-stable/sys/sparc64/sparc64/machdep.c
/freebsd-11-stable/sys/sparc64/sparc64/mem.c
/freebsd-11-stable/sys/sparc64/sparc64/pmap.c
/freebsd-11-stable/sys/sparc64/sparc64/trap.c
/freebsd-11-stable/sys/sparc64/sparc64/uio_machdep.c
/freebsd-11-stable/sys/sparc64/sparc64/vm_machdep.c
/freebsd-11-stable/sys/sys/_bitset.h
/freebsd-11-stable/sys/sys/_bus_dma.h
/freebsd-11-stable/sys/sys/_callout.h
/freebsd-11-stable/sys/sys/_cpuset.h
/freebsd-11-stable/sys/sys/_ffcounter.h
/freebsd-11-stable/sys/sys/_iovec.h
/freebsd-11-stable/sys/sys/_kstack_cache.h
/freebsd-11-stable/sys/sys/_lock.h
/freebsd-11-stable/sys/sys/_lockmgr.h
/freebsd-11-stable/sys/sys/_mutex.h
/freebsd-11-stable/sys/sys/_null.h
/freebsd-11-stable/sys/sys/_pctrie.h
/freebsd-11-stable/sys/sys/_pthreadtypes.h
/freebsd-11-stable/sys/sys/_rmlock.h
/freebsd-11-stable/sys/sys/_rwlock.h
/freebsd-11-stable/sys/sys/_semaphore.h
/freebsd-11-stable/sys/sys/_sigset.h
/freebsd-11-stable/sys/sys/_sockaddr_storage.h
/freebsd-11-stable/sys/sys/_stack.h
/freebsd-11-stable/sys/sys/_stdint.h
/freebsd-11-stable/sys/sys/_sx.h
/freebsd-11-stable/sys/sys/_task.h
/freebsd-11-stable/sys/sys/_termios.h
/freebsd-11-stable/sys/sys/_timespec.h
/freebsd-11-stable/sys/sys/_timeval.h
/freebsd-11-stable/sys/sys/_types.h
/freebsd-11-stable/sys/sys/_umtx.h
/freebsd-11-stable/sys/sys/_unrhdr.h
/freebsd-11-stable/sys/sys/aac_ioctl.h
/freebsd-11-stable/sys/sys/acct.h
/freebsd-11-stable/sys/sys/acl.h
/freebsd-11-stable/sys/sys/agpio.h
/freebsd-11-stable/sys/sys/aio.h
/freebsd-11-stable/sys/sys/alq.h
/freebsd-11-stable/sys/sys/assym.h
/freebsd-11-stable/sys/sys/ata.h
/freebsd-11-stable/sys/sys/bio.h
/freebsd-11-stable/sys/sys/bitset.h
/freebsd-11-stable/sys/sys/bitstring.h
/freebsd-11-stable/sys/sys/blist.h
/freebsd-11-stable/sys/sys/boot.h
/freebsd-11-stable/sys/sys/buf.h
/freebsd-11-stable/sys/sys/buf_ring.h
/freebsd-11-stable/sys/sys/bufobj.h
/freebsd-11-stable/sys/sys/bus.h
/freebsd-11-stable/sys/sys/bus_dma.h
/freebsd-11-stable/sys/sys/busdma_bufalloc.h
/freebsd-11-stable/sys/sys/callout.h
/freebsd-11-stable/sys/sys/capability.h
/freebsd-11-stable/sys/sys/caprights.h
/freebsd-11-stable/sys/sys/cdefs.h
/freebsd-11-stable/sys/sys/cdrio.h
/freebsd-11-stable/sys/sys/cfictl.h
/freebsd-11-stable/sys/sys/chio.h
/freebsd-11-stable/sys/sys/clock.h
/freebsd-11-stable/sys/sys/condvar.h
/freebsd-11-stable/sys/sys/conf.h
/freebsd-11-stable/sys/sys/cons.h
/freebsd-11-stable/sys/sys/consio.h
/freebsd-11-stable/sys/sys/copyright.h
/freebsd-11-stable/sys/sys/counter.h
/freebsd-11-stable/sys/sys/cpu.h
/freebsd-11-stable/sys/sys/cpuctl.h
/freebsd-11-stable/sys/sys/cpuset.h
/freebsd-11-stable/sys/sys/ctype.h
/freebsd-11-stable/sys/sys/devicestat.h
/freebsd-11-stable/sys/sys/digiio.h
/freebsd-11-stable/sys/sys/dir.h
/freebsd-11-stable/sys/sys/dirent.h
/freebsd-11-stable/sys/sys/disklabel.h
/freebsd-11-stable/sys/sys/diskmbr.h
/freebsd-11-stable/sys/sys/dkstat.h
/freebsd-11-stable/sys/sys/domain.h
/freebsd-11-stable/sys/sys/dtrace_bsd.h
/freebsd-11-stable/sys/sys/dvdio.h
/freebsd-11-stable/sys/sys/elf.h
/freebsd-11-stable/sys/sys/elf32.h
/freebsd-11-stable/sys/sys/elf64.h
/freebsd-11-stable/sys/sys/elf_common.h
/freebsd-11-stable/sys/sys/elf_generic.h
/freebsd-11-stable/sys/sys/endian.h
/freebsd-11-stable/sys/sys/errno.h
/freebsd-11-stable/sys/sys/eui64.h
/freebsd-11-stable/sys/sys/event.h
/freebsd-11-stable/sys/sys/eventhandler.h
/freebsd-11-stable/sys/sys/eventvar.h
/freebsd-11-stable/sys/sys/exec.h
/freebsd-11-stable/sys/sys/extattr.h
/freebsd-11-stable/sys/sys/fail.h
/freebsd-11-stable/sys/sys/fbio.h
/freebsd-11-stable/sys/sys/fcntl.h
/freebsd-11-stable/sys/sys/fdcio.h
/freebsd-11-stable/sys/sys/file.h
/freebsd-11-stable/sys/sys/filedesc.h
/freebsd-11-stable/sys/sys/filio.h
/freebsd-11-stable/sys/sys/firmware.h
/freebsd-11-stable/sys/sys/gmon.h
/freebsd-11-stable/sys/sys/gpio.h
/freebsd-11-stable/sys/sys/gpt.h
/freebsd-11-stable/sys/sys/hash.h
/freebsd-11-stable/sys/sys/hhook.h
/freebsd-11-stable/sys/sys/iconv.h
/freebsd-11-stable/sys/sys/imgact.h
/freebsd-11-stable/sys/sys/imgact_aout.h
/freebsd-11-stable/sys/sys/imgact_elf.h
/freebsd-11-stable/sys/sys/interrupt.h
/freebsd-11-stable/sys/sys/ioccom.h
/freebsd-11-stable/sys/sys/ioctl.h
/freebsd-11-stable/sys/sys/ioctl_compat.h
/freebsd-11-stable/sys/sys/ipc.h
/freebsd-11-stable/sys/sys/ipmi.h
/freebsd-11-stable/sys/sys/jail.h
/freebsd-11-stable/sys/sys/joystick.h
/freebsd-11-stable/sys/sys/kdb.h
/freebsd-11-stable/sys/sys/kenv.h
/freebsd-11-stable/sys/sys/kernel.h
/freebsd-11-stable/sys/sys/kerneldump.h
/freebsd-11-stable/sys/sys/khelp.h
/freebsd-11-stable/sys/sys/kobj.h
/freebsd-11-stable/sys/sys/ksem.h
/freebsd-11-stable/sys/sys/kthread.h
/freebsd-11-stable/sys/sys/ktr.h
/freebsd-11-stable/sys/sys/ktr_class.h
/freebsd-11-stable/sys/sys/ktrace.h
/freebsd-11-stable/sys/sys/libkern.h
/freebsd-11-stable/sys/sys/limits.h
/freebsd-11-stable/sys/sys/link_aout.h
/freebsd-11-stable/sys/sys/link_elf.h
/freebsd-11-stable/sys/sys/linker.h
/freebsd-11-stable/sys/sys/linker_set.h
/freebsd-11-stable/sys/sys/lock.h
/freebsd-11-stable/sys/sys/lock_profile.h
/freebsd-11-stable/sys/sys/lockf.h
/freebsd-11-stable/sys/sys/lockmgr.h
/freebsd-11-stable/sys/sys/lockstat.h
/freebsd-11-stable/sys/sys/loginclass.h
/freebsd-11-stable/sys/sys/mac.h
/freebsd-11-stable/sys/sys/malloc.h
/freebsd-11-stable/sys/sys/mbuf.h
/freebsd-11-stable/sys/sys/mchain.h
/freebsd-11-stable/sys/sys/mdioctl.h
/freebsd-11-stable/sys/sys/memdesc.h
/freebsd-11-stable/sys/sys/mman.h
/freebsd-11-stable/sys/sys/module.h
/freebsd-11-stable/sys/sys/module_khelp.h
/freebsd-11-stable/sys/sys/mount.h
/freebsd-11-stable/sys/sys/mpt_ioctl.h
/freebsd-11-stable/sys/sys/mqueue.h
/freebsd-11-stable/sys/sys/msg.h
/freebsd-11-stable/sys/sys/msgbuf.h
/freebsd-11-stable/sys/sys/mtio.h
/freebsd-11-stable/sys/sys/mutex.h
/freebsd-11-stable/sys/sys/namei.h
/freebsd-11-stable/sys/sys/nlist_aout.h
/freebsd-11-stable/sys/sys/osd.h
/freebsd-11-stable/sys/sys/param.h
/freebsd-11-stable/sys/sys/pciio.h
/freebsd-11-stable/sys/sys/pcpu.h
/freebsd-11-stable/sys/sys/pctrie.h
/freebsd-11-stable/sys/sys/pioctl.h
/freebsd-11-stable/sys/sys/pmc.h
/freebsd-11-stable/sys/sys/pmckern.h
/freebsd-11-stable/sys/sys/pmclog.h
/freebsd-11-stable/sys/sys/poll.h
/freebsd-11-stable/sys/sys/posix4.h
/freebsd-11-stable/sys/sys/power.h
/freebsd-11-stable/sys/sys/priority.h
/freebsd-11-stable/sys/sys/priv.h
/freebsd-11-stable/sys/sys/proc.h
/freebsd-11-stable/sys/sys/procctl.h
/freebsd-11-stable/sys/sys/procdesc.h
/freebsd-11-stable/sys/sys/procfs.h
/freebsd-11-stable/sys/sys/protosw.h
/freebsd-11-stable/sys/sys/ptio.h
/freebsd-11-stable/sys/sys/ptrace.h
/freebsd-11-stable/sys/sys/queue.h
/freebsd-11-stable/sys/sys/racct.h
/freebsd-11-stable/sys/sys/random.h
/freebsd-11-stable/sys/sys/rangelock.h
/freebsd-11-stable/sys/sys/rctl.h
/freebsd-11-stable/sys/sys/reboot.h
/freebsd-11-stable/sys/sys/refcount.h
/freebsd-11-stable/sys/sys/regression.h
/freebsd-11-stable/sys/sys/resource.h
/freebsd-11-stable/sys/sys/resourcevar.h
/freebsd-11-stable/sys/sys/rmlock.h
/freebsd-11-stable/sys/sys/rtprio.h
/freebsd-11-stable/sys/sys/runq.h
/freebsd-11-stable/sys/sys/rwlock.h
/freebsd-11-stable/sys/sys/sbuf.h
/freebsd-11-stable/sys/sys/sched.h
/freebsd-11-stable/sys/sys/sdt.h
/freebsd-11-stable/sys/sys/select.h
/freebsd-11-stable/sys/sys/selinfo.h
/freebsd-11-stable/sys/sys/sema.h
/freebsd-11-stable/sys/sys/serial.h
/freebsd-11-stable/sys/sys/sf_buf.h
/freebsd-11-stable/sys/sys/sglist.h
/freebsd-11-stable/sys/sys/shm.h
/freebsd-11-stable/sys/sys/sigio.h
/freebsd-11-stable/sys/sys/signal.h
/freebsd-11-stable/sys/sys/signalvar.h
/freebsd-11-stable/sys/sys/sleepqueue.h
/freebsd-11-stable/sys/sys/slicer.h
/freebsd-11-stable/sys/sys/snoop.h
/freebsd-11-stable/sys/sys/sockbuf.h
/freebsd-11-stable/sys/sys/socket.h
/freebsd-11-stable/sys/sys/socketvar.h
/freebsd-11-stable/sys/sys/sockio.h
/freebsd-11-stable/sys/sys/sockopt.h
/freebsd-11-stable/sys/sys/stack.h
/freebsd-11-stable/sys/sys/stat.h
/freebsd-11-stable/sys/sys/stdatomic.h
/freebsd-11-stable/sys/sys/stddef.h
/freebsd-11-stable/sys/sys/stdint.h
/freebsd-11-stable/sys/sys/sun_disklabel.h
/freebsd-11-stable/sys/sys/sx.h
/freebsd-11-stable/sys/sys/syscallsubr.h
/freebsd-11-stable/sys/sys/sysctl.h
/freebsd-11-stable/sys/sys/sysent.h
/freebsd-11-stable/sys/sys/syslimits.h
/freebsd-11-stable/sys/sys/syslog.h
/freebsd-11-stable/sys/sys/systm.h
/freebsd-11-stable/sys/sys/taskqueue.h
/freebsd-11-stable/sys/sys/terminal.h
/freebsd-11-stable/sys/sys/thr.h
/freebsd-11-stable/sys/sys/tiio.h
/freebsd-11-stable/sys/sys/time.h
/freebsd-11-stable/sys/sys/timeb.h
/freebsd-11-stable/sys/sys/timeet.h
/freebsd-11-stable/sys/sys/timeffc.h
/freebsd-11-stable/sys/sys/timers.h
/freebsd-11-stable/sys/sys/times.h
/freebsd-11-stable/sys/sys/timespec.h
/freebsd-11-stable/sys/sys/tree.h
/freebsd-11-stable/sys/sys/tty.h
/freebsd-11-stable/sys/sys/ttycom.h
/freebsd-11-stable/sys/sys/ttydefaults.h
/freebsd-11-stable/sys/sys/ttydevsw.h
/freebsd-11-stable/sys/sys/ttydisc.h
/freebsd-11-stable/sys/sys/ttyhook.h
/freebsd-11-stable/sys/sys/ttyqueue.h
/freebsd-11-stable/sys/sys/turnstile.h
/freebsd-11-stable/sys/sys/types.h
/freebsd-11-stable/sys/sys/ucontext.h
/freebsd-11-stable/sys/sys/ucred.h
/freebsd-11-stable/sys/sys/uio.h
/freebsd-11-stable/sys/sys/umtx.h
/freebsd-11-stable/sys/sys/un.h
/freebsd-11-stable/sys/sys/unistd.h
/freebsd-11-stable/sys/sys/unpcb.h
/freebsd-11-stable/sys/sys/user.h
/freebsd-11-stable/sys/sys/utsname.h
/freebsd-11-stable/sys/sys/uuid.h
/freebsd-11-stable/sys/sys/vdso.h
/freebsd-11-stable/sys/sys/vmem.h
/freebsd-11-stable/sys/sys/vmmeter.h
/freebsd-11-stable/sys/sys/vnode.h
/freebsd-11-stable/sys/sys/wait.h
/freebsd-11-stable/sys/sys/watchdog.h
/freebsd-11-stable/sys/tools/makeobjops.awk
/freebsd-11-stable/sys/tools/vnode_if.awk
/freebsd-11-stable/sys/ufs/ffs/ffs_alloc.c
/freebsd-11-stable/sys/ufs/ffs/ffs_balloc.c
/freebsd-11-stable/sys/ufs/ffs/ffs_extern.h
/freebsd-11-stable/sys/ufs/ffs/ffs_inode.c
/freebsd-11-stable/sys/ufs/ffs/ffs_subr.c
/freebsd-11-stable/sys/ufs/ffs/ffs_tables.c
/freebsd-11-stable/sys/ufs/ffs/ffs_vfsops.c
/freebsd-11-stable/sys/ufs/ffs/ffs_vnops.c
/freebsd-11-stable/sys/ufs/ffs/fs.h
/freebsd-11-stable/sys/ufs/ufs/dir.h
/freebsd-11-stable/sys/ufs/ufs/inode.h
/freebsd-11-stable/sys/ufs/ufs/quota.h
/freebsd-11-stable/sys/ufs/ufs/ufs_bmap.c
/freebsd-11-stable/sys/ufs/ufs/ufs_extern.h
/freebsd-11-stable/sys/ufs/ufs/ufs_inode.c
/freebsd-11-stable/sys/ufs/ufs/ufs_lookup.c
/freebsd-11-stable/sys/ufs/ufs/ufs_quota.c
/freebsd-11-stable/sys/ufs/ufs/ufs_vfsops.c
/freebsd-11-stable/sys/ufs/ufs/ufs_vnops.c
/freebsd-11-stable/sys/ufs/ufs/ufsmount.h
/freebsd-11-stable/sys/vm/device_pager.c
/freebsd-11-stable/sys/vm/pmap.h
/freebsd-11-stable/sys/vm/swap_pager.c
/freebsd-11-stable/sys/vm/swap_pager.h
/freebsd-11-stable/sys/vm/vm.h
/freebsd-11-stable/sys/vm/vm_extern.h
/freebsd-11-stable/sys/vm/vm_fault.c
/freebsd-11-stable/sys/vm/vm_glue.c
/freebsd-11-stable/sys/vm/vm_init.c
/freebsd-11-stable/sys/vm/vm_kern.c
/freebsd-11-stable/sys/vm/vm_kern.h
/freebsd-11-stable/sys/vm/vm_map.c
/freebsd-11-stable/sys/vm/vm_map.h
/freebsd-11-stable/sys/vm/vm_meter.c
/freebsd-11-stable/sys/vm/vm_mmap.c
/freebsd-11-stable/sys/vm/vm_object.c
/freebsd-11-stable/sys/vm/vm_object.h
/freebsd-11-stable/sys/vm/vm_page.c
/freebsd-11-stable/sys/vm/vm_page.h
/freebsd-11-stable/sys/vm/vm_pageout.c
/freebsd-11-stable/sys/vm/vm_pageout.h
/freebsd-11-stable/sys/vm/vm_pager.c
/freebsd-11-stable/sys/vm/vm_pager.h
/freebsd-11-stable/sys/vm/vm_param.h
/freebsd-11-stable/sys/vm/vm_unix.c
/freebsd-11-stable/sys/vm/vnode_pager.c
/freebsd-11-stable/sys/vm/vnode_pager.h
/freebsd-11-stable/sys/x86/include/_align.h
/freebsd-11-stable/sys/x86/include/_limits.h
/freebsd-11-stable/sys/x86/include/_types.h
/freebsd-11-stable/sys/x86/include/endian.h
/freebsd-11-stable/sys/x86/include/float.h
/freebsd-11-stable/sys/x86/include/frame.h
/freebsd-11-stable/sys/x86/include/psl.h
/freebsd-11-stable/sys/x86/include/ptrace.h
/freebsd-11-stable/sys/x86/include/reg.h
/freebsd-11-stable/sys/x86/include/segments.h
/freebsd-11-stable/sys/x86/include/setjmp.h
/freebsd-11-stable/sys/x86/include/signal.h
/freebsd-11-stable/sys/x86/include/specialreg.h
/freebsd-11-stable/sys/x86/include/stdarg.h
/freebsd-11-stable/sys/x86/include/sysarch.h
/freebsd-11-stable/sys/x86/include/trap.h
/freebsd-11-stable/sys/x86/isa/clock.c
/freebsd-11-stable/sys/x86/isa/icu.h
/freebsd-11-stable/sys/x86/isa/isa_dma.c
/freebsd-11-stable/sys/x86/isa/nmi.c
/freebsd-11-stable/sys/x86/x86/delay.c
/freebsd-11-stable/sys/x86/x86/msi.c
/freebsd-11-stable/tools/regression/aio/aiop/aiop.c
/freebsd-11-stable/tools/regression/p1003_1b/fifo.c
/freebsd-11-stable/tools/regression/p1003_1b/memlock.c
/freebsd-11-stable/tools/regression/p1003_1b/p26.c
/freebsd-11-stable/tools/regression/p1003_1b/sched.c
/freebsd-11-stable/tools/regression/p1003_1b/yield.c
/freebsd-11-stable/tools/regression/posixsem/posixsem.c
/freebsd-11-stable/tools/regression/posixsem/test.c
/freebsd-11-stable/tools/regression/posixsem/test.h
/freebsd-11-stable/tools/test/hwpmc/pmctest.py
/freebsd-11-stable/tools/tools/cxgbtool/cxgbtool.c
/freebsd-11-stable/tools/tools/pirtool/pirtable.h
/freebsd-11-stable/tools/tools/pirtool/pirtool.c
/freebsd-11-stable/tools/tools/vxge/vxge_cmn.h
/freebsd-11-stable/tools/tools/vxge/vxge_info.c
/freebsd-11-stable/tools/tools/vxge/vxge_info.h
/freebsd-11-stable/tools/tools/vxge/vxge_log.c
/freebsd-11-stable/tools/tools/vxge/vxge_log.h
/freebsd-11-stable/usr.bin/apply/apply.c
/freebsd-11-stable/usr.bin/ar/ar.c
/freebsd-11-stable/usr.bin/banner/banner.c
/freebsd-11-stable/usr.bin/basename/basename.c
/freebsd-11-stable/usr.bin/biff/biff.c
/freebsd-11-stable/usr.bin/calendar/calendar.c
/freebsd-11-stable/usr.bin/calendar/calendar.h
/freebsd-11-stable/usr.bin/calendar/day.c
/freebsd-11-stable/usr.bin/calendar/io.c
/freebsd-11-stable/usr.bin/calendar/locale.c
/freebsd-11-stable/usr.bin/calendar/pathnames.h
/freebsd-11-stable/usr.bin/calendar/pom.c
/freebsd-11-stable/usr.bin/cap_mkdb/cap_mkdb.c
/freebsd-11-stable/usr.bin/chpass/chpass.c
/freebsd-11-stable/usr.bin/chpass/chpass.h
/freebsd-11-stable/usr.bin/chpass/edit.c
/freebsd-11-stable/usr.bin/chpass/field.c
/freebsd-11-stable/usr.bin/chpass/table.c
/freebsd-11-stable/usr.bin/chpass/util.c
/freebsd-11-stable/usr.bin/cksum/cksum.c
/freebsd-11-stable/usr.bin/cksum/crc.c
/freebsd-11-stable/usr.bin/cksum/extern.h
/freebsd-11-stable/usr.bin/cksum/print.c
/freebsd-11-stable/usr.bin/cksum/sum1.c
/freebsd-11-stable/usr.bin/cksum/sum2.c
/freebsd-11-stable/usr.bin/cmp/cmp.c
/freebsd-11-stable/usr.bin/cmp/extern.h
/freebsd-11-stable/usr.bin/cmp/misc.c
/freebsd-11-stable/usr.bin/cmp/regular.c
/freebsd-11-stable/usr.bin/cmp/special.c
/freebsd-11-stable/usr.bin/col/col.c
/freebsd-11-stable/usr.bin/colrm/colrm.c
/freebsd-11-stable/usr.bin/column/column.c
/freebsd-11-stable/usr.bin/comm/comm.c
/freebsd-11-stable/usr.bin/compress/compress.c
/freebsd-11-stable/usr.bin/compress/zopen.c
/freebsd-11-stable/usr.bin/ctags/C.c
/freebsd-11-stable/usr.bin/ctags/ctags.c
/freebsd-11-stable/usr.bin/ctags/ctags.h
/freebsd-11-stable/usr.bin/ctags/fortran.c
/freebsd-11-stable/usr.bin/ctags/lisp.c
/freebsd-11-stable/usr.bin/ctags/print.c
/freebsd-11-stable/usr.bin/ctags/tree.c
/freebsd-11-stable/usr.bin/ctags/yacc.c
/freebsd-11-stable/usr.bin/cut/cut.c
/freebsd-11-stable/usr.bin/dirname/dirname.c
/freebsd-11-stable/usr.bin/du/du.c
/freebsd-11-stable/usr.bin/env/env.c
/freebsd-11-stable/usr.bin/expand/expand.c
/freebsd-11-stable/usr.bin/false/false.c
/freebsd-11-stable/usr.bin/find/extern.h
/freebsd-11-stable/usr.bin/find/find.c
/freebsd-11-stable/usr.bin/find/find.h
/freebsd-11-stable/usr.bin/find/function.c
/freebsd-11-stable/usr.bin/find/ls.c
/freebsd-11-stable/usr.bin/find/main.c
/freebsd-11-stable/usr.bin/find/misc.c
/freebsd-11-stable/usr.bin/find/operator.c
/freebsd-11-stable/usr.bin/find/option.c
/freebsd-11-stable/usr.bin/finger/extern.h
/freebsd-11-stable/usr.bin/finger/finger.c
/freebsd-11-stable/usr.bin/finger/finger.h
/freebsd-11-stable/usr.bin/finger/lprint.c
/freebsd-11-stable/usr.bin/finger/net.c
/freebsd-11-stable/usr.bin/finger/sprint.c
/freebsd-11-stable/usr.bin/finger/util.c
/freebsd-11-stable/usr.bin/fold/fold.c
/freebsd-11-stable/usr.bin/from/from.c
/freebsd-11-stable/usr.bin/fstat/fstat.c
/freebsd-11-stable/usr.bin/gcore/extern.h
/freebsd-11-stable/usr.bin/gcore/gcore.c
/freebsd-11-stable/usr.bin/gprof/amd64.h
/freebsd-11-stable/usr.bin/gprof/aout.c
/freebsd-11-stable/usr.bin/gprof/arcs.c
/freebsd-11-stable/usr.bin/gprof/arm.h
/freebsd-11-stable/usr.bin/gprof/dfn.c
/freebsd-11-stable/usr.bin/gprof/elf.c
/freebsd-11-stable/usr.bin/gprof/gprof.c
/freebsd-11-stable/usr.bin/gprof/gprof.h
/freebsd-11-stable/usr.bin/gprof/hertz.c
/freebsd-11-stable/usr.bin/gprof/i386.h
/freebsd-11-stable/usr.bin/gprof/lookup.c
/freebsd-11-stable/usr.bin/gprof/mips.h
/freebsd-11-stable/usr.bin/gprof/pathnames.h
/freebsd-11-stable/usr.bin/gprof/powerpc.h
/freebsd-11-stable/usr.bin/gprof/printgprof.c
/freebsd-11-stable/usr.bin/gprof/printlist.c
/freebsd-11-stable/usr.bin/gprof/sparc64.h
/freebsd-11-stable/usr.bin/gzip/zuncompress.c
/freebsd-11-stable/usr.bin/head/head.c
/freebsd-11-stable/usr.bin/hexdump/conv.c
/freebsd-11-stable/usr.bin/hexdump/display.c
/freebsd-11-stable/usr.bin/hexdump/hexdump.c
/freebsd-11-stable/usr.bin/hexdump/hexdump.h
/freebsd-11-stable/usr.bin/hexdump/hexsyntax.c
/freebsd-11-stable/usr.bin/hexdump/odsyntax.c
/freebsd-11-stable/usr.bin/hexdump/parse.c
/freebsd-11-stable/usr.bin/id/id.c
/freebsd-11-stable/usr.bin/indent/args.c
/freebsd-11-stable/usr.bin/indent/indent.c
/freebsd-11-stable/usr.bin/indent/indent_codes.h
/freebsd-11-stable/usr.bin/indent/indent_globs.h
/freebsd-11-stable/usr.bin/indent/io.c
/freebsd-11-stable/usr.bin/indent/lexi.c
/freebsd-11-stable/usr.bin/indent/parse.c
/freebsd-11-stable/usr.bin/indent/pr_comment.c
/freebsd-11-stable/usr.bin/join/join.c
/freebsd-11-stable/usr.bin/jot/jot.c
/freebsd-11-stable/usr.bin/kdump/kdump.c
/freebsd-11-stable/usr.bin/ktrace/ktrace.c
/freebsd-11-stable/usr.bin/ktrace/ktrace.h
/freebsd-11-stable/usr.bin/ktrace/subr.c
/freebsd-11-stable/usr.bin/lam/lam.c
/freebsd-11-stable/usr.bin/last/last.c
/freebsd-11-stable/usr.bin/lastcomm/lastcomm.c
/freebsd-11-stable/usr.bin/lastcomm/pathnames.h
/freebsd-11-stable/usr.bin/leave/leave.c
/freebsd-11-stable/usr.bin/lex/initparse.c
/freebsd-11-stable/usr.bin/locate/bigram/locate.bigram.c
/freebsd-11-stable/usr.bin/locate/code/locate.code.c
/freebsd-11-stable/usr.bin/locate/locate/fastfind.c
/freebsd-11-stable/usr.bin/locate/locate/locate.c
/freebsd-11-stable/usr.bin/locate/locate/locate.h
/freebsd-11-stable/usr.bin/locate/locate/util.c
/freebsd-11-stable/usr.bin/lock/lock.c
/freebsd-11-stable/usr.bin/logger/logger.c
/freebsd-11-stable/usr.bin/login/login.c
/freebsd-11-stable/usr.bin/login/login_audit.c
/freebsd-11-stable/usr.bin/login/pathnames.h
/freebsd-11-stable/usr.bin/logname/logname.c
/freebsd-11-stable/usr.bin/look/look.c
/freebsd-11-stable/usr.bin/look/pathnames.h
/freebsd-11-stable/usr.bin/lorder/lorder.sh
/freebsd-11-stable/usr.bin/m4/eval.c
/freebsd-11-stable/usr.bin/m4/extern.h
/freebsd-11-stable/usr.bin/m4/look.c
/freebsd-11-stable/usr.bin/m4/main.c
/freebsd-11-stable/usr.bin/m4/mdef.h
/freebsd-11-stable/usr.bin/m4/misc.c
/freebsd-11-stable/usr.bin/m4/pathnames.h
/freebsd-11-stable/usr.bin/m4/stdd.h
/freebsd-11-stable/usr.bin/mail/cmd1.c
/freebsd-11-stable/usr.bin/mail/cmd2.c
/freebsd-11-stable/usr.bin/mail/cmd3.c
/freebsd-11-stable/usr.bin/mail/cmdtab.c
/freebsd-11-stable/usr.bin/mail/collect.c
/freebsd-11-stable/usr.bin/mail/def.h
/freebsd-11-stable/usr.bin/mail/edit.c
/freebsd-11-stable/usr.bin/mail/extern.h
/freebsd-11-stable/usr.bin/mail/fio.c
/freebsd-11-stable/usr.bin/mail/getname.c
/freebsd-11-stable/usr.bin/mail/glob.h
/freebsd-11-stable/usr.bin/mail/head.c
/freebsd-11-stable/usr.bin/mail/lex.c
/freebsd-11-stable/usr.bin/mail/list.c
/freebsd-11-stable/usr.bin/mail/main.c
/freebsd-11-stable/usr.bin/mail/names.c
/freebsd-11-stable/usr.bin/mail/pathnames.h
/freebsd-11-stable/usr.bin/mail/popen.c
/freebsd-11-stable/usr.bin/mail/quit.c
/freebsd-11-stable/usr.bin/mail/rcv.h
/freebsd-11-stable/usr.bin/mail/send.c
/freebsd-11-stable/usr.bin/mail/strings.c
/freebsd-11-stable/usr.bin/mail/temp.c
/freebsd-11-stable/usr.bin/mail/tty.c
/freebsd-11-stable/usr.bin/mail/util.c
/freebsd-11-stable/usr.bin/mail/v7.local.c
/freebsd-11-stable/usr.bin/mail/vars.c
/freebsd-11-stable/usr.bin/mail/version.c
/freebsd-11-stable/usr.bin/mesg/mesg.c
/freebsd-11-stable/usr.bin/mkdep/mkdep.gcc.sh
/freebsd-11-stable/usr.bin/mkdep/mkdep.sh
/freebsd-11-stable/usr.bin/mkfifo/mkfifo.c
/freebsd-11-stable/usr.bin/mklocale/extern.h
/freebsd-11-stable/usr.bin/mklocale/ldef.h
/freebsd-11-stable/usr.bin/mklocale/lex.l
/freebsd-11-stable/usr.bin/mklocale/yacc.y
/freebsd-11-stable/usr.bin/mkstr/mkstr.c
/freebsd-11-stable/usr.bin/msgs/msgs.c
/freebsd-11-stable/usr.bin/msgs/pathnames.h
/freebsd-11-stable/usr.bin/mt/mt.c
/freebsd-11-stable/usr.bin/netstat/if.c
/freebsd-11-stable/usr.bin/netstat/inet6.c
/freebsd-11-stable/usr.bin/netstat/ipsec.c
/freebsd-11-stable/usr.bin/netstat/main.c
/freebsd-11-stable/usr.bin/netstat/mbuf.c
/freebsd-11-stable/usr.bin/netstat/mroute.c
/freebsd-11-stable/usr.bin/netstat/mroute6.c
/freebsd-11-stable/usr.bin/netstat/netstat.h
/freebsd-11-stable/usr.bin/netstat/pfkey.c
/freebsd-11-stable/usr.bin/netstat/route.c
/freebsd-11-stable/usr.bin/netstat/sctp.c
/freebsd-11-stable/usr.bin/netstat/unix.c
/freebsd-11-stable/usr.bin/nice/nice.c
/freebsd-11-stable/usr.bin/nohup/nohup.c
/freebsd-11-stable/usr.bin/pagesize/pagesize.sh
/freebsd-11-stable/usr.bin/paste/paste.c
/freebsd-11-stable/usr.bin/patch/mkpath.c
/freebsd-11-stable/usr.bin/pr/egetopt.c
/freebsd-11-stable/usr.bin/pr/extern.h
/freebsd-11-stable/usr.bin/pr/pr.c
/freebsd-11-stable/usr.bin/pr/pr.h
/freebsd-11-stable/usr.bin/printenv/printenv.c
/freebsd-11-stable/usr.bin/printf/printf.c
/freebsd-11-stable/usr.bin/quota/quota.c
/freebsd-11-stable/usr.bin/renice/renice.c
/freebsd-11-stable/usr.bin/rev/rev.c
/freebsd-11-stable/usr.bin/rs/rs.c
/freebsd-11-stable/usr.bin/rup/rup.c
/freebsd-11-stable/usr.bin/ruptime/ruptime.c
/freebsd-11-stable/usr.bin/rusers/rusers.c
/freebsd-11-stable/usr.bin/rwall/rwall.c
/freebsd-11-stable/usr.bin/rwho/rwho.c
/freebsd-11-stable/usr.bin/script/script.c
/freebsd-11-stable/usr.bin/sed/compile.c
/freebsd-11-stable/usr.bin/sed/defs.h
/freebsd-11-stable/usr.bin/sed/extern.h
/freebsd-11-stable/usr.bin/sed/main.c
/freebsd-11-stable/usr.bin/sed/misc.c
/freebsd-11-stable/usr.bin/sed/process.c
/freebsd-11-stable/usr.bin/shar/shar.sh
/freebsd-11-stable/usr.bin/showmount/showmount.c
/freebsd-11-stable/usr.bin/split/split.c
/freebsd-11-stable/usr.bin/su/su.c
/freebsd-11-stable/usr.bin/systat/cmds.c
/freebsd-11-stable/usr.bin/systat/cmdtab.c
/freebsd-11-stable/usr.bin/systat/devs.c
/freebsd-11-stable/usr.bin/systat/extern.h
/freebsd-11-stable/usr.bin/systat/fetch.c
/freebsd-11-stable/usr.bin/systat/icmp.c
/freebsd-11-stable/usr.bin/systat/icmp6.c
/freebsd-11-stable/usr.bin/systat/iostat.c
/freebsd-11-stable/usr.bin/systat/ip.c
/freebsd-11-stable/usr.bin/systat/ip6.c
/freebsd-11-stable/usr.bin/systat/keyboard.c
/freebsd-11-stable/usr.bin/systat/main.c
/freebsd-11-stable/usr.bin/systat/netcmds.c
/freebsd-11-stable/usr.bin/systat/netstat.c
/freebsd-11-stable/usr.bin/systat/pigs.c
/freebsd-11-stable/usr.bin/systat/swap.c
/freebsd-11-stable/usr.bin/systat/systat.h
/freebsd-11-stable/usr.bin/systat/tcp.c
/freebsd-11-stable/usr.bin/systat/vmstat.c
/freebsd-11-stable/usr.bin/tail/extern.h
/freebsd-11-stable/usr.bin/tail/forward.c
/freebsd-11-stable/usr.bin/tail/misc.c
/freebsd-11-stable/usr.bin/tail/read.c
/freebsd-11-stable/usr.bin/tail/reverse.c
/freebsd-11-stable/usr.bin/tail/tail.c
/freebsd-11-stable/usr.bin/talk/ctl.c
/freebsd-11-stable/usr.bin/talk/ctl_transact.c
/freebsd-11-stable/usr.bin/talk/display.c
/freebsd-11-stable/usr.bin/talk/get_addrs.c
/freebsd-11-stable/usr.bin/talk/get_names.c
/freebsd-11-stable/usr.bin/talk/init_disp.c
/freebsd-11-stable/usr.bin/talk/invite.c
/freebsd-11-stable/usr.bin/talk/io.c
/freebsd-11-stable/usr.bin/talk/look_up.c
/freebsd-11-stable/usr.bin/talk/msgs.c
/freebsd-11-stable/usr.bin/talk/talk.c
/freebsd-11-stable/usr.bin/talk/talk.h
/freebsd-11-stable/usr.bin/talk/talk_ctl.h
/freebsd-11-stable/usr.bin/tcopy/tcopy.c
/freebsd-11-stable/usr.bin/tee/tee.c
/freebsd-11-stable/usr.bin/tftp/main.c
/freebsd-11-stable/usr.bin/tftp/tftp.c
/freebsd-11-stable/usr.bin/tftp/tftp.h
/freebsd-11-stable/usr.bin/time/time.c
/freebsd-11-stable/usr.bin/tip/libacu/biz22.c
/freebsd-11-stable/usr.bin/tip/libacu/biz31.c
/freebsd-11-stable/usr.bin/tip/libacu/courier.c
/freebsd-11-stable/usr.bin/tip/libacu/df.c
/freebsd-11-stable/usr.bin/tip/libacu/dn11.c
/freebsd-11-stable/usr.bin/tip/libacu/hayes.c
/freebsd-11-stable/usr.bin/tip/libacu/t3000.c
/freebsd-11-stable/usr.bin/tip/libacu/v3451.c
/freebsd-11-stable/usr.bin/tip/libacu/v831.c
/freebsd-11-stable/usr.bin/tip/libacu/ventel.c
/freebsd-11-stable/usr.bin/tip/tip/acu.c
/freebsd-11-stable/usr.bin/tip/tip/acutab.c
/freebsd-11-stable/usr.bin/tip/tip/cmds.c
/freebsd-11-stable/usr.bin/tip/tip/cmdtab.c
/freebsd-11-stable/usr.bin/tip/tip/cu.c
/freebsd-11-stable/usr.bin/tip/tip/hunt.c
/freebsd-11-stable/usr.bin/tip/tip/log.c
/freebsd-11-stable/usr.bin/tip/tip/partab.c
/freebsd-11-stable/usr.bin/tip/tip/pathnames.h
/freebsd-11-stable/usr.bin/tip/tip/remote.c
/freebsd-11-stable/usr.bin/tip/tip/tip.c
/freebsd-11-stable/usr.bin/tip/tip/tip.h
/freebsd-11-stable/usr.bin/tip/tip/tipout.c
/freebsd-11-stable/usr.bin/tip/tip/uucplock.c
/freebsd-11-stable/usr.bin/tip/tip/value.c
/freebsd-11-stable/usr.bin/tip/tip/vars.c
/freebsd-11-stable/usr.bin/touch/touch.c
/freebsd-11-stable/usr.bin/tput/clear.sh
/freebsd-11-stable/usr.bin/tput/tput.c
/freebsd-11-stable/usr.bin/tr/extern.h
/freebsd-11-stable/usr.bin/tr/str.c
/freebsd-11-stable/usr.bin/tr/tr.c
/freebsd-11-stable/usr.bin/true/true.c
/freebsd-11-stable/usr.bin/truss/amd64-freebsd.c
/freebsd-11-stable/usr.bin/truss/amd64-freebsd32.c
/freebsd-11-stable/usr.bin/truss/amd64-linux.c
/freebsd-11-stable/usr.bin/truss/amd64-linux32.c
/freebsd-11-stable/usr.bin/truss/arm-freebsd.c
/freebsd-11-stable/usr.bin/truss/extern.h
/freebsd-11-stable/usr.bin/truss/i386-freebsd.c
/freebsd-11-stable/usr.bin/truss/i386-linux.c
/freebsd-11-stable/usr.bin/truss/main.c
/freebsd-11-stable/usr.bin/truss/mips-freebsd.c
/freebsd-11-stable/usr.bin/truss/setup.c
/freebsd-11-stable/usr.bin/truss/sparc64-freebsd.c
/freebsd-11-stable/usr.bin/truss/syscalls.c
/freebsd-11-stable/usr.bin/tset/extern.h
/freebsd-11-stable/usr.bin/tset/map.c
/freebsd-11-stable/usr.bin/tset/misc.c
/freebsd-11-stable/usr.bin/tset/set.c
/freebsd-11-stable/usr.bin/tset/term.c
/freebsd-11-stable/usr.bin/tset/tset.c
/freebsd-11-stable/usr.bin/tset/wrterm.c
/freebsd-11-stable/usr.bin/tsort/tsort.c
/freebsd-11-stable/usr.bin/tty/tty.c
/freebsd-11-stable/usr.bin/ul/ul.c
/freebsd-11-stable/usr.bin/uname/uname.c
/freebsd-11-stable/usr.bin/unexpand/unexpand.c
/freebsd-11-stable/usr.bin/uniq/uniq.c
/freebsd-11-stable/usr.bin/uudecode/uudecode.c
/freebsd-11-stable/usr.bin/uuencode/uuencode.c
/freebsd-11-stable/usr.bin/vgrind/extern.h
/freebsd-11-stable/usr.bin/vgrind/pathnames.h
/freebsd-11-stable/usr.bin/vgrind/regexp.c
/freebsd-11-stable/usr.bin/vgrind/vfontedpr.c
/freebsd-11-stable/usr.bin/vgrind/vgrind.sh
/freebsd-11-stable/usr.bin/vmstat/vmstat.c
/freebsd-11-stable/usr.bin/w/extern.h
/freebsd-11-stable/usr.bin/w/pr_time.c
/freebsd-11-stable/usr.bin/w/proc_compare.c
/freebsd-11-stable/usr.bin/w/w.c
/freebsd-11-stable/usr.bin/wall/ttymsg.c
/freebsd-11-stable/usr.bin/wall/wall.c
/freebsd-11-stable/usr.bin/wc/wc.c
/freebsd-11-stable/usr.bin/what/what.c
/freebsd-11-stable/usr.bin/whois/whois.c
/freebsd-11-stable/usr.bin/write/write.c
/freebsd-11-stable/usr.bin/xargs/pathnames.h
/freebsd-11-stable/usr.bin/xargs/xargs.c
/freebsd-11-stable/usr.bin/xinstall/xinstall.c
/freebsd-11-stable/usr.bin/xstr/pathnames.h
/freebsd-11-stable/usr.bin/xstr/xstr.c
/freebsd-11-stable/usr.bin/yes/yes.c
/freebsd-11-stable/usr.sbin/accton/accton.c
/freebsd-11-stable/usr.sbin/ancontrol/ancontrol.c
/freebsd-11-stable/usr.sbin/arp/arp.c
/freebsd-11-stable/usr.sbin/chown/chown.c
/freebsd-11-stable/usr.sbin/chroot/chroot.c
/freebsd-11-stable/usr.sbin/config/config.h
/freebsd-11-stable/usr.sbin/config/config.y
/freebsd-11-stable/usr.sbin/config/lang.l
/freebsd-11-stable/usr.sbin/config/main.c
/freebsd-11-stable/usr.sbin/config/mkheaders.c
/freebsd-11-stable/usr.sbin/config/mkmakefile.c
/freebsd-11-stable/usr.sbin/config/mkoptions.c
/freebsd-11-stable/usr.sbin/crashinfo/crashinfo.sh
/freebsd-11-stable/usr.sbin/dconschat/dconschat.c
/freebsd-11-stable/usr.sbin/edquota/edquota.c
/freebsd-11-stable/usr.sbin/edquota/pathnames.h
/freebsd-11-stable/usr.sbin/fwcontrol/fwcontrol.c
/freebsd-11-stable/usr.sbin/fwcontrol/fwdv.c
/freebsd-11-stable/usr.sbin/fwcontrol/fwmpegts.c
/freebsd-11-stable/usr.sbin/ifmcstat/ifmcstat.c
/freebsd-11-stable/usr.sbin/ifmcstat/printb.c
/freebsd-11-stable/usr.sbin/inetd/inetd.c
/freebsd-11-stable/usr.sbin/inetd/inetd.h
/freebsd-11-stable/usr.sbin/inetd/pathnames.h
/freebsd-11-stable/usr.sbin/iostat/iostat.c
/freebsd-11-stable/usr.sbin/ip6addrctl/ip6addrctl.c
/freebsd-11-stable/usr.sbin/kgmon/kgmon.c
/freebsd-11-stable/usr.sbin/kldxref/ef.c
/freebsd-11-stable/usr.sbin/kldxref/ef_obj.c
/freebsd-11-stable/usr.sbin/kldxref/kldxref.c
/freebsd-11-stable/usr.sbin/lpr/common_source/common.c
/freebsd-11-stable/usr.sbin/lpr/common_source/displayq.c
/freebsd-11-stable/usr.sbin/lpr/common_source/lp.h
/freebsd-11-stable/usr.sbin/lpr/common_source/lp.local.h
/freebsd-11-stable/usr.sbin/lpr/common_source/net.c
/freebsd-11-stable/usr.sbin/lpr/common_source/pathnames.h
/freebsd-11-stable/usr.sbin/lpr/common_source/printcap.c
/freebsd-11-stable/usr.sbin/lpr/common_source/rmjob.c
/freebsd-11-stable/usr.sbin/lpr/common_source/startdaemon.c
/freebsd-11-stable/usr.sbin/lpr/filters/lpf.c
/freebsd-11-stable/usr.sbin/lpr/lpc/cmds.c
/freebsd-11-stable/usr.sbin/lpr/lpc/cmdtab.c
/freebsd-11-stable/usr.sbin/lpr/lpc/extern.h
/freebsd-11-stable/usr.sbin/lpr/lpc/lpc.c
/freebsd-11-stable/usr.sbin/lpr/lpc/lpc.h
/freebsd-11-stable/usr.sbin/lpr/lpd/extern.h
/freebsd-11-stable/usr.sbin/lpr/lpd/lpd.c
/freebsd-11-stable/usr.sbin/lpr/lpd/lpdchar.c
/freebsd-11-stable/usr.sbin/lpr/lpd/modes.c
/freebsd-11-stable/usr.sbin/lpr/lpd/printjob.c
/freebsd-11-stable/usr.sbin/lpr/lpd/recvjob.c
/freebsd-11-stable/usr.sbin/lpr/lpq/lpq.c
/freebsd-11-stable/usr.sbin/lpr/lpr/lpr.c
/freebsd-11-stable/usr.sbin/lpr/lprm/lprm.c
/freebsd-11-stable/usr.sbin/lpr/lptest/lptest.c
/freebsd-11-stable/usr.sbin/lpr/pac/pac.c
/freebsd-11-stable/usr.sbin/makefs/ffs.c
/freebsd-11-stable/usr.sbin/makefs/ffs/ffs_alloc.c
/freebsd-11-stable/usr.sbin/makefs/ffs/ffs_balloc.c
/freebsd-11-stable/usr.sbin/makefs/ffs/ffs_extern.h
/freebsd-11-stable/usr.sbin/makefs/ffs/ffs_subr.c
/freebsd-11-stable/usr.sbin/makefs/ffs/mkfs.c
/freebsd-11-stable/usr.sbin/makefs/ffs/ufs_bmap.c
/freebsd-11-stable/usr.sbin/makefs/ffs/ufs_inode.h
/freebsd-11-stable/usr.sbin/manctl/manctl.sh
/freebsd-11-stable/usr.sbin/mld6query/mld6.c
/freebsd-11-stable/usr.sbin/mountd/mountd.c
/freebsd-11-stable/usr.sbin/mountd/pathnames.h
/freebsd-11-stable/usr.sbin/mptutil/mpt_cam.c
/freebsd-11-stable/usr.sbin/mptutil/mpt_cmd.c
/freebsd-11-stable/usr.sbin/mptutil/mpt_config.c
/freebsd-11-stable/usr.sbin/mptutil/mpt_drive.c
/freebsd-11-stable/usr.sbin/mptutil/mpt_evt.c
/freebsd-11-stable/usr.sbin/mptutil/mpt_show.c
/freebsd-11-stable/usr.sbin/mptutil/mpt_volume.c
/freebsd-11-stable/usr.sbin/mptutil/mptutil.c
/freebsd-11-stable/usr.sbin/mptutil/mptutil.h
/freebsd-11-stable/usr.sbin/nandsim/nandsim_rcfile.c
/freebsd-11-stable/usr.sbin/nandsim/nandsim_rcfile.h
/freebsd-11-stable/usr.sbin/ndiscvt/inf-parse.y
/freebsd-11-stable/usr.sbin/ndiscvt/inf-token.l
/freebsd-11-stable/usr.sbin/ndiscvt/inf.c
/freebsd-11-stable/usr.sbin/ndiscvt/ndiscvt.c
/freebsd-11-stable/usr.sbin/ndiscvt/ndisgen.sh
/freebsd-11-stable/usr.sbin/ndiscvt/windrv_stub.c
/freebsd-11-stable/usr.sbin/ndp/ndp.c
/freebsd-11-stable/usr.sbin/nfsd/nfsd.c
/freebsd-11-stable/usr.sbin/pciconf/cap.c
/freebsd-11-stable/usr.sbin/pciconf/pciconf.h
/freebsd-11-stable/usr.sbin/ppp/slcompress.c
/freebsd-11-stable/usr.sbin/ppp/slcompress.h
/freebsd-11-stable/usr.sbin/pstat/pstat.c
/freebsd-11-stable/usr.sbin/pwd_mkdb/pwd_mkdb.c
/freebsd-11-stable/usr.sbin/quotaon/quotaon.c
/freebsd-11-stable/usr.sbin/repquota/repquota.c
/freebsd-11-stable/usr.sbin/rip6query/rip6query.c
/freebsd-11-stable/usr.sbin/rmt/rmt.c
/freebsd-11-stable/usr.sbin/route6d/misc/cksum.c
/freebsd-11-stable/usr.sbin/route6d/route6d.c
/freebsd-11-stable/usr.sbin/route6d/route6d.h
/freebsd-11-stable/usr.sbin/rpc.lockd/lock_proc.c
/freebsd-11-stable/usr.sbin/rpc.lockd/lockd.c
/freebsd-11-stable/usr.sbin/rpc.lockd/lockd.h
/freebsd-11-stable/usr.sbin/rpc.lockd/lockd_lock.c
/freebsd-11-stable/usr.sbin/rpc.statd/file.c
/freebsd-11-stable/usr.sbin/rpc.statd/procs.c
/freebsd-11-stable/usr.sbin/rpc.statd/statd.c
/freebsd-11-stable/usr.sbin/rpc.statd/statd.h
/freebsd-11-stable/usr.sbin/rpc.yppasswdd/yppasswdd_extern.h
/freebsd-11-stable/usr.sbin/rpc.yppasswdd/yppasswdd_main.c
/freebsd-11-stable/usr.sbin/rpc.yppasswdd/yppasswdd_server.c
/freebsd-11-stable/usr.sbin/rpc.ypupdated/yp_dbdelete.c
/freebsd-11-stable/usr.sbin/rpc.ypupdated/yp_dbupdate.c
/freebsd-11-stable/usr.sbin/rpc.ypupdated/ypupdated_main.c
/freebsd-11-stable/usr.sbin/rpc.ypupdated/ypupdated_server.c
/freebsd-11-stable/usr.sbin/rpc.ypxfrd/ypxfrd_extern.h
/freebsd-11-stable/usr.sbin/rpc.ypxfrd/ypxfrd_main.c
/freebsd-11-stable/usr.sbin/rpc.ypxfrd/ypxfrd_server.c
/freebsd-11-stable/usr.sbin/rpcbind/check_bound.c
/freebsd-11-stable/usr.sbin/rpcbind/pmap_svc.c
/freebsd-11-stable/usr.sbin/rpcbind/rpcb_stat.c
/freebsd-11-stable/usr.sbin/rpcbind/rpcb_svc.c
/freebsd-11-stable/usr.sbin/rpcbind/rpcb_svc_4.c
/freebsd-11-stable/usr.sbin/rpcbind/rpcb_svc_com.c
/freebsd-11-stable/usr.sbin/rpcbind/rpcbind.c
/freebsd-11-stable/usr.sbin/rpcbind/rpcbind.h
/freebsd-11-stable/usr.sbin/rpcbind/warmstart.c
/freebsd-11-stable/usr.sbin/rrenumd/lexer.l
/freebsd-11-stable/usr.sbin/rrenumd/parser.y
/freebsd-11-stable/usr.sbin/rrenumd/rrenumd.c
/freebsd-11-stable/usr.sbin/rrenumd/rrenumd.h
/freebsd-11-stable/usr.sbin/rtadvd/advcap.c
/freebsd-11-stable/usr.sbin/rtadvd/config.c
/freebsd-11-stable/usr.sbin/rtadvd/config.h
/freebsd-11-stable/usr.sbin/rtadvd/if.c
/freebsd-11-stable/usr.sbin/rtadvd/if.h
/freebsd-11-stable/usr.sbin/rtadvd/rrenum.c
/freebsd-11-stable/usr.sbin/rtadvd/rrenum.h
/freebsd-11-stable/usr.sbin/rtadvd/rtadvd.c
/freebsd-11-stable/usr.sbin/rtadvd/rtadvd.h
/freebsd-11-stable/usr.sbin/rtadvd/timer.c
/freebsd-11-stable/usr.sbin/rtadvd/timer.h
/freebsd-11-stable/usr.sbin/rtadvd/timer_subr.c
/freebsd-11-stable/usr.sbin/rtadvd/timer_subr.h
/freebsd-11-stable/usr.sbin/rtsold/dump.c
/freebsd-11-stable/usr.sbin/rtsold/if.c
/freebsd-11-stable/usr.sbin/rtsold/probe.c
/freebsd-11-stable/usr.sbin/rtsold/rtsock.c
/freebsd-11-stable/usr.sbin/rtsold/rtsol.c
/freebsd-11-stable/usr.sbin/rtsold/rtsold.c
/freebsd-11-stable/usr.sbin/rtsold/rtsold.h
/freebsd-11-stable/usr.sbin/rwhod/rwhod.c
/freebsd-11-stable/usr.sbin/setfib/setfib.c
/freebsd-11-stable/usr.sbin/syslogd/pathnames.h
/freebsd-11-stable/usr.sbin/syslogd/syslogd.c
/freebsd-11-stable/usr.sbin/timed/timed/acksend.c
/freebsd-11-stable/usr.sbin/timed/timed/byteorder.c
/freebsd-11-stable/usr.sbin/timed/timed/candidate.c
/freebsd-11-stable/usr.sbin/timed/timed/cksum.c
/freebsd-11-stable/usr.sbin/timed/timed/correct.c
/freebsd-11-stable/usr.sbin/timed/timed/extern.h
/freebsd-11-stable/usr.sbin/timed/timed/globals.h
/freebsd-11-stable/usr.sbin/timed/timed/master.c
/freebsd-11-stable/usr.sbin/timed/timed/measure.c
/freebsd-11-stable/usr.sbin/timed/timed/networkdelta.c
/freebsd-11-stable/usr.sbin/timed/timed/pathnames.h
/freebsd-11-stable/usr.sbin/timed/timed/readmsg.c
/freebsd-11-stable/usr.sbin/timed/timed/slave.c
/freebsd-11-stable/usr.sbin/timed/timed/timed.c
/freebsd-11-stable/usr.sbin/timed/timedc/cmds.c
/freebsd-11-stable/usr.sbin/timed/timedc/cmdtab.c
/freebsd-11-stable/usr.sbin/timed/timedc/extern.h
/freebsd-11-stable/usr.sbin/timed/timedc/timedc.c
/freebsd-11-stable/usr.sbin/timed/timedc/timedc.h
/freebsd-11-stable/usr.sbin/traceroute6/traceroute6.c
/freebsd-11-stable/usr.sbin/trpt/trpt.c
/freebsd-11-stable/usr.sbin/vipw/vipw.c
/freebsd-11-stable/usr.sbin/wpa/ndis_events/ndis_events.c
/freebsd-11-stable/usr.sbin/wpa/wpa_supplicant/Packet32.c
/freebsd-11-stable/usr.sbin/wpa/wpa_supplicant/Packet32.h
/freebsd-11-stable/usr.sbin/yp_mkdb/yp_mkdb.c
/freebsd-11-stable/usr.sbin/ypbind/yp_ping.c
/freebsd-11-stable/usr.sbin/yppush/yppush_main.c
/freebsd-11-stable/usr.sbin/ypserv/yp_access.c
/freebsd-11-stable/usr.sbin/ypserv/yp_dblookup.c
/freebsd-11-stable/usr.sbin/ypserv/yp_dnslookup.c
/freebsd-11-stable/usr.sbin/ypserv/yp_error.c
/freebsd-11-stable/usr.sbin/ypserv/yp_extern.h
/freebsd-11-stable/usr.sbin/ypserv/yp_main.c
/freebsd-11-stable/usr.sbin/ypserv/yp_server.c
/freebsd-11-stable/usr.sbin/ypserv/yp_svc_udp.c
331319 21-Mar-2018 kib

MFC r328087 (by fabient):
Fix pmcstat exit from kernel introduced by r325275.

PR: 223689

330897 14-Mar-2018 eadler

Partial merge of the SPDX changes

These changes are incomplete but are making it difficult
to determine what other changes can/should be merged.

No objections from: pfg


/freebsd-11-stable/bin/cat/cat.c
/freebsd-11-stable/bin/chflags/chflags.c
/freebsd-11-stable/bin/chmod/chmod.c
/freebsd-11-stable/bin/cp/cp.c
/freebsd-11-stable/bin/cp/extern.h
/freebsd-11-stable/bin/cp/utils.c
/freebsd-11-stable/bin/date/date.c
/freebsd-11-stable/bin/date/extern.h
/freebsd-11-stable/bin/date/netdate.c
/freebsd-11-stable/bin/dd/args.c
/freebsd-11-stable/bin/dd/conv.c
/freebsd-11-stable/bin/dd/conv_tab.c
/freebsd-11-stable/bin/dd/dd.c
/freebsd-11-stable/bin/dd/dd.h
/freebsd-11-stable/bin/dd/extern.h
/freebsd-11-stable/bin/dd/misc.c
/freebsd-11-stable/bin/dd/position.c
/freebsd-11-stable/bin/df/df.c
/freebsd-11-stable/bin/domainname/domainname.c
/freebsd-11-stable/bin/echo/echo.c
/freebsd-11-stable/bin/ed/cbc.c
/freebsd-11-stable/bin/hostname/hostname.c
/freebsd-11-stable/bin/kill/kill.c
/freebsd-11-stable/bin/ln/ln.c
/freebsd-11-stable/bin/ls/cmp.c
/freebsd-11-stable/bin/ls/extern.h
/freebsd-11-stable/bin/ls/ls.c
/freebsd-11-stable/bin/ls/ls.h
/freebsd-11-stable/bin/ls/print.c
/freebsd-11-stable/bin/ls/util.c
/freebsd-11-stable/bin/mkdir/mkdir.c
/freebsd-11-stable/bin/mv/mv.c
/freebsd-11-stable/bin/pax/ar_io.c
/freebsd-11-stable/bin/pax/ar_subs.c
/freebsd-11-stable/bin/pax/buf_subs.c
/freebsd-11-stable/bin/pax/cache.c
/freebsd-11-stable/bin/pax/cache.h
/freebsd-11-stable/bin/pax/cpio.c
/freebsd-11-stable/bin/pax/cpio.h
/freebsd-11-stable/bin/pax/extern.h
/freebsd-11-stable/bin/pax/file_subs.c
/freebsd-11-stable/bin/pax/ftree.c
/freebsd-11-stable/bin/pax/ftree.h
/freebsd-11-stable/bin/pax/gen_subs.c
/freebsd-11-stable/bin/pax/options.c
/freebsd-11-stable/bin/pax/options.h
/freebsd-11-stable/bin/pax/pat_rep.c
/freebsd-11-stable/bin/pax/pat_rep.h
/freebsd-11-stable/bin/pax/pax.c
/freebsd-11-stable/bin/pax/pax.h
/freebsd-11-stable/bin/pax/sel_subs.c
/freebsd-11-stable/bin/pax/sel_subs.h
/freebsd-11-stable/bin/pax/tables.c
/freebsd-11-stable/bin/pax/tables.h
/freebsd-11-stable/bin/pax/tar.c
/freebsd-11-stable/bin/pax/tar.h
/freebsd-11-stable/bin/pax/tty_subs.c
/freebsd-11-stable/bin/ps/extern.h
/freebsd-11-stable/bin/ps/fmt.c
/freebsd-11-stable/bin/ps/keyword.c
/freebsd-11-stable/bin/ps/nlist.c
/freebsd-11-stable/bin/ps/print.c
/freebsd-11-stable/bin/ps/ps.c
/freebsd-11-stable/bin/ps/ps.h
/freebsd-11-stable/bin/pwd/pwd.c
/freebsd-11-stable/bin/realpath/realpath.c
/freebsd-11-stable/bin/rm/rm.c
/freebsd-11-stable/bin/rmdir/rmdir.c
/freebsd-11-stable/bin/sh/bltin/bltin.h
/freebsd-11-stable/bin/sh/bltin/echo.c
/freebsd-11-stable/bin/sh/mail.h
/freebsd-11-stable/bin/sh/main.c
/freebsd-11-stable/bin/sh/main.h
/freebsd-11-stable/bin/sh/memalloc.c
/freebsd-11-stable/bin/sh/memalloc.h
/freebsd-11-stable/bin/sh/miscbltin.c
/freebsd-11-stable/bin/sh/mknodes.c
/freebsd-11-stable/bin/sh/mksyntax.c
/freebsd-11-stable/bin/sh/myhistedit.h
/freebsd-11-stable/bin/sh/mystring.c
/freebsd-11-stable/bin/sh/mystring.h
/freebsd-11-stable/bin/sh/options.c
/freebsd-11-stable/bin/sh/options.h
/freebsd-11-stable/bin/sh/output.c
/freebsd-11-stable/bin/sh/output.h
/freebsd-11-stable/bin/sh/parser.c
/freebsd-11-stable/bin/sh/parser.h
/freebsd-11-stable/bin/sh/redir.c
/freebsd-11-stable/bin/sh/redir.h
/freebsd-11-stable/bin/sh/shell.h
/freebsd-11-stable/bin/sh/show.c
/freebsd-11-stable/bin/sh/show.h
/freebsd-11-stable/bin/sh/trap.c
/freebsd-11-stable/bin/sh/trap.h
/freebsd-11-stable/bin/sh/var.c
/freebsd-11-stable/bin/sh/var.h
/freebsd-11-stable/include/_ctype.h
/freebsd-11-stable/include/a.out.h
/freebsd-11-stable/include/ar.h
/freebsd-11-stable/include/arpa/ftp.h
/freebsd-11-stable/include/arpa/inet.h
/freebsd-11-stable/include/arpa/nameser.h
/freebsd-11-stable/include/arpa/nameser_compat.h
/freebsd-11-stable/include/arpa/telnet.h
/freebsd-11-stable/include/arpa/tftp.h
/freebsd-11-stable/include/assert.h
/freebsd-11-stable/include/bitstring.h
/freebsd-11-stable/include/complex.h
/freebsd-11-stable/include/cpio.h
/freebsd-11-stable/include/ctype.h
/freebsd-11-stable/include/db.h
/freebsd-11-stable/include/dirent.h
/freebsd-11-stable/include/dlfcn.h
/freebsd-11-stable/include/elf-hints.h
/freebsd-11-stable/include/elf.h
/freebsd-11-stable/include/err.h
/freebsd-11-stable/include/fmtmsg.h
/freebsd-11-stable/include/fnmatch.h
/freebsd-11-stable/include/fstab.h
/freebsd-11-stable/include/fts.h
/freebsd-11-stable/include/getopt.h
/freebsd-11-stable/include/glob.h
/freebsd-11-stable/include/grp.h
/freebsd-11-stable/include/hesiod.h
/freebsd-11-stable/include/iconv.h
/freebsd-11-stable/include/inttypes.h
/freebsd-11-stable/include/iso646.h
/freebsd-11-stable/include/kenv.h
/freebsd-11-stable/include/langinfo.h
/freebsd-11-stable/include/libgen.h
/freebsd-11-stable/include/limits.h
/freebsd-11-stable/include/link.h
/freebsd-11-stable/include/locale.h
/freebsd-11-stable/include/malloc_np.h
/freebsd-11-stable/include/memory.h
/freebsd-11-stable/include/mk-osreldate.sh
/freebsd-11-stable/include/monetary.h
/freebsd-11-stable/include/mpool.h
/freebsd-11-stable/include/mqueue.h
/freebsd-11-stable/include/ndbm.h
/freebsd-11-stable/include/netdb.h
/freebsd-11-stable/include/nl_types.h
/freebsd-11-stable/include/nlist.h
/freebsd-11-stable/include/nss.h
/freebsd-11-stable/include/nsswitch.h
/freebsd-11-stable/include/paths.h
/freebsd-11-stable/include/printf.h
/freebsd-11-stable/include/proc_service.h
/freebsd-11-stable/include/protocols/dumprestore.h
/freebsd-11-stable/include/protocols/routed.h
/freebsd-11-stable/include/protocols/rwhod.h
/freebsd-11-stable/include/protocols/talkd.h
/freebsd-11-stable/include/protocols/timed.h
/freebsd-11-stable/include/pthread.h
/freebsd-11-stable/include/pthread_np.h
/freebsd-11-stable/include/pwd.h
/freebsd-11-stable/include/ranlib.h
/freebsd-11-stable/include/regex.h
/freebsd-11-stable/include/resolv.h
/freebsd-11-stable/include/rpc/auth.h
/freebsd-11-stable/include/rpc/auth_des.h
/freebsd-11-stable/include/rpc/auth_kerb.h
/freebsd-11-stable/include/rpc/auth_unix.h
/freebsd-11-stable/include/rpc/clnt.h
/freebsd-11-stable/include/rpc/clnt_soc.h
/freebsd-11-stable/include/rpc/des.h
/freebsd-11-stable/include/rpc/des_crypt.h
/freebsd-11-stable/include/rpc/nettype.h
/freebsd-11-stable/include/rpc/pmap_clnt.h
/freebsd-11-stable/include/rpc/pmap_prot.h
/freebsd-11-stable/include/rpc/pmap_rmt.h
/freebsd-11-stable/include/rpc/raw.h
/freebsd-11-stable/include/rpc/rpc.h
/freebsd-11-stable/include/rpc/rpc_com.h
/freebsd-11-stable/include/rpc/rpc_msg.h
/freebsd-11-stable/include/rpc/rpcb_clnt.h
/freebsd-11-stable/include/rpc/rpcent.h
/freebsd-11-stable/include/rpc/rpcsec_gss.h
/freebsd-11-stable/include/rpc/svc.h
/freebsd-11-stable/include/rpc/svc_auth.h
/freebsd-11-stable/include/rpc/svc_dg.h
/freebsd-11-stable/include/rpc/svc_soc.h
/freebsd-11-stable/include/rpc/xdr.h
/freebsd-11-stable/include/rpcsvc/nis_tags.h
/freebsd-11-stable/include/rpcsvc/yp_prot.h
/freebsd-11-stable/include/rpcsvc/ypclnt.h
/freebsd-11-stable/include/runetype.h
/freebsd-11-stable/include/semaphore.h
/freebsd-11-stable/include/setjmp.h
/freebsd-11-stable/include/signal.h
/freebsd-11-stable/include/spawn.h
/freebsd-11-stable/include/stab.h
/freebsd-11-stable/include/stdalign.h
/freebsd-11-stable/include/stdbool.h
/freebsd-11-stable/include/stddef.h
/freebsd-11-stable/include/stdio.h
/freebsd-11-stable/include/stdlib.h
/freebsd-11-stable/include/stdnoreturn.h
/freebsd-11-stable/include/string.h
/freebsd-11-stable/include/stringlist.h
/freebsd-11-stable/include/strings.h
/freebsd-11-stable/include/sysexits.h
/freebsd-11-stable/include/tar.h
/freebsd-11-stable/include/termios.h
/freebsd-11-stable/include/tgmath.h
/freebsd-11-stable/include/time.h
/freebsd-11-stable/include/timeconv.h
/freebsd-11-stable/include/timers.h
/freebsd-11-stable/include/ttyent.h
/freebsd-11-stable/include/uchar.h
/freebsd-11-stable/include/ulimit.h
/freebsd-11-stable/include/unistd.h
/freebsd-11-stable/include/utime.h
/freebsd-11-stable/include/utmpx.h
/freebsd-11-stable/include/uuid.h
/freebsd-11-stable/include/varargs.h
/freebsd-11-stable/include/wchar.h
/freebsd-11-stable/include/wctype.h
/freebsd-11-stable/include/wordexp.h
/freebsd-11-stable/include/xlocale.h
/freebsd-11-stable/include/xlocale/_ctype.h
/freebsd-11-stable/include/xlocale/_inttypes.h
/freebsd-11-stable/include/xlocale/_langinfo.h
/freebsd-11-stable/include/xlocale/_locale.h
/freebsd-11-stable/include/xlocale/_monetary.h
/freebsd-11-stable/include/xlocale/_stdio.h
/freebsd-11-stable/include/xlocale/_stdlib.h
/freebsd-11-stable/include/xlocale/_string.h
/freebsd-11-stable/include/xlocale/_time.h
/freebsd-11-stable/include/xlocale/_uchar.h
/freebsd-11-stable/include/xlocale/_wchar.h
/freebsd-11-stable/lib/csu/amd64/crt1.c
/freebsd-11-stable/lib/csu/arm/crt1.c
/freebsd-11-stable/lib/csu/common/crtbrand.c
/freebsd-11-stable/lib/csu/common/ignore_init.c
/freebsd-11-stable/lib/csu/common/notes.h
/freebsd-11-stable/lib/csu/mips/crt1.c
/freebsd-11-stable/lib/csu/powerpc/crt1.c
/freebsd-11-stable/lib/csu/powerpc64/crt1.c
/freebsd-11-stable/lib/csu/sparc64/crt1.c
/freebsd-11-stable/lib/libarchive/config_freebsd.h
/freebsd-11-stable/lib/libbluetooth/bluetooth.c
/freebsd-11-stable/lib/libbluetooth/bluetooth.h
/freebsd-11-stable/lib/libbluetooth/dev.c
/freebsd-11-stable/lib/libbluetooth/hci.c
/freebsd-11-stable/lib/libbsdstat/bsdstat.c
/freebsd-11-stable/lib/libbsdstat/bsdstat.h
/freebsd-11-stable/lib/libc/amd64/SYS.h
/freebsd-11-stable/lib/libc/amd64/_fpmath.h
/freebsd-11-stable/lib/libc/amd64/gen/_set_tp.c
/freebsd-11-stable/lib/libc/amd64/gen/getcontextx.c
/freebsd-11-stable/lib/libc/amd64/gen/makecontext.c
/freebsd-11-stable/lib/libc/amd64/gen/signalcontext.c
/freebsd-11-stable/lib/libc/amd64/string/strcpy.c
/freebsd-11-stable/lib/libc/amd64/sys/amd64_get_fsbase.c
/freebsd-11-stable/lib/libc/amd64/sys/amd64_get_gsbase.c
/freebsd-11-stable/lib/libc/amd64/sys/amd64_set_fsbase.c
/freebsd-11-stable/lib/libc/amd64/sys/amd64_set_gsbase.c
/freebsd-11-stable/lib/libc/arm/SYS.h
/freebsd-11-stable/lib/libc/arm/_fpmath.h
/freebsd-11-stable/lib/libc/arm/aeabi/aeabi_atexit.c
/freebsd-11-stable/lib/libc/arm/aeabi/aeabi_double.c
/freebsd-11-stable/lib/libc/arm/aeabi/aeabi_float.c
/freebsd-11-stable/lib/libc/arm/aeabi/aeabi_unwind_cpp.c
/freebsd-11-stable/lib/libc/arm/gen/_set_tp.c
/freebsd-11-stable/lib/libc/arm/gen/arm_initfini.c
/freebsd-11-stable/lib/libc/arm/gen/fabs.c
/freebsd-11-stable/lib/libc/arm/gen/flt_rounds.c
/freebsd-11-stable/lib/libc/arm/gen/getcontextx.c
/freebsd-11-stable/lib/libc/arm/gen/makecontext.c
/freebsd-11-stable/lib/libc/arm/gen/signalcontext.c
/freebsd-11-stable/lib/libc/arm/sys/__vdso_gettc.c
/freebsd-11-stable/lib/libc/compat-43/creat.c
/freebsd-11-stable/lib/libc/compat-43/gethostid.c
/freebsd-11-stable/lib/libc/compat-43/getwd.c
/freebsd-11-stable/lib/libc/compat-43/killpg.c
/freebsd-11-stable/lib/libc/compat-43/sethostid.c
/freebsd-11-stable/lib/libc/compat-43/setpgrp.c
/freebsd-11-stable/lib/libc/compat-43/setrgid.c
/freebsd-11-stable/lib/libc/compat-43/setruid.c
/freebsd-11-stable/lib/libc/compat-43/sigcompat.c
/freebsd-11-stable/lib/libc/db/btree/bt_close.c
/freebsd-11-stable/lib/libc/db/btree/bt_conv.c
/freebsd-11-stable/lib/libc/db/btree/bt_debug.c
/freebsd-11-stable/lib/libc/db/btree/bt_delete.c
/freebsd-11-stable/lib/libc/db/btree/bt_get.c
/freebsd-11-stable/lib/libc/db/btree/bt_open.c
/freebsd-11-stable/lib/libc/db/btree/bt_overflow.c
/freebsd-11-stable/lib/libc/db/btree/bt_page.c
/freebsd-11-stable/lib/libc/db/btree/bt_put.c
/freebsd-11-stable/lib/libc/db/btree/bt_search.c
/freebsd-11-stable/lib/libc/db/btree/bt_seq.c
/freebsd-11-stable/lib/libc/db/btree/bt_split.c
/freebsd-11-stable/lib/libc/db/btree/bt_utils.c
/freebsd-11-stable/lib/libc/db/btree/btree.h
/freebsd-11-stable/lib/libc/db/btree/extern.h
/freebsd-11-stable/lib/libc/db/db/db.c
/freebsd-11-stable/lib/libc/db/hash/extern.h
/freebsd-11-stable/lib/libc/db/hash/hash.c
/freebsd-11-stable/lib/libc/db/hash/hash.h
/freebsd-11-stable/lib/libc/db/hash/hash_bigkey.c
/freebsd-11-stable/lib/libc/db/hash/hash_buf.c
/freebsd-11-stable/lib/libc/db/hash/hash_func.c
/freebsd-11-stable/lib/libc/db/hash/hash_log2.c
/freebsd-11-stable/lib/libc/db/hash/hash_page.c
/freebsd-11-stable/lib/libc/db/hash/ndbm.c
/freebsd-11-stable/lib/libc/db/hash/page.h
/freebsd-11-stable/lib/libc/db/mpool/mpool-compat.c
/freebsd-11-stable/lib/libc/db/mpool/mpool.c
/freebsd-11-stable/lib/libc/db/recno/extern.h
/freebsd-11-stable/lib/libc/db/recno/rec_close.c
/freebsd-11-stable/lib/libc/db/recno/rec_delete.c
/freebsd-11-stable/lib/libc/db/recno/rec_get.c
/freebsd-11-stable/lib/libc/db/recno/rec_open.c
/freebsd-11-stable/lib/libc/db/recno/rec_put.c
/freebsd-11-stable/lib/libc/db/recno/rec_search.c
/freebsd-11-stable/lib/libc/db/recno/rec_seq.c
/freebsd-11-stable/lib/libc/db/recno/rec_utils.c
/freebsd-11-stable/lib/libc/db/recno/recno.h
/freebsd-11-stable/lib/libc/db/test/btree.tests/main.c
/freebsd-11-stable/lib/libc/db/test/dbtest.c
/freebsd-11-stable/lib/libc/db/test/hash.tests/driver2.c
/freebsd-11-stable/lib/libc/db/test/hash.tests/tcreat3.c
/freebsd-11-stable/lib/libc/db/test/hash.tests/tdel.c
/freebsd-11-stable/lib/libc/db/test/hash.tests/thash4.c
/freebsd-11-stable/lib/libc/db/test/hash.tests/tread2.c
/freebsd-11-stable/lib/libc/db/test/hash.tests/tseq.c
/freebsd-11-stable/lib/libc/db/test/hash.tests/tverify.c
/freebsd-11-stable/lib/libc/gdtoa/_hdtoa.c
/freebsd-11-stable/lib/libc/gdtoa/_hldtoa.c
/freebsd-11-stable/lib/libc/gdtoa/_ldtoa.c
/freebsd-11-stable/lib/libc/gdtoa/machdep_ldisQ.c
/freebsd-11-stable/lib/libc/gdtoa/machdep_ldisd.c
/freebsd-11-stable/lib/libc/gdtoa/machdep_ldisx.c
/freebsd-11-stable/lib/libc/gen/__getosreldate.c
/freebsd-11-stable/lib/libc/gen/__xuname.c
/freebsd-11-stable/lib/libc/gen/_once_stub.c
/freebsd-11-stable/lib/libc/gen/_pthread_stubs.c
/freebsd-11-stable/lib/libc/gen/_spinlock_stub.c
/freebsd-11-stable/lib/libc/gen/_thread_init.c
/freebsd-11-stable/lib/libc/gen/alarm.c
/freebsd-11-stable/lib/libc/gen/assert.c
/freebsd-11-stable/lib/libc/gen/auxv.c
/freebsd-11-stable/lib/libc/gen/cap_sandboxed.c
/freebsd-11-stable/lib/libc/gen/clock.c
/freebsd-11-stable/lib/libc/gen/clock_getcpuclockid.c
/freebsd-11-stable/lib/libc/gen/closedir.c
/freebsd-11-stable/lib/libc/gen/confstr.c
/freebsd-11-stable/lib/libc/gen/crypt.c
/freebsd-11-stable/lib/libc/gen/ctermid.c
/freebsd-11-stable/lib/libc/gen/daemon.c
/freebsd-11-stable/lib/libc/gen/devname.c
/freebsd-11-stable/lib/libc/gen/dirfd.c
/freebsd-11-stable/lib/libc/gen/disklabel.c
/freebsd-11-stable/lib/libc/gen/dlfcn.c
/freebsd-11-stable/lib/libc/gen/dup3.c
/freebsd-11-stable/lib/libc/gen/elf_utils.c
/freebsd-11-stable/lib/libc/gen/err.c
/freebsd-11-stable/lib/libc/gen/errlst.c
/freebsd-11-stable/lib/libc/gen/errno.c
/freebsd-11-stable/lib/libc/gen/exec.c
/freebsd-11-stable/lib/libc/gen/fdevname.c
/freebsd-11-stable/lib/libc/gen/feature_present.c
/freebsd-11-stable/lib/libc/gen/fmtcheck.c
/freebsd-11-stable/lib/libc/gen/fmtmsg.c
/freebsd-11-stable/lib/libc/gen/fnmatch.c
/freebsd-11-stable/lib/libc/gen/fpclassify.c
/freebsd-11-stable/lib/libc/gen/frexp.c
/freebsd-11-stable/lib/libc/gen/fstab.c
/freebsd-11-stable/lib/libc/gen/ftok.c
/freebsd-11-stable/lib/libc/gen/fts-compat.c
/freebsd-11-stable/lib/libc/gen/fts-compat.h
/freebsd-11-stable/lib/libc/gen/fts.c
/freebsd-11-stable/lib/libc/gen/gen-private.h
/freebsd-11-stable/lib/libc/gen/getbootfile.c
/freebsd-11-stable/lib/libc/gen/getbsize.c
/freebsd-11-stable/lib/libc/gen/getcap.c
/freebsd-11-stable/lib/libc/gen/getcwd.c
/freebsd-11-stable/lib/libc/gen/getdomainname.c
/freebsd-11-stable/lib/libc/gen/getgrent.c
/freebsd-11-stable/lib/libc/gen/getgrouplist.c
/freebsd-11-stable/lib/libc/gen/gethostname.c
/freebsd-11-stable/lib/libc/gen/getloadavg.c
/freebsd-11-stable/lib/libc/gen/getlogin.c
/freebsd-11-stable/lib/libc/gen/getmntinfo.c
/freebsd-11-stable/lib/libc/gen/getnetgrent.c
/freebsd-11-stable/lib/libc/gen/getosreldate.c
/freebsd-11-stable/lib/libc/gen/getpagesize.c
/freebsd-11-stable/lib/libc/gen/getpagesizes.c
/freebsd-11-stable/lib/libc/gen/getpeereid.c
/freebsd-11-stable/lib/libc/gen/getpwent.c
/freebsd-11-stable/lib/libc/gen/getttyent.c
/freebsd-11-stable/lib/libc/gen/getusershell.c
/freebsd-11-stable/lib/libc/gen/getutxent.c
/freebsd-11-stable/lib/libc/gen/getvfsbyname.c
/freebsd-11-stable/lib/libc/gen/glob.c
/freebsd-11-stable/lib/libc/gen/initgroups.c
/freebsd-11-stable/lib/libc/gen/isatty.c
/freebsd-11-stable/lib/libc/gen/isinf.c
/freebsd-11-stable/lib/libc/gen/isnan.c
/freebsd-11-stable/lib/libc/gen/libc_dlopen.c
/freebsd-11-stable/lib/libc/gen/lockf.c
/freebsd-11-stable/lib/libc/gen/nice.c
/freebsd-11-stable/lib/libc/gen/nlist.c
/freebsd-11-stable/lib/libc/gen/opendir.c
/freebsd-11-stable/lib/libc/gen/pause.c
/freebsd-11-stable/lib/libc/gen/popen.c
/freebsd-11-stable/lib/libc/gen/posix_spawn.c
/freebsd-11-stable/lib/libc/gen/psignal.c
/freebsd-11-stable/lib/libc/gen/pututxline.c
/freebsd-11-stable/lib/libc/gen/pw_scan.c
/freebsd-11-stable/lib/libc/gen/pw_scan.h
/freebsd-11-stable/lib/libc/gen/raise.c
/freebsd-11-stable/lib/libc/gen/readdir.c
/freebsd-11-stable/lib/libc/gen/rewinddir.c
/freebsd-11-stable/lib/libc/gen/scandir.c
/freebsd-11-stable/lib/libc/gen/seekdir.c
/freebsd-11-stable/lib/libc/gen/sem.c
/freebsd-11-stable/lib/libc/gen/sem_new.c
/freebsd-11-stable/lib/libc/gen/semctl.c
/freebsd-11-stable/lib/libc/gen/setdomainname.c
/freebsd-11-stable/lib/libc/gen/sethostname.c
/freebsd-11-stable/lib/libc/gen/setjmperr.c
/freebsd-11-stable/lib/libc/gen/setmode.c
/freebsd-11-stable/lib/libc/gen/siginterrupt.c
/freebsd-11-stable/lib/libc/gen/siglist.c
/freebsd-11-stable/lib/libc/gen/signal.c
/freebsd-11-stable/lib/libc/gen/sigsetops.c
/freebsd-11-stable/lib/libc/gen/sleep.c
/freebsd-11-stable/lib/libc/gen/stringlist.c
/freebsd-11-stable/lib/libc/gen/strtofflags.c
/freebsd-11-stable/lib/libc/gen/sysconf.c
/freebsd-11-stable/lib/libc/gen/sysctl.c
/freebsd-11-stable/lib/libc/gen/sysctlnametomib.c
/freebsd-11-stable/lib/libc/gen/syslog.c
/freebsd-11-stable/lib/libc/gen/telldir.c
/freebsd-11-stable/lib/libc/gen/telldir.h
/freebsd-11-stable/lib/libc/gen/termios.c
/freebsd-11-stable/lib/libc/gen/time.c
/freebsd-11-stable/lib/libc/gen/times.c
/freebsd-11-stable/lib/libc/gen/timezone.c
/freebsd-11-stable/lib/libc/gen/tls.c
/freebsd-11-stable/lib/libc/gen/ttyname.c
/freebsd-11-stable/lib/libc/gen/ttyslot.c
/freebsd-11-stable/lib/libc/gen/ualarm.c
/freebsd-11-stable/lib/libc/gen/ulimit.c
/freebsd-11-stable/lib/libc/gen/uname.c
/freebsd-11-stable/lib/libc/gen/unvis-compat.c
/freebsd-11-stable/lib/libc/gen/usleep.c
/freebsd-11-stable/lib/libc/gen/utime.c
/freebsd-11-stable/lib/libc/gen/utxdb.c
/freebsd-11-stable/lib/libc/gen/utxdb.h
/freebsd-11-stable/lib/libc/gen/valloc.c
/freebsd-11-stable/lib/libc/gen/wait.c
/freebsd-11-stable/lib/libc/gen/wait3.c
/freebsd-11-stable/lib/libc/gen/waitid.c
/freebsd-11-stable/lib/libc/gen/waitpid.c
/freebsd-11-stable/lib/libc/gen/wordexp.c
/freebsd-11-stable/lib/libc/gmon/gmon.c
/freebsd-11-stable/lib/libc/gmon/mcount.c
/freebsd-11-stable/lib/libc/i386/SYS.h
/freebsd-11-stable/lib/libc/i386/_fpmath.h
/freebsd-11-stable/lib/libc/i386/gen/_set_tp.c
/freebsd-11-stable/lib/libc/i386/gen/getcontextx.c
/freebsd-11-stable/lib/libc/i386/gen/makecontext.c
/freebsd-11-stable/lib/libc/i386/gen/signalcontext.c
/freebsd-11-stable/lib/libc/i386/sys/i386_clr_watch.c
/freebsd-11-stable/lib/libc/i386/sys/i386_get_fsbase.c
/freebsd-11-stable/lib/libc/i386/sys/i386_get_gsbase.c
/freebsd-11-stable/lib/libc/i386/sys/i386_get_ioperm.c
/freebsd-11-stable/lib/libc/i386/sys/i386_get_ldt.c
/freebsd-11-stable/lib/libc/i386/sys/i386_set_fsbase.c
/freebsd-11-stable/lib/libc/i386/sys/i386_set_gsbase.c
/freebsd-11-stable/lib/libc/i386/sys/i386_set_ioperm.c
/freebsd-11-stable/lib/libc/i386/sys/i386_set_ldt.c
/freebsd-11-stable/lib/libc/i386/sys/i386_set_watch.c
/freebsd-11-stable/lib/libc/i386/sys/i386_vm86.c
/freebsd-11-stable/lib/libc/iconv/__iconv.c
/freebsd-11-stable/lib/libc/iconv/__iconv_free_list.c
/freebsd-11-stable/lib/libc/iconv/__iconv_get_list.c
/freebsd-11-stable/lib/libc/iconv/_strtol.h
/freebsd-11-stable/lib/libc/iconv/_strtoul.h
/freebsd-11-stable/lib/libc/iconv/bsd_iconv.c
/freebsd-11-stable/lib/libc/iconv/citrus_aliasname_local.h
/freebsd-11-stable/lib/libc/iconv/citrus_bcs.c
/freebsd-11-stable/lib/libc/iconv/citrus_bcs.h
/freebsd-11-stable/lib/libc/iconv/citrus_bcs_strtol.c
/freebsd-11-stable/lib/libc/iconv/citrus_bcs_strtoul.c
/freebsd-11-stable/lib/libc/iconv/citrus_csmapper.c
/freebsd-11-stable/lib/libc/iconv/citrus_csmapper.h
/freebsd-11-stable/lib/libc/iconv/citrus_db.c
/freebsd-11-stable/lib/libc/iconv/citrus_db.h
/freebsd-11-stable/lib/libc/iconv/citrus_db_factory.c
/freebsd-11-stable/lib/libc/iconv/citrus_db_factory.h
/freebsd-11-stable/lib/libc/iconv/citrus_db_file.h
/freebsd-11-stable/lib/libc/iconv/citrus_db_hash.c
/freebsd-11-stable/lib/libc/iconv/citrus_db_hash.h
/freebsd-11-stable/lib/libc/iconv/citrus_esdb.c
/freebsd-11-stable/lib/libc/iconv/citrus_esdb.h
/freebsd-11-stable/lib/libc/iconv/citrus_esdb_file.h
/freebsd-11-stable/lib/libc/iconv/citrus_fix_grouping.h
/freebsd-11-stable/lib/libc/iconv/citrus_hash.c
/freebsd-11-stable/lib/libc/iconv/citrus_hash.h
/freebsd-11-stable/lib/libc/iconv/citrus_iconv.c
/freebsd-11-stable/lib/libc/iconv/citrus_iconv.h
/freebsd-11-stable/lib/libc/iconv/citrus_iconv_local.h
/freebsd-11-stable/lib/libc/iconv/citrus_lock.h
/freebsd-11-stable/lib/libc/iconv/citrus_lookup.c
/freebsd-11-stable/lib/libc/iconv/citrus_lookup.h
/freebsd-11-stable/lib/libc/iconv/citrus_lookup_factory.c
/freebsd-11-stable/lib/libc/iconv/citrus_lookup_factory.h
/freebsd-11-stable/lib/libc/iconv/citrus_lookup_file.h
/freebsd-11-stable/lib/libc/iconv/citrus_mapper.c
/freebsd-11-stable/lib/libc/iconv/citrus_mapper.h
/freebsd-11-stable/lib/libc/iconv/citrus_mapper_local.h
/freebsd-11-stable/lib/libc/iconv/citrus_memstream.c
/freebsd-11-stable/lib/libc/iconv/citrus_memstream.h
/freebsd-11-stable/lib/libc/iconv/citrus_mmap.c
/freebsd-11-stable/lib/libc/iconv/citrus_mmap.h
/freebsd-11-stable/lib/libc/iconv/citrus_module.c
/freebsd-11-stable/lib/libc/iconv/citrus_module.h
/freebsd-11-stable/lib/libc/iconv/citrus_namespace.h
/freebsd-11-stable/lib/libc/iconv/citrus_none.c
/freebsd-11-stable/lib/libc/iconv/citrus_none.h
/freebsd-11-stable/lib/libc/iconv/citrus_pivot_factory.c
/freebsd-11-stable/lib/libc/iconv/citrus_pivot_factory.h
/freebsd-11-stable/lib/libc/iconv/citrus_pivot_file.h
/freebsd-11-stable/lib/libc/iconv/citrus_prop.c
/freebsd-11-stable/lib/libc/iconv/citrus_prop.h
/freebsd-11-stable/lib/libc/iconv/citrus_region.h
/freebsd-11-stable/lib/libc/iconv/citrus_stdenc.c
/freebsd-11-stable/lib/libc/iconv/citrus_stdenc.h
/freebsd-11-stable/lib/libc/iconv/citrus_stdenc_local.h
/freebsd-11-stable/lib/libc/iconv/citrus_stdenc_template.h
/freebsd-11-stable/lib/libc/iconv/citrus_types.h
/freebsd-11-stable/lib/libc/iconv/iconv-internal.h
/freebsd-11-stable/lib/libc/iconv/iconv.c
/freebsd-11-stable/lib/libc/iconv/iconv_canonicalize.c
/freebsd-11-stable/lib/libc/iconv/iconv_close.c
/freebsd-11-stable/lib/libc/iconv/iconv_compat.c
/freebsd-11-stable/lib/libc/iconv/iconv_open.c
/freebsd-11-stable/lib/libc/iconv/iconv_open_into.c
/freebsd-11-stable/lib/libc/iconv/iconv_set_relocation_prefix.c
/freebsd-11-stable/lib/libc/iconv/iconvctl.c
/freebsd-11-stable/lib/libc/iconv/iconvlist.c
/freebsd-11-stable/lib/libc/include/compat.h
/freebsd-11-stable/lib/libc/include/errlst.h
/freebsd-11-stable/lib/libc/include/fpmath.h
/freebsd-11-stable/lib/libc/include/libc_private.h
/freebsd-11-stable/lib/libc/include/namespace.h
/freebsd-11-stable/lib/libc/include/nscache.h
/freebsd-11-stable/lib/libc/include/nscachedcli.h
/freebsd-11-stable/lib/libc/include/nss_tls.h
/freebsd-11-stable/lib/libc/include/reentrant.h
/freebsd-11-stable/lib/libc/include/spinlock.h
/freebsd-11-stable/lib/libc/include/un-namespace.h
/freebsd-11-stable/lib/libc/inet/inet_addr.c
/freebsd-11-stable/lib/libc/inet/inet_lnaof.c
/freebsd-11-stable/lib/libc/inet/inet_makeaddr.c
/freebsd-11-stable/lib/libc/inet/inet_netof.c
/freebsd-11-stable/lib/libc/inet/inet_network.c
/freebsd-11-stable/lib/libc/inet/inet_ntoa.c
/freebsd-11-stable/lib/libc/locale/ascii.c
/freebsd-11-stable/lib/libc/locale/btowc.c
/freebsd-11-stable/lib/libc/locale/c16rtomb.c
/freebsd-11-stable/lib/libc/locale/c32rtomb.c
/freebsd-11-stable/lib/libc/locale/cXXrtomb_iconv.h
/freebsd-11-stable/lib/libc/locale/collate.c
/freebsd-11-stable/lib/libc/locale/collate.h
/freebsd-11-stable/lib/libc/locale/collcmp.c
/freebsd-11-stable/lib/libc/locale/ctype.c
/freebsd-11-stable/lib/libc/locale/euc.c
/freebsd-11-stable/lib/libc/locale/fix_grouping.c
/freebsd-11-stable/lib/libc/locale/gb18030.c
/freebsd-11-stable/lib/libc/locale/gb2312.c
/freebsd-11-stable/lib/libc/locale/gbk.c
/freebsd-11-stable/lib/libc/locale/isctype.c
/freebsd-11-stable/lib/libc/locale/iswctype.c
/freebsd-11-stable/lib/libc/locale/ldpart.c
/freebsd-11-stable/lib/libc/locale/ldpart.h
/freebsd-11-stable/lib/libc/locale/lmessages.c
/freebsd-11-stable/lib/libc/locale/lmessages.h
/freebsd-11-stable/lib/libc/locale/lmonetary.c
/freebsd-11-stable/lib/libc/locale/lmonetary.h
/freebsd-11-stable/lib/libc/locale/lnumeric.c
/freebsd-11-stable/lib/libc/locale/lnumeric.h
/freebsd-11-stable/lib/libc/locale/localeconv.c
/freebsd-11-stable/lib/libc/locale/mblen.c
/freebsd-11-stable/lib/libc/locale/mblocal.h
/freebsd-11-stable/lib/libc/locale/mbrlen.c
/freebsd-11-stable/lib/libc/locale/mbrtoc16.c
/freebsd-11-stable/lib/libc/locale/mbrtoc32.c
/freebsd-11-stable/lib/libc/locale/mbrtocXX_iconv.h
/freebsd-11-stable/lib/libc/locale/mbrtowc.c
/freebsd-11-stable/lib/libc/locale/mbsinit.c
/freebsd-11-stable/lib/libc/locale/mbsnrtowcs.c
/freebsd-11-stable/lib/libc/locale/mbsrtowcs.c
/freebsd-11-stable/lib/libc/locale/mbstowcs.c
/freebsd-11-stable/lib/libc/locale/mbtowc.c
/freebsd-11-stable/lib/libc/locale/mskanji.c
/freebsd-11-stable/lib/libc/locale/nextwctype.c
/freebsd-11-stable/lib/libc/locale/nl_langinfo.c
/freebsd-11-stable/lib/libc/locale/none.c
/freebsd-11-stable/lib/libc/locale/rpmatch.c
/freebsd-11-stable/lib/libc/locale/rune.c
/freebsd-11-stable/lib/libc/locale/runefile.h
/freebsd-11-stable/lib/libc/locale/runetype.c
/freebsd-11-stable/lib/libc/locale/setlocale.c
/freebsd-11-stable/lib/libc/locale/setlocale.h
/freebsd-11-stable/lib/libc/locale/setrunelocale.c
/freebsd-11-stable/lib/libc/locale/table.c
/freebsd-11-stable/lib/libc/locale/tolower.c
/freebsd-11-stable/lib/libc/locale/toupper.c
/freebsd-11-stable/lib/libc/locale/utf8.c
/freebsd-11-stable/lib/libc/locale/wcrtomb.c
/freebsd-11-stable/lib/libc/locale/wcsftime.c
/freebsd-11-stable/lib/libc/locale/wcsnrtombs.c
/freebsd-11-stable/lib/libc/locale/wcsrtombs.c
/freebsd-11-stable/lib/libc/locale/wcstod.c
/freebsd-11-stable/lib/libc/locale/wcstof.c
/freebsd-11-stable/lib/libc/locale/wcstoimax.c
/freebsd-11-stable/lib/libc/locale/wcstol.c
/freebsd-11-stable/lib/libc/locale/wcstold.c
/freebsd-11-stable/lib/libc/locale/wcstoll.c
/freebsd-11-stable/lib/libc/locale/wcstombs.c
/freebsd-11-stable/lib/libc/locale/wcstoul.c
/freebsd-11-stable/lib/libc/locale/wcstoull.c
/freebsd-11-stable/lib/libc/locale/wcstoumax.c
/freebsd-11-stable/lib/libc/locale/wctob.c
/freebsd-11-stable/lib/libc/locale/wctomb.c
/freebsd-11-stable/lib/libc/locale/wctrans.c
/freebsd-11-stable/lib/libc/locale/wctype.c
/freebsd-11-stable/lib/libc/locale/wcwidth.c
/freebsd-11-stable/lib/libc/locale/xlocale.c
/freebsd-11-stable/lib/libc/locale/xlocale_private.h
/freebsd-11-stable/lib/libc/mips/SYS.h
/freebsd-11-stable/lib/libc/mips/_fpmath.h
/freebsd-11-stable/lib/libc/mips/gen/_set_tp.c
/freebsd-11-stable/lib/libc/mips/gen/fabs.c
/freebsd-11-stable/lib/libc/mips/gen/longjmp.c
/freebsd-11-stable/lib/libc/mips/gen/makecontext.c
/freebsd-11-stable/lib/libc/mips/gen/signalcontext.c
/freebsd-11-stable/lib/libc/net/ether_addr.c
/freebsd-11-stable/lib/libc/net/gai_strerror.c
/freebsd-11-stable/lib/libc/net/getaddrinfo.c
/freebsd-11-stable/lib/libc/net/gethostbydns.c
/freebsd-11-stable/lib/libc/net/gethostbyht.c
/freebsd-11-stable/lib/libc/net/gethostbynis.c
/freebsd-11-stable/lib/libc/net/gethostnamadr.c
/freebsd-11-stable/lib/libc/net/getifmaddrs.c
/freebsd-11-stable/lib/libc/net/getnameinfo.c
/freebsd-11-stable/lib/libc/net/getnetbydns.c
/freebsd-11-stable/lib/libc/net/getnetbyht.c
/freebsd-11-stable/lib/libc/net/getnetbynis.c
/freebsd-11-stable/lib/libc/net/getnetnamadr.c
/freebsd-11-stable/lib/libc/net/getproto.c
/freebsd-11-stable/lib/libc/net/getprotoent.c
/freebsd-11-stable/lib/libc/net/getprotoname.c
/freebsd-11-stable/lib/libc/net/getservent.c
/freebsd-11-stable/lib/libc/net/ip6opt.c
/freebsd-11-stable/lib/libc/net/linkaddr.c
/freebsd-11-stable/lib/libc/net/map_v4v6.c
/freebsd-11-stable/lib/libc/net/name6.c
/freebsd-11-stable/lib/libc/net/netdb_private.h
/freebsd-11-stable/lib/libc/net/nscache.c
/freebsd-11-stable/lib/libc/net/nscachedcli.c
/freebsd-11-stable/lib/libc/net/nsdispatch.c
/freebsd-11-stable/lib/libc/net/nslexer.l
/freebsd-11-stable/lib/libc/net/nsparser.y
/freebsd-11-stable/lib/libc/net/nss_backends.h
/freebsd-11-stable/lib/libc/net/nss_compat.c
/freebsd-11-stable/lib/libc/net/ntoh.c
/freebsd-11-stable/lib/libc/net/rcmd.c
/freebsd-11-stable/lib/libc/net/rcmdsh.c
/freebsd-11-stable/lib/libc/net/recv.c
/freebsd-11-stable/lib/libc/net/rthdr.c
/freebsd-11-stable/lib/libc/net/sctp_sys_calls.c
/freebsd-11-stable/lib/libc/net/send.c
/freebsd-11-stable/lib/libc/net/sockatmark.c
/freebsd-11-stable/lib/libc/net/sourcefilter.c
/freebsd-11-stable/lib/libc/net/vars.c
/freebsd-11-stable/lib/libc/posix1e/acl_branding.c
/freebsd-11-stable/lib/libc/posix1e/acl_calc_mask.c
/freebsd-11-stable/lib/libc/posix1e/acl_compat.c
/freebsd-11-stable/lib/libc/posix1e/acl_copy.c
/freebsd-11-stable/lib/libc/posix1e/acl_delete.c
/freebsd-11-stable/lib/libc/posix1e/acl_delete_entry.c
/freebsd-11-stable/lib/libc/posix1e/acl_entry.c
/freebsd-11-stable/lib/libc/posix1e/acl_flag.c
/freebsd-11-stable/lib/libc/posix1e/acl_free.c
/freebsd-11-stable/lib/libc/posix1e/acl_from_text.c
/freebsd-11-stable/lib/libc/posix1e/acl_from_text_nfs4.c
/freebsd-11-stable/lib/libc/posix1e/acl_get.c
/freebsd-11-stable/lib/libc/posix1e/acl_id_to_name.c
/freebsd-11-stable/lib/libc/posix1e/acl_init.c
/freebsd-11-stable/lib/libc/posix1e/acl_perm.c
/freebsd-11-stable/lib/libc/posix1e/acl_set.c
/freebsd-11-stable/lib/libc/posix1e/acl_strip.c
/freebsd-11-stable/lib/libc/posix1e/acl_support.c
/freebsd-11-stable/lib/libc/posix1e/acl_support.h
/freebsd-11-stable/lib/libc/posix1e/acl_support_nfs4.c
/freebsd-11-stable/lib/libc/posix1e/acl_to_text.c
/freebsd-11-stable/lib/libc/posix1e/acl_to_text_nfs4.c
/freebsd-11-stable/lib/libc/posix1e/acl_valid.c
/freebsd-11-stable/lib/libc/posix1e/extattr.c
/freebsd-11-stable/lib/libc/posix1e/mac.c
/freebsd-11-stable/lib/libc/posix1e/mac_exec.c
/freebsd-11-stable/lib/libc/posix1e/mac_get.c
/freebsd-11-stable/lib/libc/posix1e/mac_set.c
/freebsd-11-stable/lib/libc/powerpc/SYS.h
/freebsd-11-stable/lib/libc/powerpc/_fpmath.h
/freebsd-11-stable/lib/libc/powerpc/gen/_set_tp.c
/freebsd-11-stable/lib/libc/powerpc/gen/flt_rounds.c
/freebsd-11-stable/lib/libc/powerpc/gen/fpgetmask.c
/freebsd-11-stable/lib/libc/powerpc/gen/fpgetround.c
/freebsd-11-stable/lib/libc/powerpc/gen/fpgetsticky.c
/freebsd-11-stable/lib/libc/powerpc/gen/fpsetmask.c
/freebsd-11-stable/lib/libc/powerpc/gen/fpsetround.c
/freebsd-11-stable/lib/libc/powerpc/gen/makecontext.c
/freebsd-11-stable/lib/libc/powerpc/gen/signalcontext.c
/freebsd-11-stable/lib/libc/powerpc/gen/syncicache.c
/freebsd-11-stable/lib/libc/powerpc64/SYS.h
/freebsd-11-stable/lib/libc/powerpc64/_fpmath.h
/freebsd-11-stable/lib/libc/powerpc64/gen/_set_tp.c
/freebsd-11-stable/lib/libc/powerpc64/gen/flt_rounds.c
/freebsd-11-stable/lib/libc/powerpc64/gen/fpgetmask.c
/freebsd-11-stable/lib/libc/powerpc64/gen/fpgetround.c
/freebsd-11-stable/lib/libc/powerpc64/gen/fpgetsticky.c
/freebsd-11-stable/lib/libc/powerpc64/gen/fpsetmask.c
/freebsd-11-stable/lib/libc/powerpc64/gen/fpsetround.c
/freebsd-11-stable/lib/libc/powerpc64/gen/makecontext.c
/freebsd-11-stable/lib/libc/powerpc64/gen/signalcontext.c
/freebsd-11-stable/lib/libc/powerpc64/gen/syncicache.c
/freebsd-11-stable/lib/libc/quad/TESTS/divrem.c
/freebsd-11-stable/lib/libc/quad/TESTS/mul.c
/freebsd-11-stable/lib/libc/quad/adddi3.c
/freebsd-11-stable/lib/libc/quad/anddi3.c
/freebsd-11-stable/lib/libc/quad/ashldi3.c
/freebsd-11-stable/lib/libc/quad/ashrdi3.c
/freebsd-11-stable/lib/libc/quad/cmpdi2.c
/freebsd-11-stable/lib/libc/quad/divdi3.c
/freebsd-11-stable/lib/libc/quad/fixdfdi.c
/freebsd-11-stable/lib/libc/quad/fixsfdi.c
/freebsd-11-stable/lib/libc/quad/fixunsdfdi.c
/freebsd-11-stable/lib/libc/quad/fixunssfdi.c
/freebsd-11-stable/lib/libc/quad/floatdidf.c
/freebsd-11-stable/lib/libc/quad/floatdisf.c
/freebsd-11-stable/lib/libc/quad/floatunsdidf.c
/freebsd-11-stable/lib/libc/quad/iordi3.c
/freebsd-11-stable/lib/libc/quad/lshldi3.c
/freebsd-11-stable/lib/libc/quad/lshrdi3.c
/freebsd-11-stable/lib/libc/quad/moddi3.c
/freebsd-11-stable/lib/libc/quad/muldi3.c
/freebsd-11-stable/lib/libc/quad/negdi2.c
/freebsd-11-stable/lib/libc/quad/notdi2.c
/freebsd-11-stable/lib/libc/quad/qdivrem.c
/freebsd-11-stable/lib/libc/quad/quad.h
/freebsd-11-stable/lib/libc/quad/subdi3.c
/freebsd-11-stable/lib/libc/quad/ucmpdi2.c
/freebsd-11-stable/lib/libc/quad/udivdi3.c
/freebsd-11-stable/lib/libc/quad/umoddi3.c
/freebsd-11-stable/lib/libc/quad/xordi3.c
/freebsd-11-stable/lib/libc/regex/cname.h
/freebsd-11-stable/lib/libc/regex/engine.c
/freebsd-11-stable/lib/libc/regex/regcomp.c
/freebsd-11-stable/lib/libc/regex/regerror.c
/freebsd-11-stable/lib/libc/regex/regex2.h
/freebsd-11-stable/lib/libc/regex/regexec.c
/freebsd-11-stable/lib/libc/regex/regfree.c
/freebsd-11-stable/lib/libc/regex/utils.h
/freebsd-11-stable/lib/libc/resolv/h_errno.c
/freebsd-11-stable/lib/libc/resolv/herror.c
/freebsd-11-stable/lib/libc/resolv/res_comp.c
/freebsd-11-stable/lib/libc/resolv/res_debug.c
/freebsd-11-stable/lib/libc/resolv/res_init.c
/freebsd-11-stable/lib/libc/resolv/res_mkquery.c
/freebsd-11-stable/lib/libc/resolv/res_query.c
/freebsd-11-stable/lib/libc/resolv/res_send.c
/freebsd-11-stable/lib/libc/resolv/res_state.c
/freebsd-11-stable/lib/libc/rpc/auth_des.c
/freebsd-11-stable/lib/libc/rpc/auth_none.c
/freebsd-11-stable/lib/libc/rpc/auth_unix.c
/freebsd-11-stable/lib/libc/rpc/authdes_prot.c
/freebsd-11-stable/lib/libc/rpc/authunix_prot.c
/freebsd-11-stable/lib/libc/rpc/bindresvport.c
/freebsd-11-stable/lib/libc/rpc/clnt_bcast.c
/freebsd-11-stable/lib/libc/rpc/clnt_dg.c
/freebsd-11-stable/lib/libc/rpc/clnt_generic.c
/freebsd-11-stable/lib/libc/rpc/clnt_perror.c
/freebsd-11-stable/lib/libc/rpc/clnt_raw.c
/freebsd-11-stable/lib/libc/rpc/clnt_simple.c
/freebsd-11-stable/lib/libc/rpc/clnt_vc.c
/freebsd-11-stable/lib/libc/rpc/crypt_client.c
/freebsd-11-stable/lib/libc/rpc/des_crypt.c
/freebsd-11-stable/lib/libc/rpc/des_soft.c
/freebsd-11-stable/lib/libc/rpc/getnetconfig.c
/freebsd-11-stable/lib/libc/rpc/getnetpath.c
/freebsd-11-stable/lib/libc/rpc/getpublickey.c
/freebsd-11-stable/lib/libc/rpc/getrpcent.c
/freebsd-11-stable/lib/libc/rpc/getrpcport.c
/freebsd-11-stable/lib/libc/rpc/key_call.c
/freebsd-11-stable/lib/libc/rpc/key_prot_xdr.c
/freebsd-11-stable/lib/libc/rpc/mt_misc.h
/freebsd-11-stable/lib/libc/rpc/netname.c
/freebsd-11-stable/lib/libc/rpc/netnamer.c
/freebsd-11-stable/lib/libc/rpc/pmap_clnt.c
/freebsd-11-stable/lib/libc/rpc/pmap_getmaps.c
/freebsd-11-stable/lib/libc/rpc/pmap_getport.c
/freebsd-11-stable/lib/libc/rpc/pmap_prot.c
/freebsd-11-stable/lib/libc/rpc/pmap_prot2.c
/freebsd-11-stable/lib/libc/rpc/pmap_rmt.c
/freebsd-11-stable/lib/libc/rpc/rpc_callmsg.c
/freebsd-11-stable/lib/libc/rpc/rpc_com.h
/freebsd-11-stable/lib/libc/rpc/rpc_commondata.c
/freebsd-11-stable/lib/libc/rpc/rpc_dtablesize.c
/freebsd-11-stable/lib/libc/rpc/rpc_generic.c
/freebsd-11-stable/lib/libc/rpc/rpc_prot.c
/freebsd-11-stable/lib/libc/rpc/rpc_soc.c
/freebsd-11-stable/lib/libc/rpc/rpcb_clnt.c
/freebsd-11-stable/lib/libc/rpc/rpcb_prot.c
/freebsd-11-stable/lib/libc/rpc/rpcb_st_xdr.c
/freebsd-11-stable/lib/libc/rpc/rpcdname.c
/freebsd-11-stable/lib/libc/rpc/rpcsec_gss_stub.c
/freebsd-11-stable/lib/libc/rpc/rtime.c
/freebsd-11-stable/lib/libc/rpc/svc.c
/freebsd-11-stable/lib/libc/rpc/svc_auth.c
/freebsd-11-stable/lib/libc/rpc/svc_auth_des.c
/freebsd-11-stable/lib/libc/rpc/svc_auth_unix.c
/freebsd-11-stable/lib/libc/rpc/svc_dg.c
/freebsd-11-stable/lib/libc/rpc/svc_generic.c
/freebsd-11-stable/lib/libc/rpc/svc_raw.c
/freebsd-11-stable/lib/libc/rpc/svc_run.c
/freebsd-11-stable/lib/libc/rpc/svc_simple.c
/freebsd-11-stable/lib/libc/rpc/svc_vc.c
/freebsd-11-stable/lib/libc/softfloat/fpgetmask.c
/freebsd-11-stable/lib/libc/softfloat/fpgetround.c
/freebsd-11-stable/lib/libc/softfloat/fpgetsticky.c
/freebsd-11-stable/lib/libc/softfloat/fpsetmask.c
/freebsd-11-stable/lib/libc/softfloat/fpsetround.c
/freebsd-11-stable/lib/libc/softfloat/fpsetsticky.c
/freebsd-11-stable/lib/libc/sparc64/SYS.h
/freebsd-11-stable/lib/libc/sparc64/_fpmath.h
/freebsd-11-stable/lib/libc/sparc64/fpu/fpu.c
/freebsd-11-stable/lib/libc/sparc64/fpu/fpu_add.c
/freebsd-11-stable/lib/libc/sparc64/fpu/fpu_arith.h
/freebsd-11-stable/lib/libc/sparc64/fpu/fpu_compare.c
/freebsd-11-stable/lib/libc/sparc64/fpu/fpu_emu.h
/freebsd-11-stable/lib/libc/sparc64/fpu/fpu_extern.h
/freebsd-11-stable/lib/libc/sparc64/fpu/fpu_qp.c
/freebsd-11-stable/lib/libc/sparc64/fpu/fpu_reg.h
/freebsd-11-stable/lib/libc/sparc64/gen/_set_tp.c
/freebsd-11-stable/lib/libc/sparc64/gen/makecontext.c
/freebsd-11-stable/lib/libc/sparc64/gen/signalcontext.c
/freebsd-11-stable/lib/libc/sparc64/sys/__sparc_sigtramp_setup.c
/freebsd-11-stable/lib/libc/sparc64/sys/__sparc_utrap.c
/freebsd-11-stable/lib/libc/sparc64/sys/__sparc_utrap_align.c
/freebsd-11-stable/lib/libc/sparc64/sys/__sparc_utrap_emul.c
/freebsd-11-stable/lib/libc/sparc64/sys/__sparc_utrap_install.c
/freebsd-11-stable/lib/libc/sparc64/sys/__sparc_utrap_private.h
/freebsd-11-stable/lib/libc/sparc64/sys/__sparc_utrap_setup.c
/freebsd-11-stable/lib/libc/stdio/_flock_stub.c
/freebsd-11-stable/lib/libc/stdio/asprintf.c
/freebsd-11-stable/lib/libc/stdio/clrerr.c
/freebsd-11-stable/lib/libc/stdio/dprintf.c
/freebsd-11-stable/lib/libc/stdio/fclose.c
/freebsd-11-stable/lib/libc/stdio/fcloseall.c
/freebsd-11-stable/lib/libc/stdio/fdopen.c
/freebsd-11-stable/lib/libc/stdio/feof.c
/freebsd-11-stable/lib/libc/stdio/ferror.c
/freebsd-11-stable/lib/libc/stdio/fflush.c
/freebsd-11-stable/lib/libc/stdio/fgetc.c
/freebsd-11-stable/lib/libc/stdio/fgetln.c
/freebsd-11-stable/lib/libc/stdio/fgetpos.c
/freebsd-11-stable/lib/libc/stdio/fgets.c
/freebsd-11-stable/lib/libc/stdio/fgetwc.c
/freebsd-11-stable/lib/libc/stdio/fgetwln.c
/freebsd-11-stable/lib/libc/stdio/fgetws.c
/freebsd-11-stable/lib/libc/stdio/fileno.c
/freebsd-11-stable/lib/libc/stdio/findfp.c
/freebsd-11-stable/lib/libc/stdio/flags.c
/freebsd-11-stable/lib/libc/stdio/floatio.h
/freebsd-11-stable/lib/libc/stdio/fmemopen.c
/freebsd-11-stable/lib/libc/stdio/fopen.c
/freebsd-11-stable/lib/libc/stdio/fprintf.c
/freebsd-11-stable/lib/libc/stdio/fpurge.c
/freebsd-11-stable/lib/libc/stdio/fputc.c
/freebsd-11-stable/lib/libc/stdio/fputs.c
/freebsd-11-stable/lib/libc/stdio/fputwc.c
/freebsd-11-stable/lib/libc/stdio/fputws.c
/freebsd-11-stable/lib/libc/stdio/fread.c
/freebsd-11-stable/lib/libc/stdio/freopen.c
/freebsd-11-stable/lib/libc/stdio/fscanf.c
/freebsd-11-stable/lib/libc/stdio/fseek.c
/freebsd-11-stable/lib/libc/stdio/fsetpos.c
/freebsd-11-stable/lib/libc/stdio/ftell.c
/freebsd-11-stable/lib/libc/stdio/funopen.c
/freebsd-11-stable/lib/libc/stdio/fvwrite.c
/freebsd-11-stable/lib/libc/stdio/fvwrite.h
/freebsd-11-stable/lib/libc/stdio/fwalk.c
/freebsd-11-stable/lib/libc/stdio/fwide.c
/freebsd-11-stable/lib/libc/stdio/fwprintf.c
/freebsd-11-stable/lib/libc/stdio/fwrite.c
/freebsd-11-stable/lib/libc/stdio/fwscanf.c
/freebsd-11-stable/lib/libc/stdio/getc.c
/freebsd-11-stable/lib/libc/stdio/getchar.c
/freebsd-11-stable/lib/libc/stdio/getdelim.c
/freebsd-11-stable/lib/libc/stdio/getline.c
/freebsd-11-stable/lib/libc/stdio/gets.c
/freebsd-11-stable/lib/libc/stdio/getw.c
/freebsd-11-stable/lib/libc/stdio/getwc.c
/freebsd-11-stable/lib/libc/stdio/getwchar.c
/freebsd-11-stable/lib/libc/stdio/glue.h
/freebsd-11-stable/lib/libc/stdio/local.h
/freebsd-11-stable/lib/libc/stdio/makebuf.c
/freebsd-11-stable/lib/libc/stdio/mktemp.c
/freebsd-11-stable/lib/libc/stdio/open_memstream.c
/freebsd-11-stable/lib/libc/stdio/open_wmemstream.c
/freebsd-11-stable/lib/libc/stdio/perror.c
/freebsd-11-stable/lib/libc/stdio/printf-pos.c
/freebsd-11-stable/lib/libc/stdio/printf.c
/freebsd-11-stable/lib/libc/stdio/printfcommon.h
/freebsd-11-stable/lib/libc/stdio/printflocal.h
/freebsd-11-stable/lib/libc/stdio/putc.c
/freebsd-11-stable/lib/libc/stdio/putchar.c
/freebsd-11-stable/lib/libc/stdio/puts.c
/freebsd-11-stable/lib/libc/stdio/putw.c
/freebsd-11-stable/lib/libc/stdio/putwc.c
/freebsd-11-stable/lib/libc/stdio/putwchar.c
/freebsd-11-stable/lib/libc/stdio/refill.c
/freebsd-11-stable/lib/libc/stdio/remove.c
/freebsd-11-stable/lib/libc/stdio/rewind.c
/freebsd-11-stable/lib/libc/stdio/rget.c
/freebsd-11-stable/lib/libc/stdio/scanf.c
/freebsd-11-stable/lib/libc/stdio/setbuf.c
/freebsd-11-stable/lib/libc/stdio/setbuffer.c
/freebsd-11-stable/lib/libc/stdio/setvbuf.c
/freebsd-11-stable/lib/libc/stdio/snprintf.c
/freebsd-11-stable/lib/libc/stdio/sprintf.c
/freebsd-11-stable/lib/libc/stdio/sscanf.c
/freebsd-11-stable/lib/libc/stdio/stdio.c
/freebsd-11-stable/lib/libc/stdio/swprintf.c
/freebsd-11-stable/lib/libc/stdio/swscanf.c
/freebsd-11-stable/lib/libc/stdio/tempnam.c
/freebsd-11-stable/lib/libc/stdio/tmpfile.c
/freebsd-11-stable/lib/libc/stdio/tmpnam.c
/freebsd-11-stable/lib/libc/stdio/ungetc.c
/freebsd-11-stable/lib/libc/stdio/ungetwc.c
/freebsd-11-stable/lib/libc/stdio/vasprintf.c
/freebsd-11-stable/lib/libc/stdio/vdprintf.c
/freebsd-11-stable/lib/libc/stdio/vfprintf.c
/freebsd-11-stable/lib/libc/stdio/vfscanf.c
/freebsd-11-stable/lib/libc/stdio/vfwprintf.c
/freebsd-11-stable/lib/libc/stdio/vfwscanf.c
/freebsd-11-stable/lib/libc/stdio/vprintf.c
/freebsd-11-stable/lib/libc/stdio/vscanf.c
/freebsd-11-stable/lib/libc/stdio/vsnprintf.c
/freebsd-11-stable/lib/libc/stdio/vsprintf.c
/freebsd-11-stable/lib/libc/stdio/vsscanf.c
/freebsd-11-stable/lib/libc/stdio/vswprintf.c
/freebsd-11-stable/lib/libc/stdio/vswscanf.c
/freebsd-11-stable/lib/libc/stdio/vwprintf.c
/freebsd-11-stable/lib/libc/stdio/vwscanf.c
/freebsd-11-stable/lib/libc/stdio/wbuf.c
/freebsd-11-stable/lib/libc/stdio/wprintf.c
/freebsd-11-stable/lib/libc/stdio/wscanf.c
/freebsd-11-stable/lib/libc/stdio/wsetup.c
/freebsd-11-stable/lib/libc/stdio/xprintf.c
/freebsd-11-stable/lib/libc/stdio/xprintf_errno.c
/freebsd-11-stable/lib/libc/stdio/xprintf_float.c
/freebsd-11-stable/lib/libc/stdio/xprintf_hexdump.c
/freebsd-11-stable/lib/libc/stdio/xprintf_int.c
/freebsd-11-stable/lib/libc/stdio/xprintf_quote.c
/freebsd-11-stable/lib/libc/stdio/xprintf_str.c
/freebsd-11-stable/lib/libc/stdio/xprintf_time.c
/freebsd-11-stable/lib/libc/stdio/xprintf_vis.c
/freebsd-11-stable/lib/libc/stdlib/abort.c
/freebsd-11-stable/lib/libc/stdlib/abs.c
/freebsd-11-stable/lib/libc/stdlib/atexit.c
/freebsd-11-stable/lib/libc/stdlib/atexit.h
/freebsd-11-stable/lib/libc/stdlib/atof.c
/freebsd-11-stable/lib/libc/stdlib/atoi.c
/freebsd-11-stable/lib/libc/stdlib/atol.c
/freebsd-11-stable/lib/libc/stdlib/atoll.c
/freebsd-11-stable/lib/libc/stdlib/bsearch.c
/freebsd-11-stable/lib/libc/stdlib/div.c
/freebsd-11-stable/lib/libc/stdlib/exit.c
/freebsd-11-stable/lib/libc/stdlib/getenv.c
/freebsd-11-stable/lib/libc/stdlib/getopt.c
/freebsd-11-stable/lib/libc/stdlib/getsubopt.c
/freebsd-11-stable/lib/libc/stdlib/hcreate.c
/freebsd-11-stable/lib/libc/stdlib/heapsort.c
/freebsd-11-stable/lib/libc/stdlib/imaxabs.c
/freebsd-11-stable/lib/libc/stdlib/imaxdiv.c
/freebsd-11-stable/lib/libc/stdlib/labs.c
/freebsd-11-stable/lib/libc/stdlib/ldiv.c
/freebsd-11-stable/lib/libc/stdlib/llabs.c
/freebsd-11-stable/lib/libc/stdlib/lldiv.c
/freebsd-11-stable/lib/libc/stdlib/merge.c
/freebsd-11-stable/lib/libc/stdlib/ptsname.c
/freebsd-11-stable/lib/libc/stdlib/qsort.c
/freebsd-11-stable/lib/libc/stdlib/quick_exit.c
/freebsd-11-stable/lib/libc/stdlib/radixsort.c
/freebsd-11-stable/lib/libc/stdlib/rand.c
/freebsd-11-stable/lib/libc/stdlib/random.c
/freebsd-11-stable/lib/libc/stdlib/reallocf.c
/freebsd-11-stable/lib/libc/stdlib/realpath.c
/freebsd-11-stable/lib/libc/stdlib/strfmon.c
/freebsd-11-stable/lib/libc/stdlib/strtoimax.c
/freebsd-11-stable/lib/libc/stdlib/strtol.c
/freebsd-11-stable/lib/libc/stdlib/strtoll.c
/freebsd-11-stable/lib/libc/stdlib/strtoq.c
/freebsd-11-stable/lib/libc/stdlib/strtoul.c
/freebsd-11-stable/lib/libc/stdlib/strtoull.c
/freebsd-11-stable/lib/libc/stdlib/strtoumax.c
/freebsd-11-stable/lib/libc/stdlib/strtouq.c
/freebsd-11-stable/lib/libc/stdlib/system.c
/freebsd-11-stable/lib/libc/stdtime/strptime.c
/freebsd-11-stable/lib/libc/stdtime/timelocal.c
/freebsd-11-stable/lib/libc/stdtime/timelocal.h
/freebsd-11-stable/lib/libc/string/bcmp.c
/freebsd-11-stable/lib/libc/string/bcopy.c
/freebsd-11-stable/lib/libc/string/ffs.c
/freebsd-11-stable/lib/libc/string/ffsl.c
/freebsd-11-stable/lib/libc/string/ffsll.c
/freebsd-11-stable/lib/libc/string/fls.c
/freebsd-11-stable/lib/libc/string/flsl.c
/freebsd-11-stable/lib/libc/string/flsll.c
/freebsd-11-stable/lib/libc/string/memccpy.c
/freebsd-11-stable/lib/libc/string/memchr.c
/freebsd-11-stable/lib/libc/string/memcmp.c
/freebsd-11-stable/lib/libc/string/memmem.c
/freebsd-11-stable/lib/libc/string/memset.c
/freebsd-11-stable/lib/libc/string/stpcpy.c
/freebsd-11-stable/lib/libc/string/stpncpy.c
/freebsd-11-stable/lib/libc/string/strcasecmp.c
/freebsd-11-stable/lib/libc/string/strcasestr.c
/freebsd-11-stable/lib/libc/string/strcat.c
/freebsd-11-stable/lib/libc/string/strchr.c
/freebsd-11-stable/lib/libc/string/strchrnul.c
/freebsd-11-stable/lib/libc/string/strcmp.c
/freebsd-11-stable/lib/libc/string/strcoll.c
/freebsd-11-stable/lib/libc/string/strcpy.c
/freebsd-11-stable/lib/libc/string/strcspn.c
/freebsd-11-stable/lib/libc/string/strdup.c
/freebsd-11-stable/lib/libc/string/strerror.c
/freebsd-11-stable/lib/libc/string/strlen.c
/freebsd-11-stable/lib/libc/string/strmode.c
/freebsd-11-stable/lib/libc/string/strncat.c
/freebsd-11-stable/lib/libc/string/strncmp.c
/freebsd-11-stable/lib/libc/string/strncpy.c
/freebsd-11-stable/lib/libc/string/strnlen.c
/freebsd-11-stable/lib/libc/string/strnstr.c
/freebsd-11-stable/lib/libc/string/strpbrk.c
/freebsd-11-stable/lib/libc/string/strrchr.c
/freebsd-11-stable/lib/libc/string/strsep.c
/freebsd-11-stable/lib/libc/string/strsignal.c
/freebsd-11-stable/lib/libc/string/strspn.c
/freebsd-11-stable/lib/libc/string/strstr.c
/freebsd-11-stable/lib/libc/string/strtok.c
/freebsd-11-stable/lib/libc/string/strxfrm.c
/freebsd-11-stable/lib/libc/string/swab.c
/freebsd-11-stable/lib/libc/string/wcpcpy.c
/freebsd-11-stable/lib/libc/string/wcpncpy.c
/freebsd-11-stable/lib/libc/string/wcscasecmp.c
/freebsd-11-stable/lib/libc/string/wcscat.c
/freebsd-11-stable/lib/libc/string/wcschr.c
/freebsd-11-stable/lib/libc/string/wcscmp.c
/freebsd-11-stable/lib/libc/string/wcscoll.c
/freebsd-11-stable/lib/libc/string/wcscpy.c
/freebsd-11-stable/lib/libc/string/wcscspn.c
/freebsd-11-stable/lib/libc/string/wcsdup.c
/freebsd-11-stable/lib/libc/string/wcslcat.c
/freebsd-11-stable/lib/libc/string/wcslcpy.c
/freebsd-11-stable/lib/libc/string/wcslen.c
/freebsd-11-stable/lib/libc/string/wcsncasecmp.c
/freebsd-11-stable/lib/libc/string/wcsncat.c
/freebsd-11-stable/lib/libc/string/wcsncmp.c
/freebsd-11-stable/lib/libc/string/wcsncpy.c
/freebsd-11-stable/lib/libc/string/wcsnlen.c
/freebsd-11-stable/lib/libc/string/wcspbrk.c
/freebsd-11-stable/lib/libc/string/wcsrchr.c
/freebsd-11-stable/lib/libc/string/wcsspn.c
/freebsd-11-stable/lib/libc/string/wcsstr.c
/freebsd-11-stable/lib/libc/string/wcstok.c
/freebsd-11-stable/lib/libc/string/wcswidth.c
/freebsd-11-stable/lib/libc/string/wcsxfrm.c
/freebsd-11-stable/lib/libc/string/wmemchr.c
/freebsd-11-stable/lib/libc/string/wmemcmp.c
/freebsd-11-stable/lib/libc/string/wmemcpy.c
/freebsd-11-stable/lib/libc/string/wmemmove.c
/freebsd-11-stable/lib/libc/string/wmemset.c
/freebsd-11-stable/lib/libc/sys/__error.c
/freebsd-11-stable/lib/libc/sys/__vdso_gettimeofday.c
/freebsd-11-stable/lib/libc/sys/clock_gettime.c
/freebsd-11-stable/lib/libc/sys/fcntl.c
/freebsd-11-stable/lib/libc/sys/gettimeofday.c
/freebsd-11-stable/lib/libc/sys/sigwait.c
/freebsd-11-stable/lib/libc/uuid/uuid_compare.c
/freebsd-11-stable/lib/libc/uuid/uuid_create.c
/freebsd-11-stable/lib/libc/uuid/uuid_create_nil.c
/freebsd-11-stable/lib/libc/uuid/uuid_equal.c
/freebsd-11-stable/lib/libc/uuid/uuid_from_string.c
/freebsd-11-stable/lib/libc/uuid/uuid_hash.c
/freebsd-11-stable/lib/libc/uuid/uuid_is_nil.c
/freebsd-11-stable/lib/libc/uuid/uuid_stream.c
/freebsd-11-stable/lib/libc/uuid/uuid_to_string.c
/freebsd-11-stable/lib/libc/xdr/xdr.c
/freebsd-11-stable/lib/libc/xdr/xdr_array.c
/freebsd-11-stable/lib/libc/xdr/xdr_float.c
/freebsd-11-stable/lib/libc/xdr/xdr_mem.c
/freebsd-11-stable/lib/libc/xdr/xdr_rec.c
/freebsd-11-stable/lib/libc/xdr/xdr_reference.c
/freebsd-11-stable/lib/libc/xdr/xdr_sizeof.c
/freebsd-11-stable/lib/libc/xdr/xdr_stdio.c
/freebsd-11-stable/lib/libc/yp/xdryp.c
/freebsd-11-stable/lib/libc/yp/yplib.c
/freebsd-11-stable/lib/libc_nonshared/__stub.c
/freebsd-11-stable/lib/libcalendar/calendar.c
/freebsd-11-stable/lib/libcalendar/calendar.h
/freebsd-11-stable/lib/libcalendar/easter.c
/freebsd-11-stable/lib/libcam/camlib.c
/freebsd-11-stable/lib/libcam/camlib.h
/freebsd-11-stable/lib/libcam/scsi_cmdparse.c
/freebsd-11-stable/lib/libcompat/4.1/ftime.c
/freebsd-11-stable/lib/libcompat/4.3/re_comp.c
/freebsd-11-stable/lib/libcompat/4.3/rexec.c
/freebsd-11-stable/lib/libcompat/4.4/cuserid.c
/freebsd-11-stable/lib/libcrypt/crypt-md5.c
/freebsd-11-stable/lib/libcrypt/crypt-nthash.c
/freebsd-11-stable/lib/libcrypt/crypt-sha256.c
/freebsd-11-stable/lib/libcrypt/crypt-sha512.c
/freebsd-11-stable/lib/libcrypt/crypt.c
/freebsd-11-stable/lib/libcrypt/crypt.h
/freebsd-11-stable/lib/libcrypt/misc.c
/freebsd-11-stable/lib/libdevinfo/devinfo.c
/freebsd-11-stable/lib/libdevinfo/devinfo.h
/freebsd-11-stable/lib/libdevinfo/devinfo_var.h
/freebsd-11-stable/lib/libdevstat/devstat.c
/freebsd-11-stable/lib/libdevstat/devstat.h
/freebsd-11-stable/lib/libfetch/common.c
/freebsd-11-stable/lib/libfetch/common.h
/freebsd-11-stable/lib/libfetch/fetch.c
/freebsd-11-stable/lib/libfetch/fetch.h
/freebsd-11-stable/lib/libfetch/file.c
/freebsd-11-stable/lib/libfetch/ftp.c
/freebsd-11-stable/lib/libfetch/http.c
/freebsd-11-stable/lib/libgeom/geom_ctl.c
/freebsd-11-stable/lib/libgeom/geom_getxml.c
/freebsd-11-stable/lib/libgeom/geom_stats.c
/freebsd-11-stable/lib/libgeom/geom_util.c
/freebsd-11-stable/lib/libgeom/geom_xml2tree.c
/freebsd-11-stable/lib/libgeom/libgeom.h
/freebsd-11-stable/lib/libgssapi/context.h
/freebsd-11-stable/lib/libgssapi/cred.h
/freebsd-11-stable/lib/libgssapi/gss_accept_sec_context.c
/freebsd-11-stable/lib/libgssapi/gss_acquire_cred.c
/freebsd-11-stable/lib/libgssapi/gss_add_cred.c
/freebsd-11-stable/lib/libgssapi/gss_add_oid_set_member.c
/freebsd-11-stable/lib/libgssapi/gss_buffer_set.c
/freebsd-11-stable/lib/libgssapi/gss_canonicalize_name.c
/freebsd-11-stable/lib/libgssapi/gss_compare_name.c
/freebsd-11-stable/lib/libgssapi/gss_context_time.c
/freebsd-11-stable/lib/libgssapi/gss_create_empty_oid_set.c
/freebsd-11-stable/lib/libgssapi/gss_decapsulate_token.c
/freebsd-11-stable/lib/libgssapi/gss_delete_sec_context.c
/freebsd-11-stable/lib/libgssapi/gss_display_name.c
/freebsd-11-stable/lib/libgssapi/gss_display_status.c
/freebsd-11-stable/lib/libgssapi/gss_duplicate_name.c
/freebsd-11-stable/lib/libgssapi/gss_duplicate_oid.c
/freebsd-11-stable/lib/libgssapi/gss_encapsulate_token.c
/freebsd-11-stable/lib/libgssapi/gss_export_name.c
/freebsd-11-stable/lib/libgssapi/gss_export_sec_context.c
/freebsd-11-stable/lib/libgssapi/gss_get_mic.c
/freebsd-11-stable/lib/libgssapi/gss_import_name.c
/freebsd-11-stable/lib/libgssapi/gss_import_sec_context.c
/freebsd-11-stable/lib/libgssapi/gss_indicate_mechs.c
/freebsd-11-stable/lib/libgssapi/gss_init_sec_context.c
/freebsd-11-stable/lib/libgssapi/gss_inquire_context.c
/freebsd-11-stable/lib/libgssapi/gss_inquire_cred.c
/freebsd-11-stable/lib/libgssapi/gss_inquire_cred_by_mech.c
/freebsd-11-stable/lib/libgssapi/gss_inquire_cred_by_oid.c
/freebsd-11-stable/lib/libgssapi/gss_inquire_mechs_for_name.c
/freebsd-11-stable/lib/libgssapi/gss_inquire_names_for_mech.c
/freebsd-11-stable/lib/libgssapi/gss_inquire_sec_context_by_oid.c
/freebsd-11-stable/lib/libgssapi/gss_krb5.c
/freebsd-11-stable/lib/libgssapi/gss_mech_switch.c
/freebsd-11-stable/lib/libgssapi/gss_names.c
/freebsd-11-stable/lib/libgssapi/gss_oid_to_str.c
/freebsd-11-stable/lib/libgssapi/gss_pname_to_uid.c
/freebsd-11-stable/lib/libgssapi/gss_process_context_token.c
/freebsd-11-stable/lib/libgssapi/gss_pseudo_random.c
/freebsd-11-stable/lib/libgssapi/gss_release_buffer.c
/freebsd-11-stable/lib/libgssapi/gss_release_cred.c
/freebsd-11-stable/lib/libgssapi/gss_release_name.c
/freebsd-11-stable/lib/libgssapi/gss_release_oid.c
/freebsd-11-stable/lib/libgssapi/gss_release_oid_set.c
/freebsd-11-stable/lib/libgssapi/gss_seal.c
/freebsd-11-stable/lib/libgssapi/gss_set_cred_option.c
/freebsd-11-stable/lib/libgssapi/gss_set_sec_context_option.c
/freebsd-11-stable/lib/libgssapi/gss_sign.c
/freebsd-11-stable/lib/libgssapi/gss_test_oid_set_member.c
/freebsd-11-stable/lib/libgssapi/gss_unseal.c
/freebsd-11-stable/lib/libgssapi/gss_unwrap.c
/freebsd-11-stable/lib/libgssapi/gss_utils.c
/freebsd-11-stable/lib/libgssapi/gss_verify.c
/freebsd-11-stable/lib/libgssapi/gss_verify_mic.c
/freebsd-11-stable/lib/libgssapi/gss_wrap.c
/freebsd-11-stable/lib/libgssapi/gss_wrap_size_limit.c
/freebsd-11-stable/lib/libgssapi/mech_switch.h
/freebsd-11-stable/lib/libgssapi/name.h
/freebsd-11-stable/lib/libgssapi/spnego.h
/freebsd-11-stable/lib/libgssapi/utils.h
/freebsd-11-stable/lib/libiconv_modules/BIG5/citrus_big5.c
/freebsd-11-stable/lib/libiconv_modules/BIG5/citrus_big5.h
/freebsd-11-stable/lib/libiconv_modules/DECHanyu/citrus_dechanyu.c
/freebsd-11-stable/lib/libiconv_modules/DECHanyu/citrus_dechanyu.h
/freebsd-11-stable/lib/libiconv_modules/EUC/citrus_euc.c
/freebsd-11-stable/lib/libiconv_modules/EUC/citrus_euc.h
/freebsd-11-stable/lib/libiconv_modules/EUCTW/citrus_euctw.c
/freebsd-11-stable/lib/libiconv_modules/EUCTW/citrus_euctw.h
/freebsd-11-stable/lib/libiconv_modules/GBK2K/citrus_gbk2k.c
/freebsd-11-stable/lib/libiconv_modules/GBK2K/citrus_gbk2k.h
/freebsd-11-stable/lib/libiconv_modules/HZ/citrus_hz.c
/freebsd-11-stable/lib/libiconv_modules/HZ/citrus_hz.h
/freebsd-11-stable/lib/libiconv_modules/ISO2022/citrus_iso2022.c
/freebsd-11-stable/lib/libiconv_modules/ISO2022/citrus_iso2022.h
/freebsd-11-stable/lib/libiconv_modules/JOHAB/citrus_johab.c
/freebsd-11-stable/lib/libiconv_modules/JOHAB/citrus_johab.h
/freebsd-11-stable/lib/libiconv_modules/MSKanji/citrus_mskanji.c
/freebsd-11-stable/lib/libiconv_modules/MSKanji/citrus_mskanji.h
/freebsd-11-stable/lib/libiconv_modules/UES/citrus_ues.c
/freebsd-11-stable/lib/libiconv_modules/UES/citrus_ues.h
/freebsd-11-stable/lib/libiconv_modules/UTF1632/citrus_utf1632.c
/freebsd-11-stable/lib/libiconv_modules/UTF1632/citrus_utf1632.h
/freebsd-11-stable/lib/libiconv_modules/UTF7/citrus_utf7.c
/freebsd-11-stable/lib/libiconv_modules/UTF7/citrus_utf7.h
/freebsd-11-stable/lib/libiconv_modules/UTF8/citrus_utf8.c
/freebsd-11-stable/lib/libiconv_modules/UTF8/citrus_utf8.h
/freebsd-11-stable/lib/libiconv_modules/VIQR/citrus_viqr.c
/freebsd-11-stable/lib/libiconv_modules/VIQR/citrus_viqr.h
/freebsd-11-stable/lib/libiconv_modules/ZW/citrus_zw.c
/freebsd-11-stable/lib/libiconv_modules/ZW/citrus_zw.h
/freebsd-11-stable/lib/libiconv_modules/iconv_none/citrus_iconv_none.c
/freebsd-11-stable/lib/libiconv_modules/iconv_none/citrus_iconv_none.h
/freebsd-11-stable/lib/libiconv_modules/iconv_std/citrus_iconv_std.c
/freebsd-11-stable/lib/libiconv_modules/iconv_std/citrus_iconv_std.h
/freebsd-11-stable/lib/libiconv_modules/iconv_std/citrus_iconv_std_local.h
/freebsd-11-stable/lib/libiconv_modules/mapper_646/citrus_mapper_646.c
/freebsd-11-stable/lib/libiconv_modules/mapper_646/citrus_mapper_646.h
/freebsd-11-stable/lib/libiconv_modules/mapper_none/citrus_mapper_none.c
/freebsd-11-stable/lib/libiconv_modules/mapper_none/citrus_mapper_none.h
/freebsd-11-stable/lib/libiconv_modules/mapper_serial/citrus_mapper_serial.c
/freebsd-11-stable/lib/libiconv_modules/mapper_serial/citrus_mapper_serial.h
/freebsd-11-stable/lib/libiconv_modules/mapper_std/citrus_mapper_std.c
/freebsd-11-stable/lib/libiconv_modules/mapper_std/citrus_mapper_std.h
/freebsd-11-stable/lib/libiconv_modules/mapper_std/citrus_mapper_std_file.h
/freebsd-11-stable/lib/libiconv_modules/mapper_std/citrus_mapper_std_local.h
/freebsd-11-stable/lib/libiconv_modules/mapper_zone/citrus_mapper_zone.c
/freebsd-11-stable/lib/libiconv_modules/mapper_zone/citrus_mapper_zone.h
/freebsd-11-stable/lib/libipsec/ipsec_dump_policy.c
/freebsd-11-stable/lib/libipsec/ipsec_get_policylen.c
/freebsd-11-stable/lib/libipsec/ipsec_strerror.c
/freebsd-11-stable/lib/libipsec/ipsec_strerror.h
/freebsd-11-stable/lib/libipsec/libpfkey.h
/freebsd-11-stable/lib/libipsec/pfkey.c
/freebsd-11-stable/lib/libipsec/pfkey_dump.c
/freebsd-11-stable/lib/libipsec/policy_parse.y
/freebsd-11-stable/lib/libipsec/policy_token.l
/freebsd-11-stable/lib/libipsec/test-policy.c
/freebsd-11-stable/lib/libjail/jail.c
/freebsd-11-stable/lib/libjail/jail.h
/freebsd-11-stable/lib/libjail/jail_getid.c
/freebsd-11-stable/lib/libkiconv/kiconv_sysctl.c
/freebsd-11-stable/lib/libkiconv/quirks.c
/freebsd-11-stable/lib/libkiconv/quirks.h
/freebsd-11-stable/lib/libkiconv/xlat16_iconv.c
/freebsd-11-stable/lib/libkiconv/xlat16_sysctl.c
/freebsd-11-stable/lib/libkvm/kvm.c
/freebsd-11-stable/lib/libkvm/kvm.h
/freebsd-11-stable/lib/libkvm/kvm_amd64.c
/freebsd-11-stable/lib/libkvm/kvm_arm.c
/freebsd-11-stable/lib/libkvm/kvm_cptime.c
/freebsd-11-stable/lib/libkvm/kvm_getloadavg.c
/freebsd-11-stable/lib/libkvm/kvm_getswapinfo.c
/freebsd-11-stable/lib/libkvm/kvm_i386.c
/freebsd-11-stable/lib/libkvm/kvm_minidump_amd64.c
/freebsd-11-stable/lib/libkvm/kvm_minidump_arm.c
/freebsd-11-stable/lib/libkvm/kvm_minidump_i386.c
/freebsd-11-stable/lib/libkvm/kvm_minidump_mips.c
/freebsd-11-stable/lib/libkvm/kvm_pcpu.c
/freebsd-11-stable/lib/libkvm/kvm_powerpc.c
/freebsd-11-stable/lib/libkvm/kvm_powerpc64.c
/freebsd-11-stable/lib/libkvm/kvm_private.h
/freebsd-11-stable/lib/libkvm/kvm_proc.c
/freebsd-11-stable/lib/libkvm/kvm_sparc64.c
/freebsd-11-stable/lib/libkvm/kvm_vnet.c
/freebsd-11-stable/lib/libmemstat/memstat.c
/freebsd-11-stable/lib/libmemstat/memstat.h
/freebsd-11-stable/lib/libmemstat/memstat_all.c
/freebsd-11-stable/lib/libmemstat/memstat_internal.h
/freebsd-11-stable/lib/libmemstat/memstat_malloc.c
/freebsd-11-stable/lib/libmemstat/memstat_uma.c
/freebsd-11-stable/lib/libmp/mpasbn.c
/freebsd-11-stable/lib/libnandfs/libnandfs.h
/freebsd-11-stable/lib/libnandfs/nandfs.c
/freebsd-11-stable/lib/libnetbsd/rmd160.h
/freebsd-11-stable/lib/libnetbsd/sha1.h
/freebsd-11-stable/lib/libnetbsd/sha2.h
/freebsd-11-stable/lib/libnetbsd/stdlib.h
/freebsd-11-stable/lib/libnetbsd/strsuftoll.c
/freebsd-11-stable/lib/libnetbsd/sys/cdefs.h
/freebsd-11-stable/lib/libnetbsd/util.c
/freebsd-11-stable/lib/libnetbsd/util.h
/freebsd-11-stable/lib/libnv/common_impl.h
/freebsd-11-stable/lib/libnv/msgio.c
/freebsd-11-stable/lib/libnv/msgio.h
/freebsd-11-stable/lib/libpam/libpam/security/pam_mod_misc.h
/freebsd-11-stable/lib/libpam/modules/pam_chroot/pam_chroot.c
/freebsd-11-stable/lib/libpam/modules/pam_deny/pam_deny.c
/freebsd-11-stable/lib/libpam/modules/pam_echo/pam_echo.c
/freebsd-11-stable/lib/libpam/modules/pam_exec/pam_exec.c
/freebsd-11-stable/lib/libpam/modules/pam_ftpusers/pam_ftpusers.c
/freebsd-11-stable/lib/libpam/modules/pam_group/pam_group.c
/freebsd-11-stable/lib/libpam/modules/pam_guest/pam_guest.c
/freebsd-11-stable/lib/libpam/modules/pam_ksu/pam_ksu.c
/freebsd-11-stable/lib/libpam/modules/pam_lastlog/pam_lastlog.c
/freebsd-11-stable/lib/libpam/modules/pam_login_access/pam_login_access.c
/freebsd-11-stable/lib/libpam/modules/pam_login_access/pam_login_access.h
/freebsd-11-stable/lib/libpam/modules/pam_nologin/pam_nologin.c
/freebsd-11-stable/lib/libpam/modules/pam_opie/pam_opie.c
/freebsd-11-stable/lib/libpam/modules/pam_opieaccess/pam_opieaccess.c
/freebsd-11-stable/lib/libpam/modules/pam_permit/pam_permit.c
/freebsd-11-stable/lib/libpam/modules/pam_radius/pam_radius.c
/freebsd-11-stable/lib/libpam/modules/pam_rhosts/pam_rhosts.c
/freebsd-11-stable/lib/libpam/modules/pam_rootok/pam_rootok.c
/freebsd-11-stable/lib/libpam/modules/pam_securetty/pam_securetty.c
/freebsd-11-stable/lib/libpam/modules/pam_self/pam_self.c
/freebsd-11-stable/lib/libpam/modules/pam_ssh/pam_ssh.c
/freebsd-11-stable/lib/libpam/modules/pam_tacplus/pam_tacplus.c
/freebsd-11-stable/lib/libpam/modules/pam_unix/pam_unix.c
/freebsd-11-stable/lib/libpjdlog/pjdlog.c
/freebsd-11-stable/lib/libpjdlog/pjdlog.h
libpmc.c
libpmcinternal.h
pmc.h
pmclog.c
pmclog.h
/freebsd-11-stable/lib/libprocstat/cd9660.c
/freebsd-11-stable/lib/libprocstat/common_kvm.c
/freebsd-11-stable/lib/libprocstat/common_kvm.h
/freebsd-11-stable/lib/libprocstat/core.c
/freebsd-11-stable/lib/libprocstat/core.h
/freebsd-11-stable/lib/libprocstat/libprocstat.c
/freebsd-11-stable/lib/libprocstat/libprocstat.h
/freebsd-11-stable/lib/libprocstat/libprocstat_internal.h
/freebsd-11-stable/lib/libprocstat/msdosfs.c
/freebsd-11-stable/lib/libprocstat/smbfs.c
/freebsd-11-stable/lib/libprocstat/udf.c
/freebsd-11-stable/lib/libprocstat/zfs.c
/freebsd-11-stable/lib/libradius/radlib.c
/freebsd-11-stable/lib/libradius/radlib.h
/freebsd-11-stable/lib/libradius/radlib_private.h
/freebsd-11-stable/lib/libradius/radlib_vs.h
/freebsd-11-stable/lib/librpcsec_gss/rpcsec_gss.c
/freebsd-11-stable/lib/librpcsec_gss/rpcsec_gss_conf.c
/freebsd-11-stable/lib/librpcsec_gss/rpcsec_gss_int.h
/freebsd-11-stable/lib/librpcsec_gss/rpcsec_gss_misc.c
/freebsd-11-stable/lib/librpcsec_gss/rpcsec_gss_prot.c
/freebsd-11-stable/lib/librpcsec_gss/svc_rpcsec_gss.c
/freebsd-11-stable/lib/librpcsvc/yp_passwd.c
/freebsd-11-stable/lib/librpcsvc/yp_update.c
/freebsd-11-stable/lib/librt/aio.c
/freebsd-11-stable/lib/librt/mq.c
/freebsd-11-stable/lib/librt/sigev_thread.c
/freebsd-11-stable/lib/librt/sigev_thread.h
/freebsd-11-stable/lib/librt/timer.c
/freebsd-11-stable/lib/librtld_db/rtld_db.c
/freebsd-11-stable/lib/librtld_db/rtld_db.h
/freebsd-11-stable/lib/libsdp/sdp-int.h
/freebsd-11-stable/lib/libsdp/sdp.h
/freebsd-11-stable/lib/libsdp/search.c
/freebsd-11-stable/lib/libsdp/service.c
/freebsd-11-stable/lib/libsdp/session.c
/freebsd-11-stable/lib/libsdp/util.c
/freebsd-11-stable/lib/libstdbuf/stdbuf.c
/freebsd-11-stable/lib/libstdthreads/call_once.c
/freebsd-11-stable/lib/libstdthreads/cnd.c
/freebsd-11-stable/lib/libstdthreads/mtx.c
/freebsd-11-stable/lib/libstdthreads/thrd.c
/freebsd-11-stable/lib/libstdthreads/threads.h
/freebsd-11-stable/lib/libstdthreads/tss.c
/freebsd-11-stable/lib/libtacplus/taclib.c
/freebsd-11-stable/lib/libtacplus/taclib.h
/freebsd-11-stable/lib/libtacplus/taclib_private.h
/freebsd-11-stable/lib/libthr/arch/amd64/include/pthread_md.h
/freebsd-11-stable/lib/libthr/arch/arm/include/pthread_md.h
/freebsd-11-stable/lib/libthr/arch/i386/include/pthread_md.h
/freebsd-11-stable/lib/libthr/arch/mips/include/pthread_md.h
/freebsd-11-stable/lib/libthr/arch/powerpc/include/pthread_md.h
/freebsd-11-stable/lib/libthr/arch/sparc64/include/pthread_md.h
/freebsd-11-stable/lib/libthr/sys/thr_error.c
/freebsd-11-stable/lib/libthr/thread/thr_affinity.c
/freebsd-11-stable/lib/libthr/thread/thr_attr.c
/freebsd-11-stable/lib/libthr/thread/thr_autoinit.c
/freebsd-11-stable/lib/libthr/thread/thr_barrier.c
/freebsd-11-stable/lib/libthr/thread/thr_barrierattr.c
/freebsd-11-stable/lib/libthr/thread/thr_cancel.c
/freebsd-11-stable/lib/libthr/thread/thr_clean.c
/freebsd-11-stable/lib/libthr/thread/thr_concurrency.c
/freebsd-11-stable/lib/libthr/thread/thr_cond.c
/freebsd-11-stable/lib/libthr/thread/thr_condattr.c
/freebsd-11-stable/lib/libthr/thread/thr_create.c
/freebsd-11-stable/lib/libthr/thread/thr_detach.c
/freebsd-11-stable/lib/libthr/thread/thr_equal.c
/freebsd-11-stable/lib/libthr/thread/thr_event.c
/freebsd-11-stable/lib/libthr/thread/thr_exit.c
/freebsd-11-stable/lib/libthr/thread/thr_fork.c
/freebsd-11-stable/lib/libthr/thread/thr_getcpuclockid.c
/freebsd-11-stable/lib/libthr/thread/thr_getprio.c
/freebsd-11-stable/lib/libthr/thread/thr_getschedparam.c
/freebsd-11-stable/lib/libthr/thread/thr_getthreadid_np.c
/freebsd-11-stable/lib/libthr/thread/thr_info.c
/freebsd-11-stable/lib/libthr/thread/thr_init.c
/freebsd-11-stable/lib/libthr/thread/thr_join.c
/freebsd-11-stable/lib/libthr/thread/thr_kern.c
/freebsd-11-stable/lib/libthr/thread/thr_kill.c
/freebsd-11-stable/lib/libthr/thread/thr_list.c
/freebsd-11-stable/lib/libthr/thread/thr_main_np.c
/freebsd-11-stable/lib/libthr/thread/thr_multi_np.c
/freebsd-11-stable/lib/libthr/thread/thr_mutex.c
/freebsd-11-stable/lib/libthr/thread/thr_mutexattr.c
/freebsd-11-stable/lib/libthr/thread/thr_once.c
/freebsd-11-stable/lib/libthr/thread/thr_printf.c
/freebsd-11-stable/lib/libthr/thread/thr_private.h
/freebsd-11-stable/lib/libthr/thread/thr_pspinlock.c
/freebsd-11-stable/lib/libthr/thread/thr_resume_np.c
/freebsd-11-stable/lib/libthr/thread/thr_rtld.c
/freebsd-11-stable/lib/libthr/thread/thr_rwlock.c
/freebsd-11-stable/lib/libthr/thread/thr_rwlockattr.c
/freebsd-11-stable/lib/libthr/thread/thr_self.c
/freebsd-11-stable/lib/libthr/thread/thr_sem.c
/freebsd-11-stable/lib/libthr/thread/thr_setprio.c
/freebsd-11-stable/lib/libthr/thread/thr_setschedparam.c
/freebsd-11-stable/lib/libthr/thread/thr_sig.c
/freebsd-11-stable/lib/libthr/thread/thr_single_np.c
/freebsd-11-stable/lib/libthr/thread/thr_sleepq.c
/freebsd-11-stable/lib/libthr/thread/thr_spec.c
/freebsd-11-stable/lib/libthr/thread/thr_spinlock.c
/freebsd-11-stable/lib/libthr/thread/thr_stack.c
/freebsd-11-stable/lib/libthr/thread/thr_suspend_np.c
/freebsd-11-stable/lib/libthr/thread/thr_switch_np.c
/freebsd-11-stable/lib/libthr/thread/thr_symbols.c
/freebsd-11-stable/lib/libthr/thread/thr_syscalls.c
/freebsd-11-stable/lib/libthr/thread/thr_umtx.c
/freebsd-11-stable/lib/libthr/thread/thr_umtx.h
/freebsd-11-stable/lib/libthr/thread/thr_yield.c
/freebsd-11-stable/lib/libthread_db/arch/amd64/libpthread_md.c
/freebsd-11-stable/lib/libthread_db/arch/arm/libpthread_md.c
/freebsd-11-stable/lib/libthread_db/arch/i386/libpthread_md.c
/freebsd-11-stable/lib/libthread_db/arch/mips/libpthread_md.c
/freebsd-11-stable/lib/libthread_db/arch/powerpc/libpthread_md.c
/freebsd-11-stable/lib/libthread_db/arch/sparc64/libpthread_md.c
/freebsd-11-stable/lib/libthread_db/kse.h
/freebsd-11-stable/lib/libthread_db/libpthread_db.c
/freebsd-11-stable/lib/libthread_db/libpthread_db.h
/freebsd-11-stable/lib/libthread_db/libthr_db.c
/freebsd-11-stable/lib/libthread_db/thread_db.c
/freebsd-11-stable/lib/libthread_db/thread_db.h
/freebsd-11-stable/lib/libthread_db/thread_db_int.h
/freebsd-11-stable/lib/libufs/block.c
/freebsd-11-stable/lib/libufs/cgroup.c
/freebsd-11-stable/lib/libufs/inode.c
/freebsd-11-stable/lib/libufs/libufs.h
/freebsd-11-stable/lib/libufs/sblock.c
/freebsd-11-stable/lib/libufs/type.c
/freebsd-11-stable/lib/libugidfw/ugidfw.c
/freebsd-11-stable/lib/libugidfw/ugidfw.h
/freebsd-11-stable/lib/libulog/ulog.h
/freebsd-11-stable/lib/libulog/ulog_login.c
/freebsd-11-stable/lib/libulog/ulog_login_pseudo.c
/freebsd-11-stable/lib/libulog/utempter.c
/freebsd-11-stable/lib/libulog/utempter.h
/freebsd-11-stable/lib/libusb/libusb.h
/freebsd-11-stable/lib/libusb/libusb01.c
/freebsd-11-stable/lib/libusb/libusb10.c
/freebsd-11-stable/lib/libusb/libusb10.h
/freebsd-11-stable/lib/libusb/libusb10_desc.c
/freebsd-11-stable/lib/libusb/libusb10_io.c
/freebsd-11-stable/lib/libusb/libusb20.c
/freebsd-11-stable/lib/libusb/libusb20.h
/freebsd-11-stable/lib/libusb/libusb20_desc.c
/freebsd-11-stable/lib/libusb/libusb20_desc.h
/freebsd-11-stable/lib/libusb/libusb20_int.h
/freebsd-11-stable/lib/libusb/libusb20_ugen20.c
/freebsd-11-stable/lib/libusb/libusb_global_linux.h
/freebsd-11-stable/lib/libusb/usb.h
/freebsd-11-stable/lib/libusbhid/data.c
/freebsd-11-stable/lib/libusbhid/descr.c
/freebsd-11-stable/lib/libusbhid/descr_compat.c
/freebsd-11-stable/lib/libusbhid/parse.c
/freebsd-11-stable/lib/libusbhid/usage.c
/freebsd-11-stable/lib/libusbhid/usbhid.h
/freebsd-11-stable/lib/libusbhid/usbvar.h
/freebsd-11-stable/lib/libutil/auth.c
/freebsd-11-stable/lib/libutil/expand_number.c
/freebsd-11-stable/lib/libutil/fparseln.c
/freebsd-11-stable/lib/libutil/gr_util.c
/freebsd-11-stable/lib/libutil/hexdump.c
/freebsd-11-stable/lib/libutil/humanize_number.c
/freebsd-11-stable/lib/libutil/kinfo_getallproc.c
/freebsd-11-stable/lib/libutil/kinfo_getproc.c
/freebsd-11-stable/lib/libutil/kld.c
/freebsd-11-stable/lib/libutil/libutil.h
/freebsd-11-stable/lib/libutil/login_crypt.c
/freebsd-11-stable/lib/libutil/login_tty.c
/freebsd-11-stable/lib/libutil/pidfile.c
/freebsd-11-stable/lib/libutil/property.c
/freebsd-11-stable/lib/libutil/pty.c
/freebsd-11-stable/lib/libutil/pw_util.c
/freebsd-11-stable/lib/libutil/quotafile.c
/freebsd-11-stable/lib/libutil/realhostname.c
/freebsd-11-stable/lib/libutil/stub.c
/freebsd-11-stable/lib/libutil/trimdomain.c
/freebsd-11-stable/lib/libutil/uucplock.c
/freebsd-11-stable/lib/libvgl/bitmap.c
/freebsd-11-stable/lib/libvgl/keyboard.c
/freebsd-11-stable/lib/libvgl/main.c
/freebsd-11-stable/lib/libvgl/mouse.c
/freebsd-11-stable/lib/libvgl/simple.c
/freebsd-11-stable/lib/libvgl/text.c
/freebsd-11-stable/lib/libvgl/vgl.h
/freebsd-11-stable/lib/libvmmapi/vmmapi.c
/freebsd-11-stable/lib/libvmmapi/vmmapi.h
/freebsd-11-stable/lib/libvmmapi/vmmapi_freebsd.c
/freebsd-11-stable/lib/liby/main.c
/freebsd-11-stable/lib/liby/yyerror.c
/freebsd-11-stable/lib/libypclnt/ypclnt.h
/freebsd-11-stable/lib/libypclnt/ypclnt_connect.c
/freebsd-11-stable/lib/libypclnt/ypclnt_error.c
/freebsd-11-stable/lib/libypclnt/ypclnt_free.c
/freebsd-11-stable/lib/libypclnt/ypclnt_get.c
/freebsd-11-stable/lib/libypclnt/ypclnt_new.c
/freebsd-11-stable/lib/libypclnt/ypclnt_passwd.c
/freebsd-11-stable/lib/msun/amd64/fenv.c
/freebsd-11-stable/lib/msun/arm/fenv.c
/freebsd-11-stable/lib/msun/arm/fenv.h
/freebsd-11-stable/lib/msun/bsdsrc/b_exp.c
/freebsd-11-stable/lib/msun/bsdsrc/b_log.c
/freebsd-11-stable/lib/msun/bsdsrc/b_tgamma.c
/freebsd-11-stable/lib/msun/bsdsrc/mathimpl.h
/freebsd-11-stable/lib/msun/i387/fenv.c
/freebsd-11-stable/lib/msun/i387/invtrig.c
/freebsd-11-stable/lib/msun/ld128/invtrig.c
/freebsd-11-stable/lib/msun/ld128/invtrig.h
/freebsd-11-stable/lib/msun/ld128/k_expl.h
/freebsd-11-stable/lib/msun/ld128/s_exp2l.c
/freebsd-11-stable/lib/msun/ld128/s_expl.c
/freebsd-11-stable/lib/msun/ld128/s_logl.c
/freebsd-11-stable/lib/msun/ld128/s_nanl.c
/freebsd-11-stable/lib/msun/ld80/invtrig.c
/freebsd-11-stable/lib/msun/ld80/invtrig.h
/freebsd-11-stable/lib/msun/ld80/k_expl.h
/freebsd-11-stable/lib/msun/ld80/s_exp2l.c
/freebsd-11-stable/lib/msun/ld80/s_expl.c
/freebsd-11-stable/lib/msun/ld80/s_logl.c
/freebsd-11-stable/lib/msun/ld80/s_nanl.c
/freebsd-11-stable/lib/msun/mips/fenv.c
/freebsd-11-stable/lib/msun/mips/fenv.h
/freebsd-11-stable/lib/msun/powerpc/fenv.c
/freebsd-11-stable/lib/msun/powerpc/fenv.h
/freebsd-11-stable/lib/msun/sparc64/fenv.c
/freebsd-11-stable/lib/msun/sparc64/fenv.h
/freebsd-11-stable/lib/msun/src/catrig.c
/freebsd-11-stable/lib/msun/src/catrigf.c
/freebsd-11-stable/lib/msun/src/e_remainderl.c
/freebsd-11-stable/lib/msun/src/e_sqrtl.c
/freebsd-11-stable/lib/msun/src/fenv-softfloat.h
/freebsd-11-stable/lib/msun/src/imprecise.c
/freebsd-11-stable/lib/msun/src/k_exp.c
/freebsd-11-stable/lib/msun/src/k_expf.c
/freebsd-11-stable/lib/msun/src/s_carg.c
/freebsd-11-stable/lib/msun/src/s_cargf.c
/freebsd-11-stable/lib/msun/src/s_cargl.c
/freebsd-11-stable/lib/msun/src/s_ccosh.c
/freebsd-11-stable/lib/msun/src/s_ccoshf.c
/freebsd-11-stable/lib/msun/src/s_cexp.c
/freebsd-11-stable/lib/msun/src/s_cexpf.c
/freebsd-11-stable/lib/msun/src/s_cimag.c
/freebsd-11-stable/lib/msun/src/s_cimagf.c
/freebsd-11-stable/lib/msun/src/s_cimagl.c
/freebsd-11-stable/lib/msun/src/s_conj.c
/freebsd-11-stable/lib/msun/src/s_conjf.c
/freebsd-11-stable/lib/msun/src/s_conjl.c
/freebsd-11-stable/lib/msun/src/s_copysignl.c
/freebsd-11-stable/lib/msun/src/s_cosl.c
/freebsd-11-stable/lib/msun/src/s_cproj.c
/freebsd-11-stable/lib/msun/src/s_cprojf.c
/freebsd-11-stable/lib/msun/src/s_cprojl.c
/freebsd-11-stable/lib/msun/src/s_creal.c
/freebsd-11-stable/lib/msun/src/s_crealf.c
/freebsd-11-stable/lib/msun/src/s_creall.c
/freebsd-11-stable/lib/msun/src/s_csinh.c
/freebsd-11-stable/lib/msun/src/s_csinhf.c
/freebsd-11-stable/lib/msun/src/s_csqrt.c
/freebsd-11-stable/lib/msun/src/s_csqrtf.c
/freebsd-11-stable/lib/msun/src/s_csqrtl.c
/freebsd-11-stable/lib/msun/src/s_ctanh.c
/freebsd-11-stable/lib/msun/src/s_ctanhf.c
/freebsd-11-stable/lib/msun/src/s_exp2.c
/freebsd-11-stable/lib/msun/src/s_exp2f.c
/freebsd-11-stable/lib/msun/src/s_fabsl.c
/freebsd-11-stable/lib/msun/src/s_fdim.c
/freebsd-11-stable/lib/msun/src/s_fma.c
/freebsd-11-stable/lib/msun/src/s_fmaf.c
/freebsd-11-stable/lib/msun/src/s_fmal.c
/freebsd-11-stable/lib/msun/src/s_fmax.c
/freebsd-11-stable/lib/msun/src/s_fmaxf.c
/freebsd-11-stable/lib/msun/src/s_fmaxl.c
/freebsd-11-stable/lib/msun/src/s_fmin.c
/freebsd-11-stable/lib/msun/src/s_fminf.c
/freebsd-11-stable/lib/msun/src/s_fminl.c
/freebsd-11-stable/lib/msun/src/s_frexpl.c
/freebsd-11-stable/lib/msun/src/s_isfinite.c
/freebsd-11-stable/lib/msun/src/s_isnan.c
/freebsd-11-stable/lib/msun/src/s_isnormal.c
/freebsd-11-stable/lib/msun/src/s_lrint.c
/freebsd-11-stable/lib/msun/src/s_lround.c
/freebsd-11-stable/lib/msun/src/s_modfl.c
/freebsd-11-stable/lib/msun/src/s_nan.c
/freebsd-11-stable/lib/msun/src/s_nearbyint.c
/freebsd-11-stable/lib/msun/src/s_rintl.c
/freebsd-11-stable/lib/msun/src/s_round.c
/freebsd-11-stable/lib/msun/src/s_roundf.c
/freebsd-11-stable/lib/msun/src/s_roundl.c
/freebsd-11-stable/lib/msun/src/s_scalbln.c
/freebsd-11-stable/lib/msun/src/s_signbit.c
/freebsd-11-stable/lib/msun/src/s_sinl.c
/freebsd-11-stable/lib/msun/src/s_tanl.c
/freebsd-11-stable/lib/msun/src/s_tgammaf.c
/freebsd-11-stable/lib/msun/x86/fenv.h
/freebsd-11-stable/lib/ncurses/ncurses/pathnames.h
/freebsd-11-stable/lib/ncurses/ncurses/termcap.c
/freebsd-11-stable/libexec/bootpd/rtmsg.c
/freebsd-11-stable/libexec/comsat/comsat.c
/freebsd-11-stable/libexec/fingerd/fingerd.c
/freebsd-11-stable/libexec/fingerd/pathnames.h
/freebsd-11-stable/libexec/ftpd/extern.h
/freebsd-11-stable/libexec/ftpd/ftpcmd.y
/freebsd-11-stable/libexec/ftpd/ftpd.c
/freebsd-11-stable/libexec/ftpd/logwtmp.c
/freebsd-11-stable/libexec/ftpd/pathnames.h
/freebsd-11-stable/libexec/ftpd/popen.c
/freebsd-11-stable/libexec/getty/extern.h
/freebsd-11-stable/libexec/getty/gettytab.h
/freebsd-11-stable/libexec/getty/init.c
/freebsd-11-stable/libexec/getty/main.c
/freebsd-11-stable/libexec/getty/pathnames.h
/freebsd-11-stable/libexec/getty/subr.c
/freebsd-11-stable/libexec/mknetid/hash.c
/freebsd-11-stable/libexec/mknetid/hash.h
/freebsd-11-stable/libexec/mknetid/mknetid.c
/freebsd-11-stable/libexec/mknetid/parse_group.c
/freebsd-11-stable/libexec/rbootd/bpf.c
/freebsd-11-stable/libexec/rbootd/conf.c
/freebsd-11-stable/libexec/rbootd/defs.h
/freebsd-11-stable/libexec/rbootd/parseconf.c
/freebsd-11-stable/libexec/rbootd/pathnames.h
/freebsd-11-stable/libexec/rbootd/rbootd.c
/freebsd-11-stable/libexec/rbootd/rmp.h
/freebsd-11-stable/libexec/rbootd/rmp_var.h
/freebsd-11-stable/libexec/rbootd/rmpproto.c
/freebsd-11-stable/libexec/rbootd/utils.c
/freebsd-11-stable/libexec/revnetgroup/hash.c
/freebsd-11-stable/libexec/revnetgroup/hash.h
/freebsd-11-stable/libexec/revnetgroup/parse_netgroup.c
/freebsd-11-stable/libexec/revnetgroup/revnetgroup.c
/freebsd-11-stable/libexec/rpc.rstatd/rstatd.c
/freebsd-11-stable/libexec/rpc.rusersd/extern.h
/freebsd-11-stable/libexec/rpc.rusersd/rusers_proc.c
/freebsd-11-stable/libexec/rpc.rusersd/rusersd.c
/freebsd-11-stable/libexec/rtld-elf/malloc.c
/freebsd-11-stable/libexec/rtld-elf/rtld_printf.c
/freebsd-11-stable/libexec/talkd/announce.c
/freebsd-11-stable/libexec/talkd/print.c
/freebsd-11-stable/libexec/talkd/process.c
/freebsd-11-stable/libexec/talkd/table.c
/freebsd-11-stable/libexec/talkd/talkd.c
/freebsd-11-stable/libexec/tftpd/tftpd.c
/freebsd-11-stable/libexec/ypxfr/yp_dbwrite.c
/freebsd-11-stable/libexec/ypxfr/ypxfr_extern.h
/freebsd-11-stable/libexec/ypxfr/ypxfr_getmap.c
/freebsd-11-stable/libexec/ypxfr/ypxfr_main.c
/freebsd-11-stable/libexec/ypxfr/ypxfr_misc.c
/freebsd-11-stable/libexec/ypxfr/ypxfrd_getmap.c
/freebsd-11-stable/release/picobsd/tinyware/login/pathnames.h
/freebsd-11-stable/release/picobsd/tinyware/login/pico-login.c
/freebsd-11-stable/release/picobsd/tinyware/passwd/extern.h
/freebsd-11-stable/release/picobsd/tinyware/passwd/local_passwd.c
/freebsd-11-stable/release/picobsd/tinyware/passwd/passwd.c
/freebsd-11-stable/release/picobsd/tinyware/passwd/pw_copy.c
/freebsd-11-stable/release/picobsd/tinyware/passwd/pw_util.c
/freebsd-11-stable/release/picobsd/tinyware/passwd/pw_util.h
/freebsd-11-stable/sbin/bsdlabel/bsdlabel.c
/freebsd-11-stable/sbin/bsdlabel/pathnames.h
/freebsd-11-stable/sbin/clri/clri.c
/freebsd-11-stable/sbin/devd/devd.cc
/freebsd-11-stable/sbin/dhclient/alloc.c
/freebsd-11-stable/sbin/dhclient/bpf.c
/freebsd-11-stable/sbin/dhclient/clparse.c
/freebsd-11-stable/sbin/dhclient/conflex.c
/freebsd-11-stable/sbin/dhclient/convert.c
/freebsd-11-stable/sbin/dhclient/dhclient.c
/freebsd-11-stable/sbin/dhclient/dhcp.h
/freebsd-11-stable/sbin/dhclient/dhcpd.h
/freebsd-11-stable/sbin/dhclient/dhctoken.h
/freebsd-11-stable/sbin/dhclient/dispatch.c
/freebsd-11-stable/sbin/dhclient/errwarn.c
/freebsd-11-stable/sbin/dhclient/hash.c
/freebsd-11-stable/sbin/dhclient/inet.c
/freebsd-11-stable/sbin/dhclient/options.c
/freebsd-11-stable/sbin/dhclient/packet.c
/freebsd-11-stable/sbin/dhclient/parse.c
/freebsd-11-stable/sbin/dhclient/tables.c
/freebsd-11-stable/sbin/dhclient/tree.c
/freebsd-11-stable/sbin/dhclient/tree.h
/freebsd-11-stable/sbin/dmesg/dmesg.c
/freebsd-11-stable/sbin/dump/dump.h
/freebsd-11-stable/sbin/dump/dumprmt.c
/freebsd-11-stable/sbin/dump/itime.c
/freebsd-11-stable/sbin/dump/main.c
/freebsd-11-stable/sbin/dump/optr.c
/freebsd-11-stable/sbin/dump/pathnames.h
/freebsd-11-stable/sbin/dump/tape.c
/freebsd-11-stable/sbin/dump/traverse.c
/freebsd-11-stable/sbin/dump/unctime.c
/freebsd-11-stable/sbin/dumpfs/dumpfs.c
/freebsd-11-stable/sbin/dumpon/dumpon.c
/freebsd-11-stable/sbin/etherswitchcfg/ifmedia.c
/freebsd-11-stable/sbin/ffsinfo/ffsinfo.c
/freebsd-11-stable/sbin/fsck/fsck.c
/freebsd-11-stable/sbin/fsck/fsutil.c
/freebsd-11-stable/sbin/fsck/preen.c
/freebsd-11-stable/sbin/fsck_ffs/dir.c
/freebsd-11-stable/sbin/fsck_ffs/fsck.h
/freebsd-11-stable/sbin/fsck_ffs/fsutil.c
/freebsd-11-stable/sbin/fsck_ffs/gjournal.c
/freebsd-11-stable/sbin/fsck_ffs/globs.c
/freebsd-11-stable/sbin/fsck_ffs/inode.c
/freebsd-11-stable/sbin/fsck_ffs/main.c
/freebsd-11-stable/sbin/fsck_ffs/pass1.c
/freebsd-11-stable/sbin/fsck_ffs/pass1b.c
/freebsd-11-stable/sbin/fsck_ffs/pass2.c
/freebsd-11-stable/sbin/fsck_ffs/pass3.c
/freebsd-11-stable/sbin/fsck_ffs/pass4.c
/freebsd-11-stable/sbin/fsck_ffs/pass5.c
/freebsd-11-stable/sbin/fsck_ffs/setup.c
/freebsd-11-stable/sbin/fsck_ffs/utilities.c
/freebsd-11-stable/sbin/growfs/debug.c
/freebsd-11-stable/sbin/growfs/debug.h
/freebsd-11-stable/sbin/growfs/growfs.c
/freebsd-11-stable/sbin/gvinum/gvinum.h
/freebsd-11-stable/sbin/ifconfig/af_inet.c
/freebsd-11-stable/sbin/ifconfig/af_inet6.c
/freebsd-11-stable/sbin/ifconfig/af_link.c
/freebsd-11-stable/sbin/ifconfig/ifclone.c
/freebsd-11-stable/sbin/ifconfig/ifconfig.c
/freebsd-11-stable/sbin/ifconfig/ifmedia.c
/freebsd-11-stable/sbin/ifconfig/ifvlan.c
/freebsd-11-stable/sbin/init/init.c
/freebsd-11-stable/sbin/init/pathnames.h
/freebsd-11-stable/sbin/mknod/mknod.c
/freebsd-11-stable/sbin/mount/getmntopts.c
/freebsd-11-stable/sbin/mount/mntopts.h
/freebsd-11-stable/sbin/mount/mount.c
/freebsd-11-stable/sbin/mount/mount_fs.c
/freebsd-11-stable/sbin/mount/pathnames.h
/freebsd-11-stable/sbin/mount/vfslist.c
/freebsd-11-stable/sbin/mount_cd9660/mount_cd9660.c
/freebsd-11-stable/sbin/mount_nfs/mount_nfs.c
/freebsd-11-stable/sbin/mount_nullfs/mount_nullfs.c
/freebsd-11-stable/sbin/mount_udf/mount_udf.c
/freebsd-11-stable/sbin/mount_unionfs/mount_unionfs.c
/freebsd-11-stable/sbin/newfs/mkfs.c
/freebsd-11-stable/sbin/newfs/newfs.c
/freebsd-11-stable/sbin/newfs/newfs.h
/freebsd-11-stable/sbin/nfsiod/nfsiod.c
/freebsd-11-stable/sbin/ping/ping.c
/freebsd-11-stable/sbin/ping6/ping6.c
/freebsd-11-stable/sbin/quotacheck/preen.c
/freebsd-11-stable/sbin/quotacheck/quotacheck.c
/freebsd-11-stable/sbin/quotacheck/quotacheck.h
/freebsd-11-stable/sbin/rcorder/ealloc.c
/freebsd-11-stable/sbin/rcorder/hash.c
/freebsd-11-stable/sbin/rcorder/hash.h
/freebsd-11-stable/sbin/rcorder/sprite.h
/freebsd-11-stable/sbin/reboot/reboot.c
/freebsd-11-stable/sbin/restore/dirs.c
/freebsd-11-stable/sbin/restore/extern.h
/freebsd-11-stable/sbin/restore/interactive.c
/freebsd-11-stable/sbin/restore/main.c
/freebsd-11-stable/sbin/restore/restore.c
/freebsd-11-stable/sbin/restore/restore.h
/freebsd-11-stable/sbin/restore/symtab.c
/freebsd-11-stable/sbin/restore/tape.c
/freebsd-11-stable/sbin/restore/utilities.c
/freebsd-11-stable/sbin/route/route.c
/freebsd-11-stable/sbin/routed/defs.h
/freebsd-11-stable/sbin/routed/if.c
/freebsd-11-stable/sbin/routed/input.c
/freebsd-11-stable/sbin/routed/main.c
/freebsd-11-stable/sbin/routed/output.c
/freebsd-11-stable/sbin/routed/parms.c
/freebsd-11-stable/sbin/routed/pathnames.h
/freebsd-11-stable/sbin/routed/radix.c
/freebsd-11-stable/sbin/routed/radix.h
/freebsd-11-stable/sbin/routed/rdisc.c
/freebsd-11-stable/sbin/routed/rtquery/rtquery.c
/freebsd-11-stable/sbin/routed/table.c
/freebsd-11-stable/sbin/routed/trace.c
/freebsd-11-stable/sbin/savecore/savecore.c
/freebsd-11-stable/sbin/setkey/parse.y
/freebsd-11-stable/sbin/setkey/setkey.c
/freebsd-11-stable/sbin/setkey/test-pfkey.c
/freebsd-11-stable/sbin/setkey/test-policy.c
/freebsd-11-stable/sbin/setkey/token.l
/freebsd-11-stable/sbin/setkey/vchar.h
/freebsd-11-stable/sbin/shutdown/shutdown.c
/freebsd-11-stable/sbin/sunlabel/sunlabel.c
/freebsd-11-stable/sbin/swapon/swapon.c
/freebsd-11-stable/sbin/sysctl/sysctl.c
/freebsd-11-stable/sbin/tunefs/tunefs.c
/freebsd-11-stable/sbin/umount/umount.c
/freebsd-11-stable/share/examples/tests/tests/atf/cp_test.sh
/freebsd-11-stable/share/examples/tests/tests/atf/printf_test.c
/freebsd-11-stable/share/examples/tests/tests/plain/printf_test.c
/freebsd-11-stable/sys/amd64/acpica/acpi_machdep.c
/freebsd-11-stable/sys/amd64/amd64/atomic.c
/freebsd-11-stable/sys/amd64/amd64/bios.c
/freebsd-11-stable/sys/amd64/amd64/bpf_jit_machdep.c
/freebsd-11-stable/sys/amd64/amd64/bpf_jit_machdep.h
/freebsd-11-stable/sys/amd64/amd64/elf_machdep.c
/freebsd-11-stable/sys/amd64/amd64/fpu.c
/freebsd-11-stable/sys/amd64/amd64/gdb_machdep.c
/freebsd-11-stable/sys/amd64/amd64/genassym.c
/freebsd-11-stable/sys/amd64/amd64/in_cksum.c
/freebsd-11-stable/sys/amd64/amd64/initcpu.c
/freebsd-11-stable/sys/amd64/amd64/io.c
/freebsd-11-stable/sys/amd64/amd64/machdep.c
/freebsd-11-stable/sys/amd64/amd64/mem.c
/freebsd-11-stable/sys/amd64/amd64/minidump_machdep.c
/freebsd-11-stable/sys/amd64/amd64/mp_machdep.c
/freebsd-11-stable/sys/amd64/amd64/pmap.c
/freebsd-11-stable/sys/amd64/amd64/prof_machdep.c
/freebsd-11-stable/sys/amd64/amd64/ptrace_machdep.c
/freebsd-11-stable/sys/amd64/amd64/sys_machdep.c
/freebsd-11-stable/sys/amd64/amd64/trap.c
/freebsd-11-stable/sys/amd64/amd64/uio_machdep.c
/freebsd-11-stable/sys/amd64/amd64/uma_machdep.c
/freebsd-11-stable/sys/amd64/amd64/vm_machdep.c
/freebsd-11-stable/sys/amd64/ia32/ia32_misc.c
/freebsd-11-stable/sys/amd64/ia32/ia32_reg.c
/freebsd-11-stable/sys/amd64/ia32/ia32_signal.c
/freebsd-11-stable/sys/amd64/ia32/ia32_syscall.c
/freebsd-11-stable/sys/amd64/include/_bus.h
/freebsd-11-stable/sys/amd64/include/asm.h
/freebsd-11-stable/sys/amd64/include/asmacros.h
/freebsd-11-stable/sys/amd64/include/atomic.h
/freebsd-11-stable/sys/amd64/include/bus_dma.h
/freebsd-11-stable/sys/amd64/include/counter.h
/freebsd-11-stable/sys/amd64/include/cpu.h
/freebsd-11-stable/sys/amd64/include/cpufunc.h
/freebsd-11-stable/sys/amd64/include/exec.h
/freebsd-11-stable/sys/amd64/include/floatingpoint.h
/freebsd-11-stable/sys/amd64/include/fpu.h
/freebsd-11-stable/sys/amd64/include/gdb_machdep.h
/freebsd-11-stable/sys/amd64/include/ieeefp.h
/freebsd-11-stable/sys/amd64/include/in_cksum.h
/freebsd-11-stable/sys/amd64/include/intr_machdep.h
/freebsd-11-stable/sys/amd64/include/iodev.h
/freebsd-11-stable/sys/amd64/include/kdb.h
/freebsd-11-stable/sys/amd64/include/limits.h
/freebsd-11-stable/sys/amd64/include/md_var.h
/freebsd-11-stable/sys/amd64/include/memdev.h
/freebsd-11-stable/sys/amd64/include/minidump.h
/freebsd-11-stable/sys/amd64/include/mp_watchdog.h
/freebsd-11-stable/sys/amd64/include/param.h
/freebsd-11-stable/sys/amd64/include/pc/bios.h
/freebsd-11-stable/sys/amd64/include/pcb.h
/freebsd-11-stable/sys/amd64/include/pcpu.h
/freebsd-11-stable/sys/amd64/include/pmap.h
/freebsd-11-stable/sys/amd64/include/pmc_mdep.h
/freebsd-11-stable/sys/amd64/include/ppireg.h
/freebsd-11-stable/sys/amd64/include/proc.h
/freebsd-11-stable/sys/amd64/include/profile.h
/freebsd-11-stable/sys/amd64/include/reloc.h
/freebsd-11-stable/sys/amd64/include/runq.h
/freebsd-11-stable/sys/amd64/include/segments.h
/freebsd-11-stable/sys/amd64/include/sf_buf.h
/freebsd-11-stable/sys/amd64/include/timerreg.h
/freebsd-11-stable/sys/amd64/include/tss.h
/freebsd-11-stable/sys/amd64/include/varargs.h
/freebsd-11-stable/sys/amd64/include/vm.h
/freebsd-11-stable/sys/amd64/include/vmm.h
/freebsd-11-stable/sys/amd64/include/vmm_dev.h
/freebsd-11-stable/sys/amd64/include/vmm_instruction_emul.h
/freebsd-11-stable/sys/amd64/include/vmparam.h
/freebsd-11-stable/sys/amd64/linux32/linux.h
/freebsd-11-stable/sys/amd64/linux32/linux32_dummy.c
/freebsd-11-stable/sys/amd64/linux32/linux32_machdep.c
/freebsd-11-stable/sys/amd64/linux32/linux32_sysvec.c
/freebsd-11-stable/sys/amd64/pci/pci_cfgreg.c
/freebsd-11-stable/sys/amd64/vmm/amd/amdv.c
/freebsd-11-stable/sys/amd64/vmm/intel/ept.c
/freebsd-11-stable/sys/amd64/vmm/intel/ept.h
/freebsd-11-stable/sys/amd64/vmm/intel/vmcs.c
/freebsd-11-stable/sys/amd64/vmm/intel/vmcs.h
/freebsd-11-stable/sys/amd64/vmm/intel/vmx.c
/freebsd-11-stable/sys/amd64/vmm/intel/vmx.h
/freebsd-11-stable/sys/amd64/vmm/intel/vmx_controls.h
/freebsd-11-stable/sys/amd64/vmm/intel/vmx_cpufunc.h
/freebsd-11-stable/sys/amd64/vmm/intel/vmx_genassym.c
/freebsd-11-stable/sys/amd64/vmm/intel/vmx_msr.c
/freebsd-11-stable/sys/amd64/vmm/intel/vmx_msr.h
/freebsd-11-stable/sys/amd64/vmm/intel/vtd.c
/freebsd-11-stable/sys/amd64/vmm/io/iommu.c
/freebsd-11-stable/sys/amd64/vmm/io/iommu.h
/freebsd-11-stable/sys/amd64/vmm/io/ppt.c
/freebsd-11-stable/sys/amd64/vmm/io/ppt.h
/freebsd-11-stable/sys/amd64/vmm/io/vhpet.c
/freebsd-11-stable/sys/amd64/vmm/io/vhpet.h
/freebsd-11-stable/sys/amd64/vmm/io/vioapic.c
/freebsd-11-stable/sys/amd64/vmm/io/vioapic.h
/freebsd-11-stable/sys/amd64/vmm/io/vlapic.c
/freebsd-11-stable/sys/amd64/vmm/io/vlapic.h
/freebsd-11-stable/sys/amd64/vmm/io/vlapic_priv.h
/freebsd-11-stable/sys/amd64/vmm/vmm.c
/freebsd-11-stable/sys/amd64/vmm/vmm_dev.c
/freebsd-11-stable/sys/amd64/vmm/vmm_host.c
/freebsd-11-stable/sys/amd64/vmm/vmm_host.h
/freebsd-11-stable/sys/amd64/vmm/vmm_instruction_emul.c
/freebsd-11-stable/sys/amd64/vmm/vmm_ktr.h
/freebsd-11-stable/sys/amd64/vmm/vmm_lapic.c
/freebsd-11-stable/sys/amd64/vmm/vmm_lapic.h
/freebsd-11-stable/sys/amd64/vmm/vmm_mem.c
/freebsd-11-stable/sys/amd64/vmm/vmm_mem.h
/freebsd-11-stable/sys/amd64/vmm/vmm_stat.c
/freebsd-11-stable/sys/amd64/vmm/vmm_stat.h
/freebsd-11-stable/sys/amd64/vmm/vmm_util.c
/freebsd-11-stable/sys/amd64/vmm/vmm_util.h
/freebsd-11-stable/sys/amd64/vmm/x86.c
/freebsd-11-stable/sys/amd64/vmm/x86.h
/freebsd-11-stable/sys/arm/allwinner/a10_ehci.c
/freebsd-11-stable/sys/arm/allwinner/a10_gpio.c
/freebsd-11-stable/sys/arm/allwinner/a10_sramc.c
/freebsd-11-stable/sys/arm/allwinner/a10_sramc.h
/freebsd-11-stable/sys/arm/allwinner/a20/a20_cpu_cfg.c
/freebsd-11-stable/sys/arm/allwinner/a20/a20_cpu_cfg.h
/freebsd-11-stable/sys/arm/allwinner/if_emac.c
/freebsd-11-stable/sys/arm/allwinner/if_emacreg.h
/freebsd-11-stable/sys/arm/arm/autoconf.c
/freebsd-11-stable/sys/arm/arm/bus_space_generic.c
/freebsd-11-stable/sys/arm/arm/busdma_machdep-v6.c
/freebsd-11-stable/sys/arm/arm/cpufunc.c
/freebsd-11-stable/sys/arm/arm/db_disasm.c
/freebsd-11-stable/sys/arm/arm/disassem.c
/freebsd-11-stable/sys/arm/arm/dump_machdep.c
/freebsd-11-stable/sys/arm/arm/elf_machdep.c
/freebsd-11-stable/sys/arm/arm/elf_trampoline.c
/freebsd-11-stable/sys/arm/arm/fiq.c
/freebsd-11-stable/sys/arm/arm/gdb_machdep.c
/freebsd-11-stable/sys/arm/arm/genassym.c
/freebsd-11-stable/sys/arm/arm/generic_timer.c
/freebsd-11-stable/sys/arm/arm/gic.c
/freebsd-11-stable/sys/arm/arm/in_cksum.c
/freebsd-11-stable/sys/arm/arm/intr.c
/freebsd-11-stable/sys/arm/arm/machdep.c
/freebsd-11-stable/sys/arm/arm/mem.c
/freebsd-11-stable/sys/arm/arm/minidump_machdep.c
/freebsd-11-stable/sys/arm/arm/mp_machdep.c
/freebsd-11-stable/sys/arm/arm/mpcore_timer.c
/freebsd-11-stable/sys/arm/arm/physmem.c
/freebsd-11-stable/sys/arm/arm/pl190.c
/freebsd-11-stable/sys/arm/arm/pl310.c
/freebsd-11-stable/sys/arm/arm/pmap-v6.c
/freebsd-11-stable/sys/arm/arm/sc_machdep.c
/freebsd-11-stable/sys/arm/arm/stack_machdep.c
/freebsd-11-stable/sys/arm/arm/stdatomic.c
/freebsd-11-stable/sys/arm/arm/sys_machdep.c
/freebsd-11-stable/sys/arm/arm/uio_machdep.c
/freebsd-11-stable/sys/arm/arm/undefined.c
/freebsd-11-stable/sys/arm/arm/vfp.c
/freebsd-11-stable/sys/arm/arm/vm_machdep.c
/freebsd-11-stable/sys/arm/at91/at91.c
/freebsd-11-stable/sys/arm/at91/at91_aic.c
/freebsd-11-stable/sys/arm/at91/at91_aicreg.h
/freebsd-11-stable/sys/arm/at91/at91_cfata.c
/freebsd-11-stable/sys/arm/at91/at91_gpio.h
/freebsd-11-stable/sys/arm/at91/at91_machdep.c
/freebsd-11-stable/sys/arm/at91/at91_mci.c
/freebsd-11-stable/sys/arm/at91/at91_mcireg.h
/freebsd-11-stable/sys/arm/at91/at91_pdcreg.h
/freebsd-11-stable/sys/arm/at91/at91_pio.c
/freebsd-11-stable/sys/arm/at91/at91_pio_sam9g45.h
/freebsd-11-stable/sys/arm/at91/at91_pioreg.h
/freebsd-11-stable/sys/arm/at91/at91_piovar.h
/freebsd-11-stable/sys/arm/at91/at91_pit.c
/freebsd-11-stable/sys/arm/at91/at91_pitreg.h
/freebsd-11-stable/sys/arm/at91/at91_pmc.c
/freebsd-11-stable/sys/arm/at91/at91_pmcreg.h
/freebsd-11-stable/sys/arm/at91/at91_pmcvar.h
/freebsd-11-stable/sys/arm/at91/at91_rst.c
/freebsd-11-stable/sys/arm/at91/at91_rstreg.h
/freebsd-11-stable/sys/arm/at91/at91_rtc.c
/freebsd-11-stable/sys/arm/at91/at91_rtcreg.h
/freebsd-11-stable/sys/arm/at91/at91_sdramc.c
/freebsd-11-stable/sys/arm/at91/at91_shdwc.c
/freebsd-11-stable/sys/arm/at91/at91_smc.c
/freebsd-11-stable/sys/arm/at91/at91_smc.h
/freebsd-11-stable/sys/arm/at91/at91_spi.c
/freebsd-11-stable/sys/arm/at91/at91_spireg.h
/freebsd-11-stable/sys/arm/at91/at91_ssc.c
/freebsd-11-stable/sys/arm/at91/at91_sscreg.h
/freebsd-11-stable/sys/arm/at91/at91_st.c
/freebsd-11-stable/sys/arm/at91/at91_streg.h
/freebsd-11-stable/sys/arm/at91/at91_tcb.c
/freebsd-11-stable/sys/arm/at91/at91_twi.c
/freebsd-11-stable/sys/arm/at91/at91_twiio.h
/freebsd-11-stable/sys/arm/at91/at91_twireg.h
/freebsd-11-stable/sys/arm/at91/at91_usartreg.h
/freebsd-11-stable/sys/arm/at91/at91_wdt.c
/freebsd-11-stable/sys/arm/at91/at91_wdtreg.h
/freebsd-11-stable/sys/arm/at91/at91board.h
/freebsd-11-stable/sys/arm/at91/at91reg.h
/freebsd-11-stable/sys/arm/at91/at91rm9200.c
/freebsd-11-stable/sys/arm/at91/at91rm9200_devices.c
/freebsd-11-stable/sys/arm/at91/at91rm9200var.h
/freebsd-11-stable/sys/arm/at91/at91rm92reg.h
/freebsd-11-stable/sys/arm/at91/at91sam9260.c
/freebsd-11-stable/sys/arm/at91/at91sam9260reg.h
/freebsd-11-stable/sys/arm/at91/at91sam9g20.c
/freebsd-11-stable/sys/arm/at91/at91sam9g20reg.h
/freebsd-11-stable/sys/arm/at91/at91sam9g45.c
/freebsd-11-stable/sys/arm/at91/at91sam9g45reg.h
/freebsd-11-stable/sys/arm/at91/at91sam9x5.c
/freebsd-11-stable/sys/arm/at91/at91sam9x5reg.h
/freebsd-11-stable/sys/arm/at91/at91soc.c
/freebsd-11-stable/sys/arm/at91/at91soc.h
/freebsd-11-stable/sys/arm/at91/at91var.h
/freebsd-11-stable/sys/arm/at91/board_bwct.c
/freebsd-11-stable/sys/arm/at91/board_eb9200.c
/freebsd-11-stable/sys/arm/at91/board_ethernut5.c
/freebsd-11-stable/sys/arm/at91/board_hl200.c
/freebsd-11-stable/sys/arm/at91/board_hl201.c
/freebsd-11-stable/sys/arm/at91/board_kb920x.c
/freebsd-11-stable/sys/arm/at91/board_qila9g20.c
/freebsd-11-stable/sys/arm/at91/board_sam9260ek.c
/freebsd-11-stable/sys/arm/at91/board_sam9g20ek.c
/freebsd-11-stable/sys/arm/at91/board_sam9x25ek.c
/freebsd-11-stable/sys/arm/at91/board_sn9g45.c
/freebsd-11-stable/sys/arm/at91/board_tsc4370.c
/freebsd-11-stable/sys/arm/at91/if_ate.c
/freebsd-11-stable/sys/arm/at91/if_atereg.h
/freebsd-11-stable/sys/arm/at91/if_macb.c
/freebsd-11-stable/sys/arm/at91/uart_bus_at91usart.c
/freebsd-11-stable/sys/arm/at91/uart_cpu_at91usart.c
/freebsd-11-stable/sys/arm/at91/uart_dev_at91usart.c
/freebsd-11-stable/sys/arm/broadcom/bcm2835/bcm2835_bsc.c
/freebsd-11-stable/sys/arm/broadcom/bcm2835/bcm2835_bscreg.h
/freebsd-11-stable/sys/arm/broadcom/bcm2835/bcm2835_bscvar.h
/freebsd-11-stable/sys/arm/broadcom/bcm2835/bcm2835_dma.c
/freebsd-11-stable/sys/arm/broadcom/bcm2835/bcm2835_dma.h
/freebsd-11-stable/sys/arm/broadcom/bcm2835/bcm2835_fb.c
/freebsd-11-stable/sys/arm/broadcom/bcm2835/bcm2835_fbd.c
/freebsd-11-stable/sys/arm/broadcom/bcm2835/bcm2835_gpio.c
/freebsd-11-stable/sys/arm/broadcom/bcm2835/bcm2835_gpio.h
/freebsd-11-stable/sys/arm/broadcom/bcm2835/bcm2835_intr.c
/freebsd-11-stable/sys/arm/broadcom/bcm2835/bcm2835_machdep.c
/freebsd-11-stable/sys/arm/broadcom/bcm2835/bcm2835_mbox.c
/freebsd-11-stable/sys/arm/broadcom/bcm2835/bcm2835_mbox.h
/freebsd-11-stable/sys/arm/broadcom/bcm2835/bcm2835_sdhci.c
/freebsd-11-stable/sys/arm/broadcom/bcm2835/bcm2835_spi.c
/freebsd-11-stable/sys/arm/broadcom/bcm2835/bcm2835_spireg.h
/freebsd-11-stable/sys/arm/broadcom/bcm2835/bcm2835_spivar.h
/freebsd-11-stable/sys/arm/broadcom/bcm2835/bcm2835_systimer.c
/freebsd-11-stable/sys/arm/broadcom/bcm2835/bcm2835_vcbus.h
/freebsd-11-stable/sys/arm/broadcom/bcm2835/bcm2835_wdog.c
/freebsd-11-stable/sys/arm/broadcom/bcm2835/bcm2835_wdog.h
/freebsd-11-stable/sys/arm/conf/genboardid.awk
/freebsd-11-stable/sys/arm/freescale/fsl_ocotp.c
/freebsd-11-stable/sys/arm/freescale/fsl_ocotpreg.h
/freebsd-11-stable/sys/arm/freescale/fsl_ocotpvar.h
/freebsd-11-stable/sys/arm/freescale/imx/imx51_ccm.c
/freebsd-11-stable/sys/arm/freescale/imx/imx51_ccmreg.h
/freebsd-11-stable/sys/arm/freescale/imx/imx51_ccmvar.h
/freebsd-11-stable/sys/arm/freescale/imx/imx51_dpllreg.h
/freebsd-11-stable/sys/arm/freescale/imx/imx51_ipuv3.c
/freebsd-11-stable/sys/arm/freescale/imx/imx51_ipuv3_fbd.c
/freebsd-11-stable/sys/arm/freescale/imx/imx51_ipuv3reg.h
/freebsd-11-stable/sys/arm/freescale/imx/imx51_machdep.c
/freebsd-11-stable/sys/arm/freescale/imx/imx51_sdmareg.h
/freebsd-11-stable/sys/arm/freescale/imx/imx51_ssireg.h
/freebsd-11-stable/sys/arm/freescale/imx/imx51_tzicreg.h
/freebsd-11-stable/sys/arm/freescale/imx/imx53_machdep.c
/freebsd-11-stable/sys/arm/freescale/imx/imx6_anatop.c
/freebsd-11-stable/sys/arm/freescale/imx/imx6_anatopreg.h
/freebsd-11-stable/sys/arm/freescale/imx/imx6_anatopvar.h
/freebsd-11-stable/sys/arm/freescale/imx/imx6_ccm.c
/freebsd-11-stable/sys/arm/freescale/imx/imx6_ccmreg.h
/freebsd-11-stable/sys/arm/freescale/imx/imx6_machdep.c
/freebsd-11-stable/sys/arm/freescale/imx/imx6_mp.c
/freebsd-11-stable/sys/arm/freescale/imx/imx6_pl310.c
/freebsd-11-stable/sys/arm/freescale/imx/imx6_usbphy.c
/freebsd-11-stable/sys/arm/freescale/imx/imx_common.c
/freebsd-11-stable/sys/arm/freescale/imx/imx_gpt.c
/freebsd-11-stable/sys/arm/freescale/imx/imx_gptreg.h
/freebsd-11-stable/sys/arm/freescale/imx/imx_machdep.c
/freebsd-11-stable/sys/arm/freescale/imx/imx_machdep.h
/freebsd-11-stable/sys/arm/freescale/imx/imx_nop_usbphy.c
/freebsd-11-stable/sys/arm/freescale/imx/imx_wdog.c
/freebsd-11-stable/sys/arm/freescale/imx/imx_wdogreg.h
/freebsd-11-stable/sys/arm/freescale/imx/tzic.c
/freebsd-11-stable/sys/arm/freescale/vybrid/vf_anadig.c
/freebsd-11-stable/sys/arm/freescale/vybrid/vf_ccm.c
/freebsd-11-stable/sys/arm/freescale/vybrid/vf_common.h
/freebsd-11-stable/sys/arm/freescale/vybrid/vf_dcu4.c
/freebsd-11-stable/sys/arm/freescale/vybrid/vf_dmamux.c
/freebsd-11-stable/sys/arm/freescale/vybrid/vf_dmamux.h
/freebsd-11-stable/sys/arm/freescale/vybrid/vf_edma.c
/freebsd-11-stable/sys/arm/freescale/vybrid/vf_edma.h
/freebsd-11-stable/sys/arm/freescale/vybrid/vf_ehci.c
/freebsd-11-stable/sys/arm/freescale/vybrid/vf_gpio.c
/freebsd-11-stable/sys/arm/freescale/vybrid/vf_i2c.c
/freebsd-11-stable/sys/arm/freescale/vybrid/vf_iomuxc.c
/freebsd-11-stable/sys/arm/freescale/vybrid/vf_iomuxc.h
/freebsd-11-stable/sys/arm/freescale/vybrid/vf_machdep.c
/freebsd-11-stable/sys/arm/freescale/vybrid/vf_mscm.c
/freebsd-11-stable/sys/arm/freescale/vybrid/vf_nfc.c
/freebsd-11-stable/sys/arm/freescale/vybrid/vf_port.c
/freebsd-11-stable/sys/arm/freescale/vybrid/vf_port.h
/freebsd-11-stable/sys/arm/freescale/vybrid/vf_sai.c
/freebsd-11-stable/sys/arm/freescale/vybrid/vf_src.c
/freebsd-11-stable/sys/arm/freescale/vybrid/vf_src.h
/freebsd-11-stable/sys/arm/freescale/vybrid/vf_tcon.c
/freebsd-11-stable/sys/arm/freescale/vybrid/vf_uart.c
/freebsd-11-stable/sys/arm/include/_align.h
/freebsd-11-stable/sys/arm/include/_bus.h
/freebsd-11-stable/sys/arm/include/_inttypes.h
/freebsd-11-stable/sys/arm/include/_limits.h
/freebsd-11-stable/sys/arm/include/_stdint.h
/freebsd-11-stable/sys/arm/include/_types.h
/freebsd-11-stable/sys/arm/include/armreg.h
/freebsd-11-stable/sys/arm/include/asm.h
/freebsd-11-stable/sys/arm/include/asmacros.h
/freebsd-11-stable/sys/arm/include/at91_gpio.h
/freebsd-11-stable/sys/arm/include/atags.h
/freebsd-11-stable/sys/arm/include/atomic.h
/freebsd-11-stable/sys/arm/include/blockio.h
/freebsd-11-stable/sys/arm/include/board.h
/freebsd-11-stable/sys/arm/include/bus.h
/freebsd-11-stable/sys/arm/include/bus_dma.h
/freebsd-11-stable/sys/arm/include/clock.h
/freebsd-11-stable/sys/arm/include/counter.h
/freebsd-11-stable/sys/arm/include/cpufunc.h
/freebsd-11-stable/sys/arm/include/disassem.h
/freebsd-11-stable/sys/arm/include/elf.h
/freebsd-11-stable/sys/arm/include/endian.h
/freebsd-11-stable/sys/arm/include/exec.h
/freebsd-11-stable/sys/arm/include/fdt.h
/freebsd-11-stable/sys/arm/include/fiq.h
/freebsd-11-stable/sys/arm/include/float.h
/freebsd-11-stable/sys/arm/include/floatingpoint.h
/freebsd-11-stable/sys/arm/include/frame.h
/freebsd-11-stable/sys/arm/include/gdb_machdep.h
/freebsd-11-stable/sys/arm/include/ieee.h
/freebsd-11-stable/sys/arm/include/in_cksum.h
/freebsd-11-stable/sys/arm/include/intr.h
/freebsd-11-stable/sys/arm/include/kdb.h
/freebsd-11-stable/sys/arm/include/limits.h
/freebsd-11-stable/sys/arm/include/md_var.h
/freebsd-11-stable/sys/arm/include/memdev.h
/freebsd-11-stable/sys/arm/include/metadata.h
/freebsd-11-stable/sys/arm/include/minidump.h
/freebsd-11-stable/sys/arm/include/ofw_machdep.h
/freebsd-11-stable/sys/arm/include/param.h
/freebsd-11-stable/sys/arm/include/pcb.h
/freebsd-11-stable/sys/arm/include/pcpu.h
/freebsd-11-stable/sys/arm/include/physmem.h
/freebsd-11-stable/sys/arm/include/pl310.h
/freebsd-11-stable/sys/arm/include/pmap.h
/freebsd-11-stable/sys/arm/include/pmc_mdep.h
/freebsd-11-stable/sys/arm/include/proc.h
/freebsd-11-stable/sys/arm/include/profile.h
/freebsd-11-stable/sys/arm/include/psl.h
/freebsd-11-stable/sys/arm/include/reloc.h
/freebsd-11-stable/sys/arm/include/runq.h
/freebsd-11-stable/sys/arm/include/sc_machdep.h
/freebsd-11-stable/sys/arm/include/sf_buf.h
/freebsd-11-stable/sys/arm/include/signal.h
/freebsd-11-stable/sys/arm/include/stdarg.h
/freebsd-11-stable/sys/arm/include/sysarch.h
/freebsd-11-stable/sys/arm/include/ucontext.h
/freebsd-11-stable/sys/arm/include/undefined.h
/freebsd-11-stable/sys/arm/include/utrap.h
/freebsd-11-stable/sys/arm/include/vdso.h
/freebsd-11-stable/sys/arm/include/vfp.h
/freebsd-11-stable/sys/arm/include/vm.h
/freebsd-11-stable/sys/arm/include/vmparam.h
/freebsd-11-stable/sys/arm/lpc/if_lpe.c
/freebsd-11-stable/sys/arm/lpc/if_lpereg.h
/freebsd-11-stable/sys/arm/lpc/lpc_dmac.c
/freebsd-11-stable/sys/arm/lpc/lpc_fb.c
/freebsd-11-stable/sys/arm/lpc/lpc_gpio.c
/freebsd-11-stable/sys/arm/lpc/lpc_intc.c
/freebsd-11-stable/sys/arm/lpc/lpc_machdep.c
/freebsd-11-stable/sys/arm/lpc/lpc_mmc.c
/freebsd-11-stable/sys/arm/lpc/lpc_ohci.c
/freebsd-11-stable/sys/arm/lpc/lpc_pll.c
/freebsd-11-stable/sys/arm/lpc/lpc_pwr.c
/freebsd-11-stable/sys/arm/lpc/lpc_rtc.c
/freebsd-11-stable/sys/arm/lpc/lpc_spi.c
/freebsd-11-stable/sys/arm/lpc/lpc_timer.c
/freebsd-11-stable/sys/arm/lpc/lpcreg.h
/freebsd-11-stable/sys/arm/lpc/lpcvar.h
/freebsd-11-stable/sys/arm/lpc/ssd1289.c
/freebsd-11-stable/sys/arm/mv/armadaxp/armadaxp.c
/freebsd-11-stable/sys/arm/mv/armadaxp/armadaxp_mp.c
/freebsd-11-stable/sys/arm/mv/discovery/discovery.c
/freebsd-11-stable/sys/arm/mv/gpio.c
/freebsd-11-stable/sys/arm/mv/ic.c
/freebsd-11-stable/sys/arm/mv/kirkwood/kirkwood.c
/freebsd-11-stable/sys/arm/mv/mpic.c
/freebsd-11-stable/sys/arm/mv/mv_common.c
/freebsd-11-stable/sys/arm/mv/mv_localbus.c
/freebsd-11-stable/sys/arm/mv/mv_machdep.c
/freebsd-11-stable/sys/arm/mv/mv_pci.c
/freebsd-11-stable/sys/arm/mv/mv_ts.c
/freebsd-11-stable/sys/arm/mv/mvreg.h
/freebsd-11-stable/sys/arm/mv/mvvar.h
/freebsd-11-stable/sys/arm/mv/mvwin.h
/freebsd-11-stable/sys/arm/mv/orion/db88f5xxx.c
/freebsd-11-stable/sys/arm/mv/orion/orion.c
/freebsd-11-stable/sys/arm/mv/rtc.c
/freebsd-11-stable/sys/arm/mv/timer.c
/freebsd-11-stable/sys/arm/rockchip/rk30xx_gpio.c
/freebsd-11-stable/sys/arm/rockchip/rk30xx_grf.c
/freebsd-11-stable/sys/arm/rockchip/rk30xx_grf.h
/freebsd-11-stable/sys/arm/rockchip/rk30xx_machdep.c
/freebsd-11-stable/sys/arm/rockchip/rk30xx_pmu.c
/freebsd-11-stable/sys/arm/rockchip/rk30xx_pmu.h
/freebsd-11-stable/sys/arm/rockchip/rk30xx_wdog.c
/freebsd-11-stable/sys/arm/rockchip/rk30xx_wdog.h
/freebsd-11-stable/sys/arm/samsung/exynos/exynos5_machdep.c
/freebsd-11-stable/sys/arm/samsung/exynos/exynos5_mp.c
/freebsd-11-stable/sys/arm/ti/aintc.c
/freebsd-11-stable/sys/arm/ti/am335x/am335x_dmtimer.c
/freebsd-11-stable/sys/arm/ti/am335x/am335x_lcd.c
/freebsd-11-stable/sys/arm/ti/am335x/am335x_lcd.h
/freebsd-11-stable/sys/arm/ti/am335x/am335x_lcd_syscons.c
/freebsd-11-stable/sys/arm/ti/am335x/am335x_pmic.c
/freebsd-11-stable/sys/arm/ti/am335x/am335x_prcm.c
/freebsd-11-stable/sys/arm/ti/am335x/am335x_pwm.h
/freebsd-11-stable/sys/arm/ti/am335x/am335x_reg.h
/freebsd-11-stable/sys/arm/ti/am335x/am335x_scm.h
/freebsd-11-stable/sys/arm/ti/am335x/am335x_scm_padconf.c
/freebsd-11-stable/sys/arm/ti/am335x/am335x_usbss.c
/freebsd-11-stable/sys/arm/ti/cpsw/if_cpsw.c
/freebsd-11-stable/sys/arm/ti/cpsw/if_cpswreg.h
/freebsd-11-stable/sys/arm/ti/cpsw/if_cpswvar.h
/freebsd-11-stable/sys/arm/ti/omap4/omap4_l2cache.c
/freebsd-11-stable/sys/arm/ti/omap4/omap4_mp.c
/freebsd-11-stable/sys/arm/ti/omap4/omap4_prcm_clks.c
/freebsd-11-stable/sys/arm/ti/omap4/omap4_reg.h
/freebsd-11-stable/sys/arm/ti/omap4/omap4_scm_padconf.c
/freebsd-11-stable/sys/arm/ti/omap4/omap4_smc.h
/freebsd-11-stable/sys/arm/ti/omap4/pandaboard/pandaboard.c
/freebsd-11-stable/sys/arm/ti/ti_cpuid.c
/freebsd-11-stable/sys/arm/ti/ti_cpuid.h
/freebsd-11-stable/sys/arm/ti/ti_edma3.c
/freebsd-11-stable/sys/arm/ti/ti_edma3.h
/freebsd-11-stable/sys/arm/ti/ti_gpio.c
/freebsd-11-stable/sys/arm/ti/ti_i2c.c
/freebsd-11-stable/sys/arm/ti/ti_i2c.h
/freebsd-11-stable/sys/arm/ti/ti_machdep.c
/freebsd-11-stable/sys/arm/ti/ti_mbox.c
/freebsd-11-stable/sys/arm/ti/ti_mbox.h
/freebsd-11-stable/sys/arm/ti/ti_prcm.c
/freebsd-11-stable/sys/arm/ti/ti_prcm.h
/freebsd-11-stable/sys/arm/ti/ti_pruss.c
/freebsd-11-stable/sys/arm/ti/ti_pruss.h
/freebsd-11-stable/sys/arm/ti/ti_scm.c
/freebsd-11-stable/sys/arm/ti/ti_scm.h
/freebsd-11-stable/sys/arm/ti/ti_sdhci.c
/freebsd-11-stable/sys/arm/ti/ti_sdma.c
/freebsd-11-stable/sys/arm/ti/ti_sdma.h
/freebsd-11-stable/sys/arm/ti/ti_sdmareg.h
/freebsd-11-stable/sys/arm/ti/ti_smc.h
/freebsd-11-stable/sys/arm/ti/tivar.h
/freebsd-11-stable/sys/arm/ti/twl/twl.c
/freebsd-11-stable/sys/arm/ti/twl/twl.h
/freebsd-11-stable/sys/arm/ti/twl/twl_clks.c
/freebsd-11-stable/sys/arm/ti/twl/twl_clks.h
/freebsd-11-stable/sys/arm/ti/twl/twl_vreg.c
/freebsd-11-stable/sys/arm/ti/twl/twl_vreg.h
/freebsd-11-stable/sys/arm/ti/usb/omap_ehci.c
/freebsd-11-stable/sys/arm/ti/usb/omap_usb.h
/freebsd-11-stable/sys/arm/versatile/pl050.c
/freebsd-11-stable/sys/arm/versatile/sp804.c
/freebsd-11-stable/sys/arm/versatile/versatile_clcd.c
/freebsd-11-stable/sys/arm/versatile/versatile_common.c
/freebsd-11-stable/sys/arm/versatile/versatile_machdep.c
/freebsd-11-stable/sys/arm/versatile/versatile_pci.c
/freebsd-11-stable/sys/arm/versatile/versatile_sic.c
/freebsd-11-stable/sys/arm/xilinx/uart_dev_cdnc.c
/freebsd-11-stable/sys/arm/xilinx/zy7_devcfg.c
/freebsd-11-stable/sys/arm/xilinx/zy7_ehci.c
/freebsd-11-stable/sys/arm/xilinx/zy7_gpio.c
/freebsd-11-stable/sys/arm/xilinx/zy7_l2cache.c
/freebsd-11-stable/sys/arm/xilinx/zy7_machdep.c
/freebsd-11-stable/sys/arm/xilinx/zy7_reg.h
/freebsd-11-stable/sys/arm/xilinx/zy7_slcr.c
/freebsd-11-stable/sys/arm/xilinx/zy7_slcr.h
/freebsd-11-stable/sys/arm/xscale/i8134x/crb_machdep.c
/freebsd-11-stable/sys/arm/xscale/i8134x/i81342.c
/freebsd-11-stable/sys/arm/xscale/i8134x/i81342_mcu.c
/freebsd-11-stable/sys/arm/xscale/i8134x/i81342_pci.c
/freebsd-11-stable/sys/arm/xscale/i8134x/i81342_space.c
/freebsd-11-stable/sys/arm/xscale/i8134x/i81342reg.h
/freebsd-11-stable/sys/arm/xscale/i8134x/i81342var.h
/freebsd-11-stable/sys/arm/xscale/i8134x/iq81342_7seg.c
/freebsd-11-stable/sys/arm/xscale/i8134x/iq81342reg.h
/freebsd-11-stable/sys/arm/xscale/i8134x/iq81342var.h
/freebsd-11-stable/sys/arm/xscale/i8134x/obio.c
/freebsd-11-stable/sys/arm/xscale/i8134x/obiovar.h
/freebsd-11-stable/sys/arm/xscale/i8134x/uart_bus_i81342.c
/freebsd-11-stable/sys/arm/xscale/i8134x/uart_cpu_i81342.c
/freebsd-11-stable/sys/arm/xscale/ixp425/avila_ata.c
/freebsd-11-stable/sys/arm/xscale/ixp425/avila_gpio.c
/freebsd-11-stable/sys/arm/xscale/ixp425/avila_led.c
/freebsd-11-stable/sys/arm/xscale/ixp425/avila_machdep.c
/freebsd-11-stable/sys/arm/xscale/ixp425/cambria_exp_space.c
/freebsd-11-stable/sys/arm/xscale/ixp425/cambria_fled.c
/freebsd-11-stable/sys/arm/xscale/ixp425/cambria_gpio.c
/freebsd-11-stable/sys/arm/xscale/ixp425/cambria_led.c
/freebsd-11-stable/sys/arm/xscale/ixp425/if_npe.c
/freebsd-11-stable/sys/arm/xscale/ixp425/if_npereg.h
/freebsd-11-stable/sys/arm/xscale/ixp425/ixdp425_pci.c
/freebsd-11-stable/sys/arm/xscale/ixp425/ixdp425reg.h
/freebsd-11-stable/sys/arm/xscale/ixp425/ixp425.c
/freebsd-11-stable/sys/arm/xscale/ixp425/ixp425_a4x_space.c
/freebsd-11-stable/sys/arm/xscale/ixp425/ixp425_iic.c
/freebsd-11-stable/sys/arm/xscale/ixp425/ixp425_intr.h
/freebsd-11-stable/sys/arm/xscale/ixp425/ixp425_mem.c
/freebsd-11-stable/sys/arm/xscale/ixp425/ixp425_npe.c
/freebsd-11-stable/sys/arm/xscale/ixp425/ixp425_npereg.h
/freebsd-11-stable/sys/arm/xscale/ixp425/ixp425_npevar.h
/freebsd-11-stable/sys/arm/xscale/ixp425/ixp425_pci.c
/freebsd-11-stable/sys/arm/xscale/ixp425/ixp425_pci_space.c
/freebsd-11-stable/sys/arm/xscale/ixp425/ixp425_qmgr.c
/freebsd-11-stable/sys/arm/xscale/ixp425/ixp425_qmgr.h
/freebsd-11-stable/sys/arm/xscale/ixp425/ixp425_space.c
/freebsd-11-stable/sys/arm/xscale/ixp425/ixp425_timer.c
/freebsd-11-stable/sys/arm/xscale/ixp425/ixp425_wdog.c
/freebsd-11-stable/sys/arm/xscale/ixp425/ixp425reg.h
/freebsd-11-stable/sys/arm/xscale/ixp425/ixp425var.h
/freebsd-11-stable/sys/arm/xscale/ixp425/uart_bus_ixp425.c
/freebsd-11-stable/sys/arm/xscale/ixp425/uart_cpu_ixp425.c
/freebsd-11-stable/sys/arm/xscale/pxa/if_smc_smi.c
/freebsd-11-stable/sys/arm/xscale/pxa/pxa_gpio.c
/freebsd-11-stable/sys/arm/xscale/pxa/pxa_icu.c
/freebsd-11-stable/sys/arm/xscale/pxa/pxa_machdep.c
/freebsd-11-stable/sys/arm/xscale/pxa/pxa_obio.c
/freebsd-11-stable/sys/arm/xscale/pxa/pxa_smi.c
/freebsd-11-stable/sys/arm/xscale/pxa/pxa_space.c
/freebsd-11-stable/sys/arm/xscale/pxa/pxa_timer.c
/freebsd-11-stable/sys/arm/xscale/pxa/pxareg.h
/freebsd-11-stable/sys/arm/xscale/pxa/pxavar.h
/freebsd-11-stable/sys/arm/xscale/pxa/uart_bus_pxa.c
/freebsd-11-stable/sys/arm/xscale/pxa/uart_cpu_pxa.c
/freebsd-11-stable/sys/bsm/audit.h
/freebsd-11-stable/sys/bsm/audit_domain.h
/freebsd-11-stable/sys/bsm/audit_errno.h
/freebsd-11-stable/sys/bsm/audit_fcntl.h
/freebsd-11-stable/sys/bsm/audit_internal.h
/freebsd-11-stable/sys/bsm/audit_kevents.h
/freebsd-11-stable/sys/bsm/audit_record.h
/freebsd-11-stable/sys/bsm/audit_socket_type.h
/freebsd-11-stable/sys/compat/freebsd32/freebsd32_ioctl.c
/freebsd-11-stable/sys/compat/freebsd32/freebsd32_ioctl.h
/freebsd-11-stable/sys/compat/linprocfs/linprocfs.c
/freebsd-11-stable/sys/compat/ndis/cfg_var.h
/freebsd-11-stable/sys/compat/ndis/hal_var.h
/freebsd-11-stable/sys/compat/ndis/kern_ndis.c
/freebsd-11-stable/sys/compat/ndis/kern_windrv.c
/freebsd-11-stable/sys/compat/ndis/ndis_var.h
/freebsd-11-stable/sys/compat/ndis/ntoskrnl_var.h
/freebsd-11-stable/sys/compat/ndis/pe_var.h
/freebsd-11-stable/sys/compat/ndis/resource_var.h
/freebsd-11-stable/sys/compat/ndis/subr_hal.c
/freebsd-11-stable/sys/compat/ndis/subr_ndis.c
/freebsd-11-stable/sys/compat/ndis/subr_ntoskrnl.c
/freebsd-11-stable/sys/compat/ndis/subr_pe.c
/freebsd-11-stable/sys/compat/ndis/subr_usbd.c
/freebsd-11-stable/sys/compat/ndis/usbd_var.h
/freebsd-11-stable/sys/conf/newvers.sh
/freebsd-11-stable/sys/conf/systags.sh
/freebsd-11-stable/sys/crypto/sha1.c
/freebsd-11-stable/sys/crypto/sha1.h
/freebsd-11-stable/sys/ddb/db_ps.c
/freebsd-11-stable/sys/ddb/ddb.h
/freebsd-11-stable/sys/dev/aac/aac.c
/freebsd-11-stable/sys/dev/aac/aac_cam.c
/freebsd-11-stable/sys/dev/aac/aac_debug.c
/freebsd-11-stable/sys/dev/aac/aac_disk.c
/freebsd-11-stable/sys/dev/aac/aac_linux.c
/freebsd-11-stable/sys/dev/aac/aac_pci.c
/freebsd-11-stable/sys/dev/aac/aac_tables.h
/freebsd-11-stable/sys/dev/aac/aacreg.h
/freebsd-11-stable/sys/dev/aac/aacvar.h
/freebsd-11-stable/sys/dev/aacraid/aacraid.c
/freebsd-11-stable/sys/dev/aacraid/aacraid_cam.c
/freebsd-11-stable/sys/dev/aacraid/aacraid_debug.c
/freebsd-11-stable/sys/dev/aacraid/aacraid_debug.h
/freebsd-11-stable/sys/dev/aacraid/aacraid_linux.c
/freebsd-11-stable/sys/dev/aacraid/aacraid_pci.c
/freebsd-11-stable/sys/dev/aacraid/aacraid_reg.h
/freebsd-11-stable/sys/dev/aacraid/aacraid_var.h
/freebsd-11-stable/sys/dev/adb/adb.h
/freebsd-11-stable/sys/dev/adb/adb_bus.c
/freebsd-11-stable/sys/dev/adb/adb_buttons.c
/freebsd-11-stable/sys/dev/adb/adb_kbd.c
/freebsd-11-stable/sys/dev/adb/adb_mouse.c
/freebsd-11-stable/sys/dev/adb/adbvar.h
/freebsd-11-stable/sys/dev/adlink/adlink.c
/freebsd-11-stable/sys/dev/advansys/adv_isa.c
/freebsd-11-stable/sys/dev/advansys/adv_pci.c
/freebsd-11-stable/sys/dev/advansys/advansys.c
/freebsd-11-stable/sys/dev/advansys/advansys.h
/freebsd-11-stable/sys/dev/advansys/advlib.c
/freebsd-11-stable/sys/dev/advansys/advlib.h
/freebsd-11-stable/sys/dev/advansys/adw_pci.c
/freebsd-11-stable/sys/dev/advansys/adwcam.c
/freebsd-11-stable/sys/dev/advansys/adwlib.c
/freebsd-11-stable/sys/dev/advansys/adwlib.h
/freebsd-11-stable/sys/dev/advansys/adwvar.h
/freebsd-11-stable/sys/dev/ae/if_ae.c
/freebsd-11-stable/sys/dev/ae/if_aereg.h
/freebsd-11-stable/sys/dev/ae/if_aevar.h
/freebsd-11-stable/sys/dev/age/if_age.c
/freebsd-11-stable/sys/dev/age/if_agereg.h
/freebsd-11-stable/sys/dev/age/if_agevar.h
/freebsd-11-stable/sys/dev/agp/agp.c
/freebsd-11-stable/sys/dev/agp/agp_ali.c
/freebsd-11-stable/sys/dev/agp/agp_amd.c
/freebsd-11-stable/sys/dev/agp/agp_amd64.c
/freebsd-11-stable/sys/dev/agp/agp_apple.c
/freebsd-11-stable/sys/dev/agp/agp_ati.c
/freebsd-11-stable/sys/dev/agp/agp_i810.c
/freebsd-11-stable/sys/dev/agp/agp_i810.h
/freebsd-11-stable/sys/dev/agp/agp_intel.c
/freebsd-11-stable/sys/dev/agp/agp_nvidia.c
/freebsd-11-stable/sys/dev/agp/agp_sis.c
/freebsd-11-stable/sys/dev/agp/agp_via.c
/freebsd-11-stable/sys/dev/agp/agppriv.h
/freebsd-11-stable/sys/dev/agp/agpreg.h
/freebsd-11-stable/sys/dev/agp/agpvar.h
/freebsd-11-stable/sys/dev/aha/aha.c
/freebsd-11-stable/sys/dev/aha/aha_isa.c
/freebsd-11-stable/sys/dev/aha/ahareg.h
/freebsd-11-stable/sys/dev/ahci/ahci.c
/freebsd-11-stable/sys/dev/ahci/ahci.h
/freebsd-11-stable/sys/dev/ahci/ahciem.c
/freebsd-11-stable/sys/dev/aic/aic.c
/freebsd-11-stable/sys/dev/aic/aic6360reg.h
/freebsd-11-stable/sys/dev/aic/aic_isa.c
/freebsd-11-stable/sys/dev/aic/aic_pccard.c
/freebsd-11-stable/sys/dev/aic/aicvar.h
/freebsd-11-stable/sys/dev/aic7xxx/ahc_isa.c
/freebsd-11-stable/sys/dev/aic7xxx/aic7770.c
/freebsd-11-stable/sys/dev/aic7xxx/aic79xx.c
/freebsd-11-stable/sys/dev/aic7xxx/aic79xx.h
/freebsd-11-stable/sys/dev/aic7xxx/aic79xx_inline.h
/freebsd-11-stable/sys/dev/aic7xxx/aic79xx_pci.c
/freebsd-11-stable/sys/dev/aic7xxx/aic7xxx.c
/freebsd-11-stable/sys/dev/aic7xxx/aic7xxx.h
/freebsd-11-stable/sys/dev/aic7xxx/aic7xxx_93cx6.h
/freebsd-11-stable/sys/dev/aic7xxx/aic7xxx_inline.h
/freebsd-11-stable/sys/dev/aic7xxx/aic7xxx_pci.c
/freebsd-11-stable/sys/dev/aic7xxx/aicasm/aicasm.c
/freebsd-11-stable/sys/dev/aic7xxx/aicasm/aicasm.h
/freebsd-11-stable/sys/dev/aic7xxx/aicasm/aicasm_gram.y
/freebsd-11-stable/sys/dev/aic7xxx/aicasm/aicasm_insformat.h
/freebsd-11-stable/sys/dev/aic7xxx/aicasm/aicasm_macro_gram.y
/freebsd-11-stable/sys/dev/aic7xxx/aicasm/aicasm_macro_scan.l
/freebsd-11-stable/sys/dev/aic7xxx/aicasm/aicasm_scan.l
/freebsd-11-stable/sys/dev/aic7xxx/aicasm/aicasm_symbol.c
/freebsd-11-stable/sys/dev/aic7xxx/aicasm/aicasm_symbol.h
/freebsd-11-stable/sys/dev/alc/if_alc.c
/freebsd-11-stable/sys/dev/alc/if_alcreg.h
/freebsd-11-stable/sys/dev/alc/if_alcvar.h
/freebsd-11-stable/sys/dev/ale/if_ale.c
/freebsd-11-stable/sys/dev/ale/if_alereg.h
/freebsd-11-stable/sys/dev/ale/if_alevar.h
/freebsd-11-stable/sys/dev/altera/atse/a_api.h
/freebsd-11-stable/sys/dev/altera/atse/if_atse.c
/freebsd-11-stable/sys/dev/altera/atse/if_atse_fdt.c
/freebsd-11-stable/sys/dev/altera/atse/if_atse_nexus.c
/freebsd-11-stable/sys/dev/altera/atse/if_atsereg.h
/freebsd-11-stable/sys/dev/altera/avgen/altera_avgen.c
/freebsd-11-stable/sys/dev/altera/avgen/altera_avgen.h
/freebsd-11-stable/sys/dev/altera/avgen/altera_avgen_fdt.c
/freebsd-11-stable/sys/dev/altera/avgen/altera_avgen_nexus.c
/freebsd-11-stable/sys/dev/altera/jtag_uart/altera_jtag_uart.h
/freebsd-11-stable/sys/dev/altera/jtag_uart/altera_jtag_uart_cons.c
/freebsd-11-stable/sys/dev/altera/jtag_uart/altera_jtag_uart_fdt.c
/freebsd-11-stable/sys/dev/altera/jtag_uart/altera_jtag_uart_nexus.c
/freebsd-11-stable/sys/dev/altera/jtag_uart/altera_jtag_uart_tty.c
/freebsd-11-stable/sys/dev/altera/sdcard/altera_sdcard.c
/freebsd-11-stable/sys/dev/altera/sdcard/altera_sdcard.h
/freebsd-11-stable/sys/dev/altera/sdcard/altera_sdcard_disk.c
/freebsd-11-stable/sys/dev/altera/sdcard/altera_sdcard_fdt.c
/freebsd-11-stable/sys/dev/altera/sdcard/altera_sdcard_io.c
/freebsd-11-stable/sys/dev/altera/sdcard/altera_sdcard_nexus.c
/freebsd-11-stable/sys/dev/amdsbwd/amdsbwd.c
/freebsd-11-stable/sys/dev/amdtemp/amdtemp.c
/freebsd-11-stable/sys/dev/amr/amr.c
/freebsd-11-stable/sys/dev/amr/amr_cam.c
/freebsd-11-stable/sys/dev/amr/amr_disk.c
/freebsd-11-stable/sys/dev/amr/amr_linux.c
/freebsd-11-stable/sys/dev/amr/amr_pci.c
/freebsd-11-stable/sys/dev/amr/amr_tables.h
/freebsd-11-stable/sys/dev/amr/amrio.h
/freebsd-11-stable/sys/dev/amr/amrreg.h
/freebsd-11-stable/sys/dev/amr/amrvar.h
/freebsd-11-stable/sys/dev/an/if_aironet_ieee.h
/freebsd-11-stable/sys/dev/an/if_an.c
/freebsd-11-stable/sys/dev/an/if_an_isa.c
/freebsd-11-stable/sys/dev/an/if_an_pccard.c
/freebsd-11-stable/sys/dev/an/if_an_pci.c
/freebsd-11-stable/sys/dev/an/if_anreg.h
/freebsd-11-stable/sys/dev/arcmsr/arcmsr.c
/freebsd-11-stable/sys/dev/arcmsr/arcmsr.h
/freebsd-11-stable/sys/dev/asmc/asmc.c
/freebsd-11-stable/sys/dev/asmc/asmcvar.h
/freebsd-11-stable/sys/dev/ata/ata-all.c
/freebsd-11-stable/sys/dev/ata/ata-all.h
/freebsd-11-stable/sys/dev/ata/ata-card.c
/freebsd-11-stable/sys/dev/ata/ata-dma.c
/freebsd-11-stable/sys/dev/ata/ata-isa.c
/freebsd-11-stable/sys/dev/ata/ata-lowlevel.c
/freebsd-11-stable/sys/dev/ata/ata-pci.c
/freebsd-11-stable/sys/dev/ata/ata-pci.h
/freebsd-11-stable/sys/dev/ata/ata-sata.c
/freebsd-11-stable/sys/dev/ata/chipsets/ata-acard.c
/freebsd-11-stable/sys/dev/ata/chipsets/ata-acerlabs.c
/freebsd-11-stable/sys/dev/ata/chipsets/ata-amd.c
/freebsd-11-stable/sys/dev/ata/chipsets/ata-ati.c
/freebsd-11-stable/sys/dev/ata/chipsets/ata-cenatek.c
/freebsd-11-stable/sys/dev/ata/chipsets/ata-cypress.c
/freebsd-11-stable/sys/dev/ata/chipsets/ata-cyrix.c
/freebsd-11-stable/sys/dev/ata/chipsets/ata-fsl.c
/freebsd-11-stable/sys/dev/ata/chipsets/ata-highpoint.c
/freebsd-11-stable/sys/dev/ata/chipsets/ata-intel.c
/freebsd-11-stable/sys/dev/ata/chipsets/ata-ite.c
/freebsd-11-stable/sys/dev/ata/chipsets/ata-jmicron.c
/freebsd-11-stable/sys/dev/ata/chipsets/ata-marvell.c
/freebsd-11-stable/sys/dev/ata/chipsets/ata-micron.c
/freebsd-11-stable/sys/dev/ata/chipsets/ata-national.c
/freebsd-11-stable/sys/dev/ata/chipsets/ata-netcell.c
/freebsd-11-stable/sys/dev/ata/chipsets/ata-nvidia.c
/freebsd-11-stable/sys/dev/ata/chipsets/ata-promise.c
/freebsd-11-stable/sys/dev/ata/chipsets/ata-serverworks.c
/freebsd-11-stable/sys/dev/ata/chipsets/ata-siliconimage.c
/freebsd-11-stable/sys/dev/ata/chipsets/ata-sis.c
/freebsd-11-stable/sys/dev/ata/chipsets/ata-via.c
/freebsd-11-stable/sys/dev/ath/ah_osdep.c
/freebsd-11-stable/sys/dev/ath/ah_osdep.h
/freebsd-11-stable/sys/dev/ath/ath_dfs/null/dfs_null.c
/freebsd-11-stable/sys/dev/ath/ath_hal/ar9002/ar9002phy.h
/freebsd-11-stable/sys/dev/ath/ath_hal/ar9002/ar9280_olc.c
/freebsd-11-stable/sys/dev/ath/ath_hal/ar9002/ar9280_olc.h
/freebsd-11-stable/sys/dev/ath/ath_hal/ar9002/ar9285_cal.c
/freebsd-11-stable/sys/dev/ath/ath_hal/ar9002/ar9285_cal.h
/freebsd-11-stable/sys/dev/ath/ath_hal/ar9002/ar9285_diversity.c
/freebsd-11-stable/sys/dev/ath/ath_hal/ar9002/ar9285_diversity.h
/freebsd-11-stable/sys/dev/ath/ath_hal/ar9002/ar9285_phy.c
/freebsd-11-stable/sys/dev/ath/ath_hal/ar9002/ar9285_phy.h
/freebsd-11-stable/sys/dev/ath/ath_hal/ar9002/ar9285phy.h
/freebsd-11-stable/sys/dev/ath/ath_hal/ar9002/ar9287_cal.c
/freebsd-11-stable/sys/dev/ath/ath_hal/ar9002/ar9287_cal.h
/freebsd-11-stable/sys/dev/ath/ath_hal/ar9002/ar9287_olc.c
/freebsd-11-stable/sys/dev/ath/ath_hal/ar9003/ar9300_devid.h
/freebsd-11-stable/sys/dev/ath/ath_rate/amrr/amrr.c
/freebsd-11-stable/sys/dev/ath/ath_rate/amrr/amrr.h
/freebsd-11-stable/sys/dev/ath/ath_rate/onoe/onoe.c
/freebsd-11-stable/sys/dev/ath/ath_rate/onoe/onoe.h
/freebsd-11-stable/sys/dev/ath/ath_rate/sample/sample.c
/freebsd-11-stable/sys/dev/ath/ath_rate/sample/sample.h
/freebsd-11-stable/sys/dev/ath/ath_rate/sample/tx_schedules.h
/freebsd-11-stable/sys/dev/ath/if_ath.c
/freebsd-11-stable/sys/dev/ath/if_ath_ahb.c
/freebsd-11-stable/sys/dev/ath/if_ath_alq.c
/freebsd-11-stable/sys/dev/ath/if_ath_alq.h
/freebsd-11-stable/sys/dev/ath/if_ath_beacon.c
/freebsd-11-stable/sys/dev/ath/if_ath_beacon.h
/freebsd-11-stable/sys/dev/ath/if_ath_btcoex.c
/freebsd-11-stable/sys/dev/ath/if_ath_btcoex.h
/freebsd-11-stable/sys/dev/ath/if_ath_debug.c
/freebsd-11-stable/sys/dev/ath/if_ath_debug.h
/freebsd-11-stable/sys/dev/ath/if_ath_keycache.c
/freebsd-11-stable/sys/dev/ath/if_ath_keycache.h
/freebsd-11-stable/sys/dev/ath/if_ath_led.c
/freebsd-11-stable/sys/dev/ath/if_ath_led.h
/freebsd-11-stable/sys/dev/ath/if_ath_lna_div.c
/freebsd-11-stable/sys/dev/ath/if_ath_lna_div.h
/freebsd-11-stable/sys/dev/ath/if_ath_misc.h
/freebsd-11-stable/sys/dev/ath/if_ath_pci.c
/freebsd-11-stable/sys/dev/ath/if_ath_rx.c
/freebsd-11-stable/sys/dev/ath/if_ath_rx.h
/freebsd-11-stable/sys/dev/ath/if_ath_rx_edma.c
/freebsd-11-stable/sys/dev/ath/if_ath_rx_edma.h
/freebsd-11-stable/sys/dev/ath/if_ath_spectral.c
/freebsd-11-stable/sys/dev/ath/if_ath_spectral.h
/freebsd-11-stable/sys/dev/ath/if_ath_sysctl.c
/freebsd-11-stable/sys/dev/ath/if_ath_sysctl.h
/freebsd-11-stable/sys/dev/ath/if_ath_tdma.c
/freebsd-11-stable/sys/dev/ath/if_ath_tdma.h
/freebsd-11-stable/sys/dev/ath/if_ath_tsf.h
/freebsd-11-stable/sys/dev/ath/if_ath_tx.c
/freebsd-11-stable/sys/dev/ath/if_ath_tx.h
/freebsd-11-stable/sys/dev/ath/if_ath_tx_edma.c
/freebsd-11-stable/sys/dev/ath/if_ath_tx_edma.h
/freebsd-11-stable/sys/dev/ath/if_ath_tx_ht.c
/freebsd-11-stable/sys/dev/ath/if_ath_tx_ht.h
/freebsd-11-stable/sys/dev/ath/if_athdfs.h
/freebsd-11-stable/sys/dev/ath/if_athioctl.h
/freebsd-11-stable/sys/dev/ath/if_athrate.h
/freebsd-11-stable/sys/dev/ath/if_athvar.h
/freebsd-11-stable/sys/dev/atkbdc/atkbd.c
/freebsd-11-stable/sys/dev/atkbdc/atkbd_atkbdc.c
/freebsd-11-stable/sys/dev/atkbdc/atkbdc.c
/freebsd-11-stable/sys/dev/atkbdc/atkbdc_ebus.c
/freebsd-11-stable/sys/dev/atkbdc/atkbdc_isa.c
/freebsd-11-stable/sys/dev/atkbdc/atkbdc_subr.c
/freebsd-11-stable/sys/dev/atkbdc/atkbdc_subr.h
/freebsd-11-stable/sys/dev/atkbdc/atkbdcreg.h
/freebsd-11-stable/sys/dev/atkbdc/atkbdreg.h
/freebsd-11-stable/sys/dev/auxio/auxio.c
/freebsd-11-stable/sys/dev/auxio/auxioreg.h
/freebsd-11-stable/sys/dev/bce/if_bce.c
/freebsd-11-stable/sys/dev/bce/if_bcefw.h
/freebsd-11-stable/sys/dev/bce/if_bcereg.h
/freebsd-11-stable/sys/dev/bfe/if_bfe.c
/freebsd-11-stable/sys/dev/bfe/if_bfereg.h
/freebsd-11-stable/sys/dev/bge/if_bge.c
/freebsd-11-stable/sys/dev/bge/if_bgereg.h
/freebsd-11-stable/sys/dev/bktr/bktr_audio.c
/freebsd-11-stable/sys/dev/bktr/bktr_audio.h
/freebsd-11-stable/sys/dev/bktr/bktr_card.c
/freebsd-11-stable/sys/dev/bktr/bktr_card.h
/freebsd-11-stable/sys/dev/bktr/bktr_core.c
/freebsd-11-stable/sys/dev/bktr/bktr_core.h
/freebsd-11-stable/sys/dev/bktr/bktr_i2c.c
/freebsd-11-stable/sys/dev/bktr/bktr_i2c.h
/freebsd-11-stable/sys/dev/bktr/bktr_mem.c
/freebsd-11-stable/sys/dev/bktr/bktr_mem.h
/freebsd-11-stable/sys/dev/bktr/bktr_os.c
/freebsd-11-stable/sys/dev/bktr/bktr_os.h
/freebsd-11-stable/sys/dev/bktr/bktr_reg.h
/freebsd-11-stable/sys/dev/bktr/bktr_tuner.c
/freebsd-11-stable/sys/dev/bktr/bktr_tuner.h
/freebsd-11-stable/sys/dev/bktr/ioctl_meteor.h
/freebsd-11-stable/sys/dev/bktr/msp34xx.c
/freebsd-11-stable/sys/dev/bm/if_bm.c
/freebsd-11-stable/sys/dev/bm/if_bmreg.h
/freebsd-11-stable/sys/dev/bm/if_bmvar.h
/freebsd-11-stable/sys/dev/buslogic/bt.c
/freebsd-11-stable/sys/dev/buslogic/bt_isa.c
/freebsd-11-stable/sys/dev/buslogic/bt_pci.c
/freebsd-11-stable/sys/dev/buslogic/btreg.h
/freebsd-11-stable/sys/dev/bvm/bvm_console.c
/freebsd-11-stable/sys/dev/bvm/bvm_dbg.c
/freebsd-11-stable/sys/dev/bwi/bitops.h
/freebsd-11-stable/sys/dev/bwi/bwimac.c
/freebsd-11-stable/sys/dev/bwi/bwimac.h
/freebsd-11-stable/sys/dev/bwi/bwiphy.c
/freebsd-11-stable/sys/dev/bwi/bwiphy.h
/freebsd-11-stable/sys/dev/bwi/bwirf.c
/freebsd-11-stable/sys/dev/bwi/bwirf.h
/freebsd-11-stable/sys/dev/bwi/if_bwi.c
/freebsd-11-stable/sys/dev/bwi/if_bwi_pci.c
/freebsd-11-stable/sys/dev/bwi/if_bwireg.h
/freebsd-11-stable/sys/dev/bwi/if_bwivar.h
/freebsd-11-stable/sys/dev/bwn/if_bwn.c
/freebsd-11-stable/sys/dev/bwn/if_bwnreg.h
/freebsd-11-stable/sys/dev/bwn/if_bwnvar.h
/freebsd-11-stable/sys/dev/bxe/57710_init_values.c
/freebsd-11-stable/sys/dev/bxe/57710_int_offsets.h
/freebsd-11-stable/sys/dev/bxe/57711_init_values.c
/freebsd-11-stable/sys/dev/bxe/57711_int_offsets.h
/freebsd-11-stable/sys/dev/bxe/57712_init_values.c
/freebsd-11-stable/sys/dev/bxe/57712_int_offsets.h
/freebsd-11-stable/sys/dev/bxe/bxe.c
/freebsd-11-stable/sys/dev/bxe/bxe.h
/freebsd-11-stable/sys/dev/bxe/bxe_dcb.h
/freebsd-11-stable/sys/dev/bxe/bxe_debug.c
/freebsd-11-stable/sys/dev/bxe/bxe_elink.c
/freebsd-11-stable/sys/dev/bxe/bxe_elink.h
/freebsd-11-stable/sys/dev/bxe/bxe_stats.c
/freebsd-11-stable/sys/dev/bxe/bxe_stats.h
/freebsd-11-stable/sys/dev/bxe/ecore_fw_defs.h
/freebsd-11-stable/sys/dev/bxe/ecore_hsi.h
/freebsd-11-stable/sys/dev/bxe/ecore_init.h
/freebsd-11-stable/sys/dev/bxe/ecore_init_ops.h
/freebsd-11-stable/sys/dev/bxe/ecore_mfw_req.h
/freebsd-11-stable/sys/dev/bxe/ecore_reg.h
/freebsd-11-stable/sys/dev/bxe/ecore_sp.c
/freebsd-11-stable/sys/dev/bxe/ecore_sp.h
/freebsd-11-stable/sys/dev/cadence/if_cgem.c
/freebsd-11-stable/sys/dev/cadence/if_cgem_hw.h
/freebsd-11-stable/sys/dev/cardbus/cardbus.c
/freebsd-11-stable/sys/dev/cardbus/cardbus_cis.c
/freebsd-11-stable/sys/dev/cardbus/cardbus_cis.h
/freebsd-11-stable/sys/dev/cardbus/cardbus_device.c
/freebsd-11-stable/sys/dev/cardbus/cardbusreg.h
/freebsd-11-stable/sys/dev/cardbus/cardbusvar.h
/freebsd-11-stable/sys/dev/cas/if_cas.c
/freebsd-11-stable/sys/dev/cas/if_casreg.h
/freebsd-11-stable/sys/dev/cas/if_casvar.h
/freebsd-11-stable/sys/dev/cesa/cesa.c
/freebsd-11-stable/sys/dev/cesa/cesa.h
/freebsd-11-stable/sys/dev/cfe/cfe_api.c
/freebsd-11-stable/sys/dev/cfe/cfe_api.h
/freebsd-11-stable/sys/dev/cfe/cfe_api_int.h
/freebsd-11-stable/sys/dev/cfe/cfe_console.c
/freebsd-11-stable/sys/dev/cfe/cfe_env.c
/freebsd-11-stable/sys/dev/cfe/cfe_error.h
/freebsd-11-stable/sys/dev/cfe/cfe_ioctl.h
/freebsd-11-stable/sys/dev/cfe/cfe_resource.c
/freebsd-11-stable/sys/dev/cfi/cfi_bus_fdt.c
/freebsd-11-stable/sys/dev/cfi/cfi_bus_ixp4xx.c
/freebsd-11-stable/sys/dev/cfi/cfi_bus_nexus.c
/freebsd-11-stable/sys/dev/cfi/cfi_core.c
/freebsd-11-stable/sys/dev/cfi/cfi_dev.c
/freebsd-11-stable/sys/dev/cfi/cfi_disk.c
/freebsd-11-stable/sys/dev/cfi/cfi_reg.h
/freebsd-11-stable/sys/dev/cfi/cfi_var.h
/freebsd-11-stable/sys/dev/ciss/ciss.c
/freebsd-11-stable/sys/dev/ciss/cissio.h
/freebsd-11-stable/sys/dev/ciss/cissreg.h
/freebsd-11-stable/sys/dev/ciss/cissvar.h
/freebsd-11-stable/sys/dev/cm/if_cm_isa.c
/freebsd-11-stable/sys/dev/cm/smc90cx6.c
/freebsd-11-stable/sys/dev/cm/smc90cx6reg.h
/freebsd-11-stable/sys/dev/cm/smc90cx6var.h
/freebsd-11-stable/sys/dev/cmx/cmx_pccard.c
/freebsd-11-stable/sys/dev/cmx/cmxreg.h
/freebsd-11-stable/sys/dev/cmx/cmxvar.h
/freebsd-11-stable/sys/dev/coretemp/coretemp.c
/freebsd-11-stable/sys/dev/cpuctl/cpuctl.c
/freebsd-11-stable/sys/dev/cpufreq/ichss.c
/freebsd-11-stable/sys/dev/cs/if_cs.c
/freebsd-11-stable/sys/dev/cs/if_cs_isa.c
/freebsd-11-stable/sys/dev/cs/if_cs_pccard.c
/freebsd-11-stable/sys/dev/cs/if_csreg.h
/freebsd-11-stable/sys/dev/cs/if_csvar.h
/freebsd-11-stable/sys/dev/cxgb/bin2h.pl
/freebsd-11-stable/sys/dev/cxgb/common/cxgb_ael1002.c
/freebsd-11-stable/sys/dev/cxgb/common/cxgb_aq100x.c
/freebsd-11-stable/sys/dev/cxgb/common/cxgb_common.h
/freebsd-11-stable/sys/dev/cxgb/common/cxgb_firmware_exports.h
/freebsd-11-stable/sys/dev/cxgb/common/cxgb_mc5.c
/freebsd-11-stable/sys/dev/cxgb/common/cxgb_mv88e1xxx.c
/freebsd-11-stable/sys/dev/cxgb/common/cxgb_regs.h
/freebsd-11-stable/sys/dev/cxgb/common/cxgb_sge_defs.h
/freebsd-11-stable/sys/dev/cxgb/common/cxgb_t3_cpl.h
/freebsd-11-stable/sys/dev/cxgb/common/cxgb_t3_hw.c
/freebsd-11-stable/sys/dev/cxgb/common/cxgb_tcb.h
/freebsd-11-stable/sys/dev/cxgb/common/cxgb_tn1010.c
/freebsd-11-stable/sys/dev/cxgb/common/cxgb_vsc7323.c
/freebsd-11-stable/sys/dev/cxgb/common/cxgb_vsc8211.c
/freebsd-11-stable/sys/dev/cxgb/common/cxgb_xgmac.c
/freebsd-11-stable/sys/dev/cxgb/cxgb_adapter.h
/freebsd-11-stable/sys/dev/cxgb/cxgb_ioctl.h
/freebsd-11-stable/sys/dev/cxgb/cxgb_main.c
/freebsd-11-stable/sys/dev/cxgb/cxgb_offload.h
/freebsd-11-stable/sys/dev/cxgb/cxgb_osdep.h
/freebsd-11-stable/sys/dev/cxgb/cxgb_sge.c
/freebsd-11-stable/sys/dev/cxgb/cxgb_t3fw.h
/freebsd-11-stable/sys/dev/cxgb/sys/mvec.h
/freebsd-11-stable/sys/dev/cxgb/sys/uipc_mvec.c
/freebsd-11-stable/sys/dev/cxgb/t3b_protocol_sram.h
/freebsd-11-stable/sys/dev/cxgb/t3b_tp_eeprom.h
/freebsd-11-stable/sys/dev/cxgb/t3c_protocol_sram.h
/freebsd-11-stable/sys/dev/cxgb/t3c_tp_eeprom.h
/freebsd-11-stable/sys/dev/cxgbe/adapter.h
/freebsd-11-stable/sys/dev/cxgbe/common/common.h
/freebsd-11-stable/sys/dev/cxgbe/common/t4_hw.c
/freebsd-11-stable/sys/dev/cxgbe/common/t4_hw.h
/freebsd-11-stable/sys/dev/cxgbe/common/t4_msg.h
/freebsd-11-stable/sys/dev/cxgbe/common/t4_regs.h
/freebsd-11-stable/sys/dev/cxgbe/common/t4_regs_values.h
/freebsd-11-stable/sys/dev/cxgbe/common/t4_tcb.h
/freebsd-11-stable/sys/dev/cxgbe/iw_cxgbe/cm.c
/freebsd-11-stable/sys/dev/cxgbe/iw_cxgbe/cq.c
/freebsd-11-stable/sys/dev/cxgbe/iw_cxgbe/device.c
/freebsd-11-stable/sys/dev/cxgbe/iw_cxgbe/ev.c
/freebsd-11-stable/sys/dev/cxgbe/iw_cxgbe/id_table.c
/freebsd-11-stable/sys/dev/cxgbe/iw_cxgbe/iw_cxgbe.h
/freebsd-11-stable/sys/dev/cxgbe/iw_cxgbe/mem.c
/freebsd-11-stable/sys/dev/cxgbe/iw_cxgbe/provider.c
/freebsd-11-stable/sys/dev/cxgbe/iw_cxgbe/qp.c
/freebsd-11-stable/sys/dev/cxgbe/iw_cxgbe/resource.c
/freebsd-11-stable/sys/dev/cxgbe/iw_cxgbe/t4.h
/freebsd-11-stable/sys/dev/cxgbe/iw_cxgbe/user.h
/freebsd-11-stable/sys/dev/cxgbe/offload.h
/freebsd-11-stable/sys/dev/cxgbe/osdep.h
/freebsd-11-stable/sys/dev/cxgbe/t4_ioctl.h
/freebsd-11-stable/sys/dev/cxgbe/t4_l2t.c
/freebsd-11-stable/sys/dev/cxgbe/t4_l2t.h
/freebsd-11-stable/sys/dev/cxgbe/t4_main.c
/freebsd-11-stable/sys/dev/cxgbe/t4_sge.c
/freebsd-11-stable/sys/dev/cxgbe/t4_tracer.c
/freebsd-11-stable/sys/dev/cxgbe/tom/t4_connect.c
/freebsd-11-stable/sys/dev/cxgbe/tom/t4_cpl_io.c
/freebsd-11-stable/sys/dev/cxgbe/tom/t4_ddp.c
/freebsd-11-stable/sys/dev/cxgbe/tom/t4_listen.c
/freebsd-11-stable/sys/dev/cxgbe/tom/t4_tom.c
/freebsd-11-stable/sys/dev/cxgbe/tom/t4_tom.h
/freebsd-11-stable/sys/dev/cxgbe/tom/t4_tom_l2t.c
/freebsd-11-stable/sys/dev/cxgbe/tom/t4_tom_l2t.h
/freebsd-11-stable/sys/dev/cy/cy.c
/freebsd-11-stable/sys/dev/cy/cy_isa.c
/freebsd-11-stable/sys/dev/cy/cy_pci.c
/freebsd-11-stable/sys/dev/cy/cyreg.h
/freebsd-11-stable/sys/dev/cy/cyvar.h
/freebsd-11-stable/sys/dev/dc/dcphy.c
/freebsd-11-stable/sys/dev/dc/if_dc.c
/freebsd-11-stable/sys/dev/dc/if_dcreg.h
/freebsd-11-stable/sys/dev/dc/pnphy.c
/freebsd-11-stable/sys/dev/dcons/dcons.c
/freebsd-11-stable/sys/dev/dcons/dcons.h
/freebsd-11-stable/sys/dev/dcons/dcons_crom.c
/freebsd-11-stable/sys/dev/dcons/dcons_os.c
/freebsd-11-stable/sys/dev/dcons/dcons_os.h
/freebsd-11-stable/sys/dev/de/dc21040reg.h
/freebsd-11-stable/sys/dev/de/if_de.c
/freebsd-11-stable/sys/dev/de/if_devar.h
/freebsd-11-stable/sys/dev/dpms/dpms.c
/freebsd-11-stable/sys/dev/dpt/dpt.h
/freebsd-11-stable/sys/dev/dpt/dpt_pci.c
/freebsd-11-stable/sys/dev/dpt/dpt_scsi.c
/freebsd-11-stable/sys/dev/drm2/drm_gem.c
/freebsd-11-stable/sys/dev/drm2/drm_gem_names.c
/freebsd-11-stable/sys/dev/drm2/drm_gem_names.h
/freebsd-11-stable/sys/dev/drm2/drm_linux_list_sort.c
/freebsd-11-stable/sys/dev/drm2/i915/i915_gem.c
/freebsd-11-stable/sys/dev/e1000/e1000_80003es2lan.c
/freebsd-11-stable/sys/dev/e1000/e1000_80003es2lan.h
/freebsd-11-stable/sys/dev/e1000/e1000_82540.c
/freebsd-11-stable/sys/dev/e1000/e1000_82541.c
/freebsd-11-stable/sys/dev/e1000/e1000_82541.h
/freebsd-11-stable/sys/dev/e1000/e1000_82542.c
/freebsd-11-stable/sys/dev/e1000/e1000_82543.c
/freebsd-11-stable/sys/dev/e1000/e1000_82543.h
/freebsd-11-stable/sys/dev/e1000/e1000_82571.c
/freebsd-11-stable/sys/dev/e1000/e1000_82571.h
/freebsd-11-stable/sys/dev/e1000/e1000_82575.c
/freebsd-11-stable/sys/dev/e1000/e1000_82575.h
/freebsd-11-stable/sys/dev/e1000/e1000_api.c
/freebsd-11-stable/sys/dev/e1000/e1000_api.h
/freebsd-11-stable/sys/dev/e1000/e1000_defines.h
/freebsd-11-stable/sys/dev/e1000/e1000_hw.h
/freebsd-11-stable/sys/dev/e1000/e1000_i210.c
/freebsd-11-stable/sys/dev/e1000/e1000_i210.h
/freebsd-11-stable/sys/dev/e1000/e1000_ich8lan.c
/freebsd-11-stable/sys/dev/e1000/e1000_ich8lan.h
/freebsd-11-stable/sys/dev/e1000/e1000_mac.c
/freebsd-11-stable/sys/dev/e1000/e1000_mac.h
/freebsd-11-stable/sys/dev/e1000/e1000_manage.c
/freebsd-11-stable/sys/dev/e1000/e1000_manage.h
/freebsd-11-stable/sys/dev/e1000/e1000_mbx.c
/freebsd-11-stable/sys/dev/e1000/e1000_mbx.h
/freebsd-11-stable/sys/dev/e1000/e1000_nvm.c
/freebsd-11-stable/sys/dev/e1000/e1000_nvm.h
/freebsd-11-stable/sys/dev/e1000/e1000_osdep.c
/freebsd-11-stable/sys/dev/e1000/e1000_osdep.h
/freebsd-11-stable/sys/dev/e1000/e1000_phy.c
/freebsd-11-stable/sys/dev/e1000/e1000_phy.h
/freebsd-11-stable/sys/dev/e1000/e1000_regs.h
/freebsd-11-stable/sys/dev/e1000/e1000_vf.c
/freebsd-11-stable/sys/dev/e1000/e1000_vf.h
/freebsd-11-stable/sys/dev/e1000/if_em.c
/freebsd-11-stable/sys/dev/e1000/if_em.h
/freebsd-11-stable/sys/dev/ed/ax88x90reg.h
/freebsd-11-stable/sys/dev/ed/dl100xxreg.h
/freebsd-11-stable/sys/dev/ed/if_ed.c
/freebsd-11-stable/sys/dev/ed/if_ed_3c503.c
/freebsd-11-stable/sys/dev/ed/if_ed_hpp.c
/freebsd-11-stable/sys/dev/ed/if_ed_isa.c
/freebsd-11-stable/sys/dev/ed/if_ed_novell.c
/freebsd-11-stable/sys/dev/ed/if_ed_pccard.c
/freebsd-11-stable/sys/dev/ed/if_ed_pci.c
/freebsd-11-stable/sys/dev/ed/if_ed_rtl80x9.c
/freebsd-11-stable/sys/dev/ed/if_ed_sic.c
/freebsd-11-stable/sys/dev/ed/if_ed_wd80x3.c
/freebsd-11-stable/sys/dev/ed/if_edvar.h
/freebsd-11-stable/sys/dev/ed/rtl80x9reg.h
/freebsd-11-stable/sys/dev/ed/tc5299jreg.h
/freebsd-11-stable/sys/dev/ep/if_ep.c
/freebsd-11-stable/sys/dev/ep/if_ep_isa.c
/freebsd-11-stable/sys/dev/ep/if_ep_pccard.c
/freebsd-11-stable/sys/dev/ep/if_epreg.h
/freebsd-11-stable/sys/dev/ep/if_epvar.h
/freebsd-11-stable/sys/dev/esp/am53c974reg.h
/freebsd-11-stable/sys/dev/esp/esp_pci.c
/freebsd-11-stable/sys/dev/esp/esp_sbus.c
/freebsd-11-stable/sys/dev/esp/ncr53c9x.c
/freebsd-11-stable/sys/dev/esp/ncr53c9xreg.h
/freebsd-11-stable/sys/dev/esp/ncr53c9xvar.h
/freebsd-11-stable/sys/dev/et/if_et.c
/freebsd-11-stable/sys/dev/et/if_etreg.h
/freebsd-11-stable/sys/dev/et/if_etvar.h
/freebsd-11-stable/sys/dev/etherswitch/arswitch/arswitch.c
/freebsd-11-stable/sys/dev/etherswitch/arswitch/arswitch_7240.c
/freebsd-11-stable/sys/dev/etherswitch/arswitch/arswitch_7240.h
/freebsd-11-stable/sys/dev/etherswitch/arswitch/arswitch_8216.c
/freebsd-11-stable/sys/dev/etherswitch/arswitch/arswitch_8216.h
/freebsd-11-stable/sys/dev/etherswitch/arswitch/arswitch_8226.c
/freebsd-11-stable/sys/dev/etherswitch/arswitch/arswitch_8226.h
/freebsd-11-stable/sys/dev/etherswitch/arswitch/arswitch_8316.c
/freebsd-11-stable/sys/dev/etherswitch/arswitch/arswitch_8316.h
/freebsd-11-stable/sys/dev/etherswitch/arswitch/arswitch_8327.c
/freebsd-11-stable/sys/dev/etherswitch/arswitch/arswitch_8327.h
/freebsd-11-stable/sys/dev/etherswitch/arswitch/arswitch_9340.c
/freebsd-11-stable/sys/dev/etherswitch/arswitch/arswitch_9340.h
/freebsd-11-stable/sys/dev/etherswitch/arswitch/arswitch_phy.c
/freebsd-11-stable/sys/dev/etherswitch/arswitch/arswitch_phy.h
/freebsd-11-stable/sys/dev/etherswitch/arswitch/arswitch_reg.c
/freebsd-11-stable/sys/dev/etherswitch/arswitch/arswitch_reg.h
/freebsd-11-stable/sys/dev/etherswitch/arswitch/arswitch_vlans.c
/freebsd-11-stable/sys/dev/etherswitch/arswitch/arswitch_vlans.h
/freebsd-11-stable/sys/dev/etherswitch/arswitch/arswitchreg.h
/freebsd-11-stable/sys/dev/etherswitch/arswitch/arswitchvar.h
/freebsd-11-stable/sys/dev/etherswitch/etherswitch.c
/freebsd-11-stable/sys/dev/etherswitch/ip17x/ip175c.c
/freebsd-11-stable/sys/dev/etherswitch/ip17x/ip175c.h
/freebsd-11-stable/sys/dev/etherswitch/ip17x/ip175d.c
/freebsd-11-stable/sys/dev/etherswitch/ip17x/ip175d.h
/freebsd-11-stable/sys/dev/etherswitch/ip17x/ip17x.c
/freebsd-11-stable/sys/dev/etherswitch/ip17x/ip17x_phy.c
/freebsd-11-stable/sys/dev/etherswitch/ip17x/ip17x_phy.h
/freebsd-11-stable/sys/dev/etherswitch/ip17x/ip17x_reg.h
/freebsd-11-stable/sys/dev/etherswitch/ip17x/ip17x_var.h
/freebsd-11-stable/sys/dev/etherswitch/ip17x/ip17x_vlans.c
/freebsd-11-stable/sys/dev/etherswitch/ip17x/ip17x_vlans.h
/freebsd-11-stable/sys/dev/etherswitch/miiproxy.c
/freebsd-11-stable/sys/dev/etherswitch/miiproxy.h
/freebsd-11-stable/sys/dev/etherswitch/rtl8366/rtl8366rb.c
/freebsd-11-stable/sys/dev/etherswitch/rtl8366/rtl8366rbvar.h
/freebsd-11-stable/sys/dev/etherswitch/ukswitch/ukswitch.c
/freebsd-11-stable/sys/dev/ex/if_ex.c
/freebsd-11-stable/sys/dev/ex/if_ex_isa.c
/freebsd-11-stable/sys/dev/ex/if_ex_pccard.c
/freebsd-11-stable/sys/dev/ex/if_exreg.h
/freebsd-11-stable/sys/dev/ex/if_exvar.h
/freebsd-11-stable/sys/dev/exca/exca.c
/freebsd-11-stable/sys/dev/exca/excareg.h
/freebsd-11-stable/sys/dev/exca/excavar.h
/freebsd-11-stable/sys/dev/fb/creator.c
/freebsd-11-stable/sys/dev/fb/creatorreg.h
/freebsd-11-stable/sys/dev/fb/fb.c
/freebsd-11-stable/sys/dev/fb/fbd.c
/freebsd-11-stable/sys/dev/fb/fbreg.h
/freebsd-11-stable/sys/dev/fb/gallant12x22.c
/freebsd-11-stable/sys/dev/fb/machfb.c
/freebsd-11-stable/sys/dev/fb/s3_pci.c
/freebsd-11-stable/sys/dev/fb/splash.c
/freebsd-11-stable/sys/dev/fb/splash_bmp.c
/freebsd-11-stable/sys/dev/fb/splash_pcx.c
/freebsd-11-stable/sys/dev/fb/splash_txt.c
/freebsd-11-stable/sys/dev/fb/splashreg.h
/freebsd-11-stable/sys/dev/fb/vesa.c
/freebsd-11-stable/sys/dev/fb/vesa.h
/freebsd-11-stable/sys/dev/fb/vga.c
/freebsd-11-stable/sys/dev/fb/vgareg.h
/freebsd-11-stable/sys/dev/fdc/fdc.c
/freebsd-11-stable/sys/dev/fdc/fdc_acpi.c
/freebsd-11-stable/sys/dev/fdc/fdc_isa.c
/freebsd-11-stable/sys/dev/fdc/fdc_pccard.c
/freebsd-11-stable/sys/dev/fdc/fdcvar.h
/freebsd-11-stable/sys/dev/fdt/fdt_common.c
/freebsd-11-stable/sys/dev/fdt/fdt_common.h
/freebsd-11-stable/sys/dev/fdt/fdt_powerpc.c
/freebsd-11-stable/sys/dev/fdt/fdt_slicer.c
/freebsd-11-stable/sys/dev/fdt/simplebus.c
/freebsd-11-stable/sys/dev/ffec/if_ffec.c
/freebsd-11-stable/sys/dev/ffec/if_ffecreg.h
/freebsd-11-stable/sys/dev/filemon/filemon.c
/freebsd-11-stable/sys/dev/filemon/filemon.h
/freebsd-11-stable/sys/dev/filemon/filemon_wrapper.c
/freebsd-11-stable/sys/dev/firewire/firewire.c
/freebsd-11-stable/sys/dev/firewire/firewire.h
/freebsd-11-stable/sys/dev/firewire/firewire_phy.h
/freebsd-11-stable/sys/dev/firewire/firewirereg.h
/freebsd-11-stable/sys/dev/firewire/fwcrom.c
/freebsd-11-stable/sys/dev/firewire/fwdev.c
/freebsd-11-stable/sys/dev/firewire/fwdma.c
/freebsd-11-stable/sys/dev/firewire/fwdma.h
/freebsd-11-stable/sys/dev/firewire/fwmem.c
/freebsd-11-stable/sys/dev/firewire/fwmem.h
/freebsd-11-stable/sys/dev/firewire/fwohci.c
/freebsd-11-stable/sys/dev/firewire/fwohci_pci.c
/freebsd-11-stable/sys/dev/firewire/fwohcireg.h
/freebsd-11-stable/sys/dev/firewire/fwohcivar.h
/freebsd-11-stable/sys/dev/firewire/fwphyreg.h
/freebsd-11-stable/sys/dev/firewire/iec13213.h
/freebsd-11-stable/sys/dev/firewire/iec68113.h
/freebsd-11-stable/sys/dev/firewire/if_fwe.c
/freebsd-11-stable/sys/dev/firewire/if_fwevar.h
/freebsd-11-stable/sys/dev/firewire/if_fwip.c
/freebsd-11-stable/sys/dev/firewire/if_fwipvar.h
/freebsd-11-stable/sys/dev/firewire/sbp.c
/freebsd-11-stable/sys/dev/firewire/sbp.h
/freebsd-11-stable/sys/dev/firewire/sbp_targ.c
/freebsd-11-stable/sys/dev/flash/at45d.c
/freebsd-11-stable/sys/dev/flash/mx25l.c
/freebsd-11-stable/sys/dev/flash/mx25lreg.h
/freebsd-11-stable/sys/dev/fxp/if_fxp.c
/freebsd-11-stable/sys/dev/fxp/if_fxpreg.h
/freebsd-11-stable/sys/dev/fxp/if_fxpvar.h
/freebsd-11-stable/sys/dev/fxp/inphy.c
/freebsd-11-stable/sys/dev/fxp/inphyreg.h
/freebsd-11-stable/sys/dev/fxp/rcvbundl.h
/freebsd-11-stable/sys/dev/gem/if_gem.c
/freebsd-11-stable/sys/dev/gem/if_gem_pci.c
/freebsd-11-stable/sys/dev/gem/if_gem_sbus.c
/freebsd-11-stable/sys/dev/gem/if_gemreg.h
/freebsd-11-stable/sys/dev/gem/if_gemvar.h
/freebsd-11-stable/sys/dev/glxiic/glxiic.c
/freebsd-11-stable/sys/dev/glxsb/glxsb.h
/freebsd-11-stable/sys/dev/glxsb/glxsb_hash.c
/freebsd-11-stable/sys/dev/gpio/gpiobus.c
/freebsd-11-stable/sys/dev/gpio/gpiobusvar.h
/freebsd-11-stable/sys/dev/gpio/gpioc.c
/freebsd-11-stable/sys/dev/gpio/gpioiic.c
/freebsd-11-stable/sys/dev/gpio/gpioled.c
/freebsd-11-stable/sys/dev/gpio/ofw_gpiobus.c
/freebsd-11-stable/sys/dev/gxemul/cons/gxemul_cons.c
/freebsd-11-stable/sys/dev/gxemul/disk/gxemul_disk.c
/freebsd-11-stable/sys/dev/gxemul/disk/gxemul_diskreg.h
/freebsd-11-stable/sys/dev/gxemul/ether/gxreg.h
/freebsd-11-stable/sys/dev/gxemul/ether/if_gx.c
/freebsd-11-stable/sys/dev/hifn/hifn7751.c
/freebsd-11-stable/sys/dev/hifn/hifn7751reg.h
/freebsd-11-stable/sys/dev/hifn/hifn7751var.h
/freebsd-11-stable/sys/dev/hme/if_hme.c
/freebsd-11-stable/sys/dev/hme/if_hme_pci.c
/freebsd-11-stable/sys/dev/hme/if_hme_sbus.c
/freebsd-11-stable/sys/dev/hme/if_hmereg.h
/freebsd-11-stable/sys/dev/hme/if_hmevar.h
/freebsd-11-stable/sys/dev/hpt27xx/array.h
/freebsd-11-stable/sys/dev/hpt27xx/him.h
/freebsd-11-stable/sys/dev/hpt27xx/himfuncs.h
/freebsd-11-stable/sys/dev/hpt27xx/hpt27xx_config.c
/freebsd-11-stable/sys/dev/hpt27xx/hpt27xx_config.h
/freebsd-11-stable/sys/dev/hpt27xx/hpt27xx_os_bsd.c
/freebsd-11-stable/sys/dev/hpt27xx/hpt27xx_osm_bsd.c
/freebsd-11-stable/sys/dev/hpt27xx/hptintf.h
/freebsd-11-stable/sys/dev/hpt27xx/ldm.h
/freebsd-11-stable/sys/dev/hpt27xx/list.h
/freebsd-11-stable/sys/dev/hpt27xx/os_bsd.h
/freebsd-11-stable/sys/dev/hpt27xx/osm.h
/freebsd-11-stable/sys/dev/hpt27xx/wj.h
/freebsd-11-stable/sys/dev/hptiop/hptiop.c
/freebsd-11-stable/sys/dev/hptiop/hptiop.h
/freebsd-11-stable/sys/dev/hptmv/access601.h
/freebsd-11-stable/sys/dev/hptmv/array.h
/freebsd-11-stable/sys/dev/hptmv/atapi.h
/freebsd-11-stable/sys/dev/hptmv/command.h
/freebsd-11-stable/sys/dev/hptmv/entry.c
/freebsd-11-stable/sys/dev/hptmv/global.h
/freebsd-11-stable/sys/dev/hptmv/gui_lib.c
/freebsd-11-stable/sys/dev/hptmv/hptintf.h
/freebsd-11-stable/sys/dev/hptmv/hptproc.c
/freebsd-11-stable/sys/dev/hptmv/ioctl.c
/freebsd-11-stable/sys/dev/hptmv/mv.c
/freebsd-11-stable/sys/dev/hptmv/mvOs.h
/freebsd-11-stable/sys/dev/hptmv/mvSata.h
/freebsd-11-stable/sys/dev/hptmv/mvStorageDev.h
/freebsd-11-stable/sys/dev/hptmv/osbsd.h
/freebsd-11-stable/sys/dev/hptmv/raid5n.h
/freebsd-11-stable/sys/dev/hptmv/vdevice.h
/freebsd-11-stable/sys/dev/hptnr/array.h
/freebsd-11-stable/sys/dev/hptnr/him.h
/freebsd-11-stable/sys/dev/hptnr/himfuncs.h
/freebsd-11-stable/sys/dev/hptnr/hptintf.h
/freebsd-11-stable/sys/dev/hptnr/hptnr_config.c
/freebsd-11-stable/sys/dev/hptnr/hptnr_config.h
/freebsd-11-stable/sys/dev/hptnr/hptnr_os_bsd.c
/freebsd-11-stable/sys/dev/hptnr/hptnr_osm_bsd.c
/freebsd-11-stable/sys/dev/hptnr/ldm.h
/freebsd-11-stable/sys/dev/hptnr/list.h
/freebsd-11-stable/sys/dev/hptnr/os_bsd.h
/freebsd-11-stable/sys/dev/hptnr/osm.h
/freebsd-11-stable/sys/dev/hptnr/wj.h
/freebsd-11-stable/sys/dev/hptrr/array.h
/freebsd-11-stable/sys/dev/hptrr/him.h
/freebsd-11-stable/sys/dev/hptrr/himfuncs.h
/freebsd-11-stable/sys/dev/hptrr/hptintf.h
/freebsd-11-stable/sys/dev/hptrr/hptrr_config.c
/freebsd-11-stable/sys/dev/hptrr/hptrr_config.h
/freebsd-11-stable/sys/dev/hptrr/hptrr_os_bsd.c
/freebsd-11-stable/sys/dev/hptrr/hptrr_osm_bsd.c
/freebsd-11-stable/sys/dev/hptrr/ldm.h
/freebsd-11-stable/sys/dev/hptrr/list.h
/freebsd-11-stable/sys/dev/hptrr/os_bsd.h
/freebsd-11-stable/sys/dev/hptrr/osm.h
/freebsd-11-stable/sys/dev/hwpmc/hwpmc_amd.c
/freebsd-11-stable/sys/dev/hwpmc/hwpmc_amd.h
/freebsd-11-stable/sys/dev/hwpmc/hwpmc_arm.c
/freebsd-11-stable/sys/dev/hwpmc/hwpmc_core.c
/freebsd-11-stable/sys/dev/hwpmc/hwpmc_core.h
/freebsd-11-stable/sys/dev/hwpmc/hwpmc_intel.c
/freebsd-11-stable/sys/dev/hwpmc/hwpmc_logging.c
/freebsd-11-stable/sys/dev/hwpmc/hwpmc_mips.c
/freebsd-11-stable/sys/dev/hwpmc/hwpmc_mips24k.c
/freebsd-11-stable/sys/dev/hwpmc/hwpmc_mod.c
/freebsd-11-stable/sys/dev/hwpmc/hwpmc_mpc7xxx.c
/freebsd-11-stable/sys/dev/hwpmc/hwpmc_octeon.c
/freebsd-11-stable/sys/dev/hwpmc/hwpmc_pentium.c
/freebsd-11-stable/sys/dev/hwpmc/hwpmc_pentium.h
/freebsd-11-stable/sys/dev/hwpmc/hwpmc_piv.c
/freebsd-11-stable/sys/dev/hwpmc/hwpmc_piv.h
/freebsd-11-stable/sys/dev/hwpmc/hwpmc_powerpc.c
/freebsd-11-stable/sys/dev/hwpmc/hwpmc_powerpc.h
/freebsd-11-stable/sys/dev/hwpmc/hwpmc_ppc970.c
/freebsd-11-stable/sys/dev/hwpmc/hwpmc_ppro.c
/freebsd-11-stable/sys/dev/hwpmc/hwpmc_ppro.h
/freebsd-11-stable/sys/dev/hwpmc/hwpmc_soft.c
/freebsd-11-stable/sys/dev/hwpmc/hwpmc_soft.h
/freebsd-11-stable/sys/dev/hwpmc/hwpmc_sparc64.c
/freebsd-11-stable/sys/dev/hwpmc/hwpmc_tsc.c
/freebsd-11-stable/sys/dev/hwpmc/hwpmc_tsc.h
/freebsd-11-stable/sys/dev/hwpmc/hwpmc_uncore.c
/freebsd-11-stable/sys/dev/hwpmc/hwpmc_uncore.h
/freebsd-11-stable/sys/dev/hwpmc/hwpmc_x86.c
/freebsd-11-stable/sys/dev/hwpmc/hwpmc_xscale.c
/freebsd-11-stable/sys/dev/hwpmc/hwpmc_xscale.h
/freebsd-11-stable/sys/dev/hwpmc/pmc_events.h
/freebsd-11-stable/sys/dev/hyperv/include/hyperv.h
/freebsd-11-stable/sys/dev/hyperv/storvsc/hv_storvsc_drv_freebsd.c
/freebsd-11-stable/sys/dev/hyperv/storvsc/hv_vstorage.h
/freebsd-11-stable/sys/dev/hyperv/utilities/hv_kvp.h
/freebsd-11-stable/sys/dev/ic/cd1400.h
/freebsd-11-stable/sys/dev/ic/cd180.h
/freebsd-11-stable/sys/dev/ic/esp.h
/freebsd-11-stable/sys/dev/ic/i8253reg.h
/freebsd-11-stable/sys/dev/ic/i82586.h
/freebsd-11-stable/sys/dev/ic/i8259.h
/freebsd-11-stable/sys/dev/ic/nec765.h
/freebsd-11-stable/sys/dev/ic/ns16550.h
/freebsd-11-stable/sys/dev/ic/quicc.h
/freebsd-11-stable/sys/dev/ic/sab82532.h
/freebsd-11-stable/sys/dev/ic/via6522reg.h
/freebsd-11-stable/sys/dev/ic/z8530.h
/freebsd-11-stable/sys/dev/ichwd/ichwd.c
/freebsd-11-stable/sys/dev/ichwd/ichwd.h
/freebsd-11-stable/sys/dev/ida/ida.c
/freebsd-11-stable/sys/dev/ida/ida_disk.c
/freebsd-11-stable/sys/dev/ida/ida_pci.c
/freebsd-11-stable/sys/dev/ida/idareg.h
/freebsd-11-stable/sys/dev/ida/idavar.h
/freebsd-11-stable/sys/dev/if_ndis/if_ndis.c
/freebsd-11-stable/sys/dev/if_ndis/if_ndis_pccard.c
/freebsd-11-stable/sys/dev/if_ndis/if_ndis_pci.c
/freebsd-11-stable/sys/dev/if_ndis/if_ndis_usb.c
/freebsd-11-stable/sys/dev/if_ndis/if_ndisvar.h
/freebsd-11-stable/sys/dev/iicbus/ad7417.c
/freebsd-11-stable/sys/dev/iicbus/ad7418.c
/freebsd-11-stable/sys/dev/iicbus/adt746x.c
/freebsd-11-stable/sys/dev/iicbus/ds1631.c
/freebsd-11-stable/sys/dev/iicbus/ds1672.c
/freebsd-11-stable/sys/dev/iicbus/ds1775.c
/freebsd-11-stable/sys/dev/iicbus/icee.c
/freebsd-11-stable/sys/dev/iicbus/if_ic.c
/freebsd-11-stable/sys/dev/iicbus/iic.c
/freebsd-11-stable/sys/dev/iicbus/iic.h
/freebsd-11-stable/sys/dev/iicbus/iicbb.c
/freebsd-11-stable/sys/dev/iicbus/iicbus.c
/freebsd-11-stable/sys/dev/iicbus/iicbus.h
/freebsd-11-stable/sys/dev/iicbus/iicoc.c
/freebsd-11-stable/sys/dev/iicbus/iicoc.h
/freebsd-11-stable/sys/dev/iicbus/iiconf.c
/freebsd-11-stable/sys/dev/iicbus/iiconf.h
/freebsd-11-stable/sys/dev/iicbus/iicsmb.c
/freebsd-11-stable/sys/dev/iicbus/max6690.c
/freebsd-11-stable/sys/dev/iicbus/s35390a.c
/freebsd-11-stable/sys/dev/iir/iir.c
/freebsd-11-stable/sys/dev/iir/iir.h
/freebsd-11-stable/sys/dev/iir/iir_ctrl.c
/freebsd-11-stable/sys/dev/iir/iir_pci.c
/freebsd-11-stable/sys/dev/io/iodev.c
/freebsd-11-stable/sys/dev/io/iodev.h
/freebsd-11-stable/sys/dev/ipmi/ipmi.c
/freebsd-11-stable/sys/dev/ipmi/ipmi_acpi.c
/freebsd-11-stable/sys/dev/ipmi/ipmi_isa.c
/freebsd-11-stable/sys/dev/ipmi/ipmi_kcs.c
/freebsd-11-stable/sys/dev/ipmi/ipmi_linux.c
/freebsd-11-stable/sys/dev/ipmi/ipmi_pci.c
/freebsd-11-stable/sys/dev/ipmi/ipmi_smbios.c
/freebsd-11-stable/sys/dev/ipmi/ipmi_smbus.c
/freebsd-11-stable/sys/dev/ipmi/ipmi_smic.c
/freebsd-11-stable/sys/dev/ipmi/ipmi_ssif.c
/freebsd-11-stable/sys/dev/ipmi/ipmivars.h
/freebsd-11-stable/sys/dev/ips/ips.c
/freebsd-11-stable/sys/dev/ips/ips.h
/freebsd-11-stable/sys/dev/ips/ips_commands.c
/freebsd-11-stable/sys/dev/ips/ips_disk.c
/freebsd-11-stable/sys/dev/ips/ips_disk.h
/freebsd-11-stable/sys/dev/ips/ips_ioctl.c
/freebsd-11-stable/sys/dev/ips/ips_ioctl.h
/freebsd-11-stable/sys/dev/ips/ips_pci.c
/freebsd-11-stable/sys/dev/ips/ipsreg.h
/freebsd-11-stable/sys/dev/ipw/if_ipw.c
/freebsd-11-stable/sys/dev/ipw/if_ipwreg.h
/freebsd-11-stable/sys/dev/ipw/if_ipwvar.h
/freebsd-11-stable/sys/dev/isci/environment.h
/freebsd-11-stable/sys/dev/isci/isci.c
/freebsd-11-stable/sys/dev/isci/isci.h
/freebsd-11-stable/sys/dev/isci/isci_controller.c
/freebsd-11-stable/sys/dev/isci/isci_domain.c
/freebsd-11-stable/sys/dev/isci/isci_interrupt.c
/freebsd-11-stable/sys/dev/isci/isci_io_request.c
/freebsd-11-stable/sys/dev/isci/isci_logger.c
/freebsd-11-stable/sys/dev/isci/isci_oem_parameters.c
/freebsd-11-stable/sys/dev/isci/isci_remote_device.c
/freebsd-11-stable/sys/dev/isci/isci_sysctl.c
/freebsd-11-stable/sys/dev/isci/isci_task_request.c
/freebsd-11-stable/sys/dev/isci/isci_timer.c
/freebsd-11-stable/sys/dev/isci/scil/intel_ata.h
/freebsd-11-stable/sys/dev/isci/scil/intel_pci.h
/freebsd-11-stable/sys/dev/isci/scil/intel_sas.h
/freebsd-11-stable/sys/dev/isci/scil/intel_sat.h
/freebsd-11-stable/sys/dev/isci/scil/intel_sata.h
/freebsd-11-stable/sys/dev/isci/scil/intel_scsi.h
/freebsd-11-stable/sys/dev/isci/scil/sati.c
/freebsd-11-stable/sys/dev/isci/scil/sati.h
/freebsd-11-stable/sys/dev/isci/scil/sati_abort_task_set.c
/freebsd-11-stable/sys/dev/isci/scil/sati_abort_task_set.h
/freebsd-11-stable/sys/dev/isci/scil/sati_atapi.c
/freebsd-11-stable/sys/dev/isci/scil/sati_atapi.h
/freebsd-11-stable/sys/dev/isci/scil/sati_callbacks.h
/freebsd-11-stable/sys/dev/isci/scil/sati_design.h
/freebsd-11-stable/sys/dev/isci/scil/sati_device.c
/freebsd-11-stable/sys/dev/isci/scil/sati_device.h
/freebsd-11-stable/sys/dev/isci/scil/sati_inquiry.c
/freebsd-11-stable/sys/dev/isci/scil/sati_inquiry.h
/freebsd-11-stable/sys/dev/isci/scil/sati_log_sense.c
/freebsd-11-stable/sys/dev/isci/scil/sati_log_sense.h
/freebsd-11-stable/sys/dev/isci/scil/sati_lun_reset.c
/freebsd-11-stable/sys/dev/isci/scil/sati_lun_reset.h
/freebsd-11-stable/sys/dev/isci/scil/sati_mode_pages.c
/freebsd-11-stable/sys/dev/isci/scil/sati_mode_pages.h
/freebsd-11-stable/sys/dev/isci/scil/sati_mode_select.c
/freebsd-11-stable/sys/dev/isci/scil/sati_mode_select.h
/freebsd-11-stable/sys/dev/isci/scil/sati_mode_sense.c
/freebsd-11-stable/sys/dev/isci/scil/sati_mode_sense.h
/freebsd-11-stable/sys/dev/isci/scil/sati_mode_sense_10.c
/freebsd-11-stable/sys/dev/isci/scil/sati_mode_sense_10.h
/freebsd-11-stable/sys/dev/isci/scil/sati_mode_sense_6.c
/freebsd-11-stable/sys/dev/isci/scil/sati_mode_sense_6.h
/freebsd-11-stable/sys/dev/isci/scil/sati_move.c
/freebsd-11-stable/sys/dev/isci/scil/sati_move.h
/freebsd-11-stable/sys/dev/isci/scil/sati_passthrough.c
/freebsd-11-stable/sys/dev/isci/scil/sati_passthrough.h
/freebsd-11-stable/sys/dev/isci/scil/sati_read.c
/freebsd-11-stable/sys/dev/isci/scil/sati_read.h
/freebsd-11-stable/sys/dev/isci/scil/sati_read_buffer.c
/freebsd-11-stable/sys/dev/isci/scil/sati_read_buffer.h
/freebsd-11-stable/sys/dev/isci/scil/sati_read_capacity.c
/freebsd-11-stable/sys/dev/isci/scil/sati_read_capacity.h
/freebsd-11-stable/sys/dev/isci/scil/sati_reassign_blocks.c
/freebsd-11-stable/sys/dev/isci/scil/sati_reassign_blocks.h
/freebsd-11-stable/sys/dev/isci/scil/sati_report_luns.c
/freebsd-11-stable/sys/dev/isci/scil/sati_report_luns.h
/freebsd-11-stable/sys/dev/isci/scil/sati_request_sense.c
/freebsd-11-stable/sys/dev/isci/scil/sati_request_sense.h
/freebsd-11-stable/sys/dev/isci/scil/sati_start_stop_unit.c
/freebsd-11-stable/sys/dev/isci/scil/sati_start_stop_unit.h
/freebsd-11-stable/sys/dev/isci/scil/sati_synchronize_cache.c
/freebsd-11-stable/sys/dev/isci/scil/sati_synchronize_cache.h
/freebsd-11-stable/sys/dev/isci/scil/sati_test_unit_ready.c
/freebsd-11-stable/sys/dev/isci/scil/sati_test_unit_ready.h
/freebsd-11-stable/sys/dev/isci/scil/sati_translator_sequence.h
/freebsd-11-stable/sys/dev/isci/scil/sati_types.h
/freebsd-11-stable/sys/dev/isci/scil/sati_unmap.c
/freebsd-11-stable/sys/dev/isci/scil/sati_unmap.h
/freebsd-11-stable/sys/dev/isci/scil/sati_util.c
/freebsd-11-stable/sys/dev/isci/scil/sati_util.h
/freebsd-11-stable/sys/dev/isci/scil/sati_verify.c
/freebsd-11-stable/sys/dev/isci/scil/sati_verify.h
/freebsd-11-stable/sys/dev/isci/scil/sati_write.c
/freebsd-11-stable/sys/dev/isci/scil/sati_write.h
/freebsd-11-stable/sys/dev/isci/scil/sati_write_and_verify.c
/freebsd-11-stable/sys/dev/isci/scil/sati_write_and_verify.h
/freebsd-11-stable/sys/dev/isci/scil/sati_write_buffer.c
/freebsd-11-stable/sys/dev/isci/scil/sati_write_buffer.h
/freebsd-11-stable/sys/dev/isci/scil/sati_write_long.c
/freebsd-11-stable/sys/dev/isci/scil/sati_write_long.h
/freebsd-11-stable/sys/dev/isci/scil/sci_abstract_list.c
/freebsd-11-stable/sys/dev/isci/scil/sci_abstract_list.h
/freebsd-11-stable/sys/dev/isci/scil/sci_base_controller.c
/freebsd-11-stable/sys/dev/isci/scil/sci_base_controller.h
/freebsd-11-stable/sys/dev/isci/scil/sci_base_domain.c
/freebsd-11-stable/sys/dev/isci/scil/sci_base_domain.h
/freebsd-11-stable/sys/dev/isci/scil/sci_base_iterator.c
/freebsd-11-stable/sys/dev/isci/scil/sci_base_iterator.h
/freebsd-11-stable/sys/dev/isci/scil/sci_base_library.c
/freebsd-11-stable/sys/dev/isci/scil/sci_base_library.h
/freebsd-11-stable/sys/dev/isci/scil/sci_base_logger.c
/freebsd-11-stable/sys/dev/isci/scil/sci_base_logger.h
/freebsd-11-stable/sys/dev/isci/scil/sci_base_memory_descriptor_list.c
/freebsd-11-stable/sys/dev/isci/scil/sci_base_memory_descriptor_list.h
/freebsd-11-stable/sys/dev/isci/scil/sci_base_memory_descriptor_list_decorator.c
/freebsd-11-stable/sys/dev/isci/scil/sci_base_object.c
/freebsd-11-stable/sys/dev/isci/scil/sci_base_object.h
/freebsd-11-stable/sys/dev/isci/scil/sci_base_observer.c
/freebsd-11-stable/sys/dev/isci/scil/sci_base_observer.h
/freebsd-11-stable/sys/dev/isci/scil/sci_base_phy.c
/freebsd-11-stable/sys/dev/isci/scil/sci_base_phy.h
/freebsd-11-stable/sys/dev/isci/scil/sci_base_port.c
/freebsd-11-stable/sys/dev/isci/scil/sci_base_port.h
/freebsd-11-stable/sys/dev/isci/scil/sci_base_remote_device.c
/freebsd-11-stable/sys/dev/isci/scil/sci_base_remote_device.h
/freebsd-11-stable/sys/dev/isci/scil/sci_base_request.c
/freebsd-11-stable/sys/dev/isci/scil/sci_base_request.h
/freebsd-11-stable/sys/dev/isci/scil/sci_base_state.h
/freebsd-11-stable/sys/dev/isci/scil/sci_base_state_machine.c
/freebsd-11-stable/sys/dev/isci/scil/sci_base_state_machine.h
/freebsd-11-stable/sys/dev/isci/scil/sci_base_state_machine_logger.c
/freebsd-11-stable/sys/dev/isci/scil/sci_base_state_machine_logger.h
/freebsd-11-stable/sys/dev/isci/scil/sci_base_state_machine_observer.c
/freebsd-11-stable/sys/dev/isci/scil/sci_base_state_machine_observer.h
/freebsd-11-stable/sys/dev/isci/scil/sci_base_subject.c
/freebsd-11-stable/sys/dev/isci/scil/sci_base_subject.h
/freebsd-11-stable/sys/dev/isci/scil/sci_controller.h
/freebsd-11-stable/sys/dev/isci/scil/sci_controller_constants.h
/freebsd-11-stable/sys/dev/isci/scil/sci_fast_list.h
/freebsd-11-stable/sys/dev/isci/scil/sci_iterator.h
/freebsd-11-stable/sys/dev/isci/scil/sci_library.h
/freebsd-11-stable/sys/dev/isci/scil/sci_logger.h
/freebsd-11-stable/sys/dev/isci/scil/sci_memory_descriptor_list.h
/freebsd-11-stable/sys/dev/isci/scil/sci_memory_descriptor_list_decorator.h
/freebsd-11-stable/sys/dev/isci/scil/sci_object.h
/freebsd-11-stable/sys/dev/isci/scil/sci_overview.h
/freebsd-11-stable/sys/dev/isci/scil/sci_pool.h
/freebsd-11-stable/sys/dev/isci/scil/sci_simple_list.h
/freebsd-11-stable/sys/dev/isci/scil/sci_status.h
/freebsd-11-stable/sys/dev/isci/scil/sci_types.h
/freebsd-11-stable/sys/dev/isci/scil/sci_util.c
/freebsd-11-stable/sys/dev/isci/scil/sci_util.h
/freebsd-11-stable/sys/dev/isci/scil/scic_config_parameters.h
/freebsd-11-stable/sys/dev/isci/scil/scic_controller.h
/freebsd-11-stable/sys/dev/isci/scil/scic_io_request.h
/freebsd-11-stable/sys/dev/isci/scil/scic_library.h
/freebsd-11-stable/sys/dev/isci/scil/scic_logger.h
/freebsd-11-stable/sys/dev/isci/scil/scic_overview.h
/freebsd-11-stable/sys/dev/isci/scil/scic_phy.h
/freebsd-11-stable/sys/dev/isci/scil/scic_port.h
/freebsd-11-stable/sys/dev/isci/scil/scic_remote_device.h
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_controller.c
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_controller.h
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_controller_registers.h
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_library.c
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_library.h
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_logger.h
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_pci.c
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_pci.h
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_phy.c
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_phy.h
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_phy_registers.h
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_port.c
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_port.h
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_port_configuration_agent.c
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_port_configuration_agent.h
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_port_registers.h
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_remote_device.c
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_remote_device.h
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_remote_node_context.c
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_remote_node_context.h
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_remote_node_table.c
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_remote_node_table.h
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_request.c
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_request.h
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_sgpio.c
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_smp_remote_device.c
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_smp_request.c
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_smp_request.h
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_ssp_request.c
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_stp_packet_request.c
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_stp_packet_request.h
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_stp_pio_request.h
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_stp_remote_device.c
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_stp_request.c
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_stp_request.h
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_unsolicited_frame_control.c
/freebsd-11-stable/sys/dev/isci/scil/scic_sds_unsolicited_frame_control.h
/freebsd-11-stable/sys/dev/isci/scil/scic_sgpio.h
/freebsd-11-stable/sys/dev/isci/scil/scic_task_request.h
/freebsd-11-stable/sys/dev/isci/scil/scic_user_callback.h
/freebsd-11-stable/sys/dev/isci/scil/scif_config_parameters.h
/freebsd-11-stable/sys/dev/isci/scil/scif_controller.h
/freebsd-11-stable/sys/dev/isci/scil/scif_domain.h
/freebsd-11-stable/sys/dev/isci/scil/scif_io_request.h
/freebsd-11-stable/sys/dev/isci/scil/scif_library.h
/freebsd-11-stable/sys/dev/isci/scil/scif_logger.h
/freebsd-11-stable/sys/dev/isci/scil/scif_overview.h
/freebsd-11-stable/sys/dev/isci/scil/scif_remote_device.h
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_constants.h
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_controller.c
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_controller.h
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_controller_state_handlers.c
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_controller_states.c
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_design.h
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_domain.c
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_domain.h
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_domain_state_handlers.c
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_domain_states.c
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_high_priority_request_queue.c
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_high_priority_request_queue.h
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_internal_io_request.c
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_internal_io_request.h
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_io_request.c
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_io_request.h
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_io_request_state_handlers.c
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_io_request_states.c
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_library.c
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_library.h
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_logger.h
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_remote_device.c
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_remote_device.h
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_remote_device_ready_substate_handlers.c
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_remote_device_ready_substates.c
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_remote_device_starting_substate_handlers.c
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_remote_device_starting_substates.c
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_remote_device_state_handlers.c
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_remote_device_states.c
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_request.c
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_request.h
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_sati_binding.h
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_smp_activity_clear_affiliation.c
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_smp_io_request.c
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_smp_io_request.h
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_smp_phy.c
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_smp_phy.h
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_smp_remote_device.c
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_smp_remote_device.h
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_stp_io_request.c
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_stp_io_request.h
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_stp_remote_device.c
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_stp_remote_device.h
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_stp_task_request.c
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_stp_task_request.h
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_task_request.c
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_task_request.h
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_task_request_state_handlers.c
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_task_request_states.c
/freebsd-11-stable/sys/dev/isci/scil/scif_sas_timer.c
/freebsd-11-stable/sys/dev/isci/scil/scif_task_request.h
/freebsd-11-stable/sys/dev/isci/scil/scif_user_callback.h
/freebsd-11-stable/sys/dev/isci/scil/scu_bios_definitions.h
/freebsd-11-stable/sys/dev/isci/scil/scu_completion_codes.h
/freebsd-11-stable/sys/dev/isci/scil/scu_constants.h
/freebsd-11-stable/sys/dev/isci/scil/scu_event_codes.h
/freebsd-11-stable/sys/dev/isci/scil/scu_registers.h
/freebsd-11-stable/sys/dev/isci/scil/scu_remote_node_context.h
/freebsd-11-stable/sys/dev/isci/scil/scu_task_context.h
/freebsd-11-stable/sys/dev/isci/scil/scu_unsolicited_frame.h
/freebsd-11-stable/sys/dev/isci/scil/scu_viit_data.h
/freebsd-11-stable/sys/dev/isci/types.h
/freebsd-11-stable/sys/dev/iscsi/icl.c
/freebsd-11-stable/sys/dev/iscsi/icl.h
/freebsd-11-stable/sys/dev/iscsi/iscsi.c
/freebsd-11-stable/sys/dev/iscsi/iscsi.h
/freebsd-11-stable/sys/dev/iscsi/iscsi_ioctl.h
/freebsd-11-stable/sys/dev/iscsi/iscsi_proto.h
/freebsd-11-stable/sys/dev/iscsi_initiator/isc_cam.c
/freebsd-11-stable/sys/dev/iscsi_initiator/isc_sm.c
/freebsd-11-stable/sys/dev/iscsi_initiator/isc_soc.c
/freebsd-11-stable/sys/dev/iscsi_initiator/isc_subr.c
/freebsd-11-stable/sys/dev/iscsi_initiator/iscsi.c
/freebsd-11-stable/sys/dev/iscsi_initiator/iscsi.h
/freebsd-11-stable/sys/dev/iscsi_initiator/iscsi_subr.c
/freebsd-11-stable/sys/dev/iscsi_initiator/iscsivar.h
/freebsd-11-stable/sys/dev/isp/isp_freebsd.c
/freebsd-11-stable/sys/dev/isp/isp_freebsd.h
/freebsd-11-stable/sys/dev/isp/isp_ioctl.h
/freebsd-11-stable/sys/dev/isp/isp_library.c
/freebsd-11-stable/sys/dev/isp/isp_library.h
/freebsd-11-stable/sys/dev/isp/isp_sbus.c
/freebsd-11-stable/sys/dev/isp/isp_stds.h
/freebsd-11-stable/sys/dev/isp/isp_target.c
/freebsd-11-stable/sys/dev/isp/isp_target.h
/freebsd-11-stable/sys/dev/isp/ispreg.h
/freebsd-11-stable/sys/dev/ispfw/asm_1000.h
/freebsd-11-stable/sys/dev/ispfw/asm_1040.h
/freebsd-11-stable/sys/dev/ispfw/asm_1080.h
/freebsd-11-stable/sys/dev/ispfw/asm_12160.h
/freebsd-11-stable/sys/dev/ispfw/asm_2100.h
/freebsd-11-stable/sys/dev/ispfw/asm_2200.h
/freebsd-11-stable/sys/dev/ispfw/asm_2300.h
/freebsd-11-stable/sys/dev/ispfw/asm_2322.h
/freebsd-11-stable/sys/dev/ispfw/asm_2400.h
/freebsd-11-stable/sys/dev/ispfw/asm_2500.h
/freebsd-11-stable/sys/dev/ispfw/ispfw.c
/freebsd-11-stable/sys/dev/iwi/if_iwi.c
/freebsd-11-stable/sys/dev/iwi/if_iwireg.h
/freebsd-11-stable/sys/dev/iwi/if_iwivar.h
/freebsd-11-stable/sys/dev/ixgb/if_ixgb.c
/freebsd-11-stable/sys/dev/ixgb/if_ixgb.h
/freebsd-11-stable/sys/dev/ixgb/if_ixgb_osdep.h
/freebsd-11-stable/sys/dev/ixgb/ixgb_ee.c
/freebsd-11-stable/sys/dev/ixgb/ixgb_ee.h
/freebsd-11-stable/sys/dev/ixgb/ixgb_hw.c
/freebsd-11-stable/sys/dev/ixgb/ixgb_hw.h
/freebsd-11-stable/sys/dev/ixgb/ixgb_ids.h
/freebsd-11-stable/sys/dev/ixgbe/ixgbe.h
/freebsd-11-stable/sys/dev/ixgbe/ixgbe_82598.c
/freebsd-11-stable/sys/dev/ixgbe/ixgbe_82598.h
/freebsd-11-stable/sys/dev/ixgbe/ixgbe_82599.c
/freebsd-11-stable/sys/dev/ixgbe/ixgbe_82599.h
/freebsd-11-stable/sys/dev/ixgbe/ixgbe_api.c
/freebsd-11-stable/sys/dev/ixgbe/ixgbe_api.h
/freebsd-11-stable/sys/dev/ixgbe/ixgbe_common.c
/freebsd-11-stable/sys/dev/ixgbe/ixgbe_common.h
/freebsd-11-stable/sys/dev/ixgbe/ixgbe_dcb.c
/freebsd-11-stable/sys/dev/ixgbe/ixgbe_dcb.h
/freebsd-11-stable/sys/dev/ixgbe/ixgbe_dcb_82598.c
/freebsd-11-stable/sys/dev/ixgbe/ixgbe_dcb_82598.h
/freebsd-11-stable/sys/dev/ixgbe/ixgbe_dcb_82599.c
/freebsd-11-stable/sys/dev/ixgbe/ixgbe_dcb_82599.h
/freebsd-11-stable/sys/dev/ixgbe/ixgbe_mbx.c
/freebsd-11-stable/sys/dev/ixgbe/ixgbe_mbx.h
/freebsd-11-stable/sys/dev/ixgbe/ixgbe_osdep.h
/freebsd-11-stable/sys/dev/ixgbe/ixgbe_phy.c
/freebsd-11-stable/sys/dev/ixgbe/ixgbe_phy.h
/freebsd-11-stable/sys/dev/ixgbe/ixgbe_type.h
/freebsd-11-stable/sys/dev/ixgbe/ixgbe_vf.c
/freebsd-11-stable/sys/dev/ixgbe/ixgbe_vf.h
/freebsd-11-stable/sys/dev/ixgbe/ixgbe_x540.c
/freebsd-11-stable/sys/dev/ixgbe/ixgbe_x540.h
/freebsd-11-stable/sys/dev/jme/if_jme.c
/freebsd-11-stable/sys/dev/jme/if_jmereg.h
/freebsd-11-stable/sys/dev/jme/if_jmevar.h
/freebsd-11-stable/sys/dev/joy/joy.c
/freebsd-11-stable/sys/dev/joy/joy_isa.c
/freebsd-11-stable/sys/dev/joy/joyvar.h
/freebsd-11-stable/sys/dev/kbd/kbd.c
/freebsd-11-stable/sys/dev/kbd/kbdreg.h
/freebsd-11-stable/sys/dev/kbd/kbdtables.h
/freebsd-11-stable/sys/dev/kbdmux/kbdmux.c
/freebsd-11-stable/sys/dev/ksyms/ksyms.c
/freebsd-11-stable/sys/dev/le/am7990.c
/freebsd-11-stable/sys/dev/le/am79900.c
/freebsd-11-stable/sys/dev/le/am79900reg.h
/freebsd-11-stable/sys/dev/le/am79900var.h
/freebsd-11-stable/sys/dev/le/am7990reg.h
/freebsd-11-stable/sys/dev/le/am7990var.h
/freebsd-11-stable/sys/dev/le/if_le_isa.c
/freebsd-11-stable/sys/dev/le/if_le_lebuffer.c
/freebsd-11-stable/sys/dev/le/if_le_ledma.c
/freebsd-11-stable/sys/dev/le/if_le_pci.c
/freebsd-11-stable/sys/dev/le/lance.c
/freebsd-11-stable/sys/dev/le/lancereg.h
/freebsd-11-stable/sys/dev/le/lancevar.h
/freebsd-11-stable/sys/dev/le/lebuffer_sbus.c
/freebsd-11-stable/sys/dev/lge/if_lge.c
/freebsd-11-stable/sys/dev/lge/if_lgereg.h
/freebsd-11-stable/sys/dev/lmc/if_lmc.c
/freebsd-11-stable/sys/dev/lmc/if_lmc.h
/freebsd-11-stable/sys/dev/malo/if_malo.c
/freebsd-11-stable/sys/dev/malo/if_malo.h
/freebsd-11-stable/sys/dev/malo/if_malo_pci.c
/freebsd-11-stable/sys/dev/malo/if_malohal.c
/freebsd-11-stable/sys/dev/malo/if_malohal.h
/freebsd-11-stable/sys/dev/malo/if_maloioctl.h
/freebsd-11-stable/sys/dev/mc146818/mc146818.c
/freebsd-11-stable/sys/dev/mc146818/mc146818var.h
/freebsd-11-stable/sys/dev/md/md.c
/freebsd-11-stable/sys/dev/mem/memdev.c
/freebsd-11-stable/sys/dev/mem/memutil.c
/freebsd-11-stable/sys/dev/mfi/mfi.c
/freebsd-11-stable/sys/dev/mfi/mfi_cam.c
/freebsd-11-stable/sys/dev/mfi/mfi_debug.c
/freebsd-11-stable/sys/dev/mfi/mfi_disk.c
/freebsd-11-stable/sys/dev/mfi/mfi_ioctl.h
/freebsd-11-stable/sys/dev/mfi/mfi_linux.c
/freebsd-11-stable/sys/dev/mfi/mfi_pci.c
/freebsd-11-stable/sys/dev/mfi/mfi_syspd.c
/freebsd-11-stable/sys/dev/mfi/mfi_tbolt.c
/freebsd-11-stable/sys/dev/mfi/mfireg.h
/freebsd-11-stable/sys/dev/mfi/mfivar.h
/freebsd-11-stable/sys/dev/mge/if_mge.c
/freebsd-11-stable/sys/dev/mge/if_mgevar.h
/freebsd-11-stable/sys/dev/mii/acphy.c
/freebsd-11-stable/sys/dev/mii/acphyreg.h
/freebsd-11-stable/sys/dev/mii/amphy.c
/freebsd-11-stable/sys/dev/mii/amphyreg.h
/freebsd-11-stable/sys/dev/mii/atphy.c
/freebsd-11-stable/sys/dev/mii/atphyreg.h
/freebsd-11-stable/sys/dev/mii/axphy.c
/freebsd-11-stable/sys/dev/mii/bmtphy.c
/freebsd-11-stable/sys/dev/mii/bmtphyreg.h
/freebsd-11-stable/sys/dev/mii/brgphy.c
/freebsd-11-stable/sys/dev/mii/brgphyreg.h
/freebsd-11-stable/sys/dev/mii/ciphy.c
/freebsd-11-stable/sys/dev/mii/ciphyreg.h
/freebsd-11-stable/sys/dev/mii/e1000phy.c
/freebsd-11-stable/sys/dev/mii/e1000phyreg.h
/freebsd-11-stable/sys/dev/mii/gentbi.c
/freebsd-11-stable/sys/dev/mii/icsphy.c
/freebsd-11-stable/sys/dev/mii/icsphyreg.h
/freebsd-11-stable/sys/dev/mii/ip1000phy.c
/freebsd-11-stable/sys/dev/mii/ip1000phyreg.h
/freebsd-11-stable/sys/dev/mii/jmphy.c
/freebsd-11-stable/sys/dev/mii/jmphyreg.h
/freebsd-11-stable/sys/dev/mii/lxtphy.c
/freebsd-11-stable/sys/dev/mii/lxtphyreg.h
/freebsd-11-stable/sys/dev/mii/mii.c
/freebsd-11-stable/sys/dev/mii/mii.h
/freebsd-11-stable/sys/dev/mii/mii_bitbang.c
/freebsd-11-stable/sys/dev/mii/mii_bitbang.h
/freebsd-11-stable/sys/dev/mii/mii_physubr.c
/freebsd-11-stable/sys/dev/mii/miivar.h
/freebsd-11-stable/sys/dev/mii/mlphy.c
/freebsd-11-stable/sys/dev/mii/nsgphy.c
/freebsd-11-stable/sys/dev/mii/nsgphyreg.h
/freebsd-11-stable/sys/dev/mii/nsphy.c
/freebsd-11-stable/sys/dev/mii/nsphyreg.h
/freebsd-11-stable/sys/dev/mii/nsphyter.c
/freebsd-11-stable/sys/dev/mii/nsphyterreg.h
/freebsd-11-stable/sys/dev/mii/pnaphy.c
/freebsd-11-stable/sys/dev/mii/qsphy.c
/freebsd-11-stable/sys/dev/mii/qsphyreg.h
/freebsd-11-stable/sys/dev/mii/rdcphy.c
/freebsd-11-stable/sys/dev/mii/rdcphyreg.h
/freebsd-11-stable/sys/dev/mii/rgephy.c
/freebsd-11-stable/sys/dev/mii/rgephyreg.h
/freebsd-11-stable/sys/dev/mii/rlphy.c
/freebsd-11-stable/sys/dev/mii/rlswitch.c
/freebsd-11-stable/sys/dev/mii/smcphy.c
/freebsd-11-stable/sys/dev/mii/smscphy.c
/freebsd-11-stable/sys/dev/mii/tdkphy.c
/freebsd-11-stable/sys/dev/mii/tdkphyreg.h
/freebsd-11-stable/sys/dev/mii/tlphy.c
/freebsd-11-stable/sys/dev/mii/tlphyreg.h
/freebsd-11-stable/sys/dev/mii/truephy.c
/freebsd-11-stable/sys/dev/mii/truephyreg.h
/freebsd-11-stable/sys/dev/mii/ukphy.c
/freebsd-11-stable/sys/dev/mii/ukphy_subr.c
/freebsd-11-stable/sys/dev/mii/xmphy.c
/freebsd-11-stable/sys/dev/mii/xmphyreg.h
/freebsd-11-stable/sys/dev/mk48txx/mk48txx.c
/freebsd-11-stable/sys/dev/mk48txx/mk48txxreg.h
/freebsd-11-stable/sys/dev/mk48txx/mk48txxvar.h
/freebsd-11-stable/sys/dev/mlx/mlx.c
/freebsd-11-stable/sys/dev/mlx/mlx_disk.c
/freebsd-11-stable/sys/dev/mlx/mlx_pci.c
/freebsd-11-stable/sys/dev/mlx/mlxio.h
/freebsd-11-stable/sys/dev/mlx/mlxreg.h
/freebsd-11-stable/sys/dev/mlx/mlxvar.h
/freebsd-11-stable/sys/dev/mly/mly.c
/freebsd-11-stable/sys/dev/mly/mly_tables.h
/freebsd-11-stable/sys/dev/mly/mlyio.h
/freebsd-11-stable/sys/dev/mly/mlyreg.h
/freebsd-11-stable/sys/dev/mly/mlyvar.h
/freebsd-11-stable/sys/dev/mmc/bridge.h
/freebsd-11-stable/sys/dev/mmc/mmc.c
/freebsd-11-stable/sys/dev/mmc/mmcbrvar.h
/freebsd-11-stable/sys/dev/mmc/mmcreg.h
/freebsd-11-stable/sys/dev/mmc/mmcsd.c
/freebsd-11-stable/sys/dev/mmc/mmcvar.h
/freebsd-11-stable/sys/dev/mps/mpi/mpi2.h
/freebsd-11-stable/sys/dev/mps/mpi/mpi2_cnfg.h
/freebsd-11-stable/sys/dev/mps/mpi/mpi2_hbd.h
/freebsd-11-stable/sys/dev/mps/mpi/mpi2_init.h
/freebsd-11-stable/sys/dev/mps/mpi/mpi2_ioc.h
/freebsd-11-stable/sys/dev/mps/mpi/mpi2_ra.h
/freebsd-11-stable/sys/dev/mps/mpi/mpi2_raid.h
/freebsd-11-stable/sys/dev/mps/mpi/mpi2_sas.h
/freebsd-11-stable/sys/dev/mps/mpi/mpi2_targ.h
/freebsd-11-stable/sys/dev/mps/mpi/mpi2_tool.h
/freebsd-11-stable/sys/dev/mps/mpi/mpi2_type.h
/freebsd-11-stable/sys/dev/mps/mps.c
/freebsd-11-stable/sys/dev/mps/mps_config.c
/freebsd-11-stable/sys/dev/mps/mps_ioctl.h
/freebsd-11-stable/sys/dev/mps/mps_mapping.c
/freebsd-11-stable/sys/dev/mps/mps_mapping.h
/freebsd-11-stable/sys/dev/mps/mps_pci.c
/freebsd-11-stable/sys/dev/mps/mps_sas.c
/freebsd-11-stable/sys/dev/mps/mps_sas.h
/freebsd-11-stable/sys/dev/mps/mps_sas_lsi.c
/freebsd-11-stable/sys/dev/mps/mps_table.c
/freebsd-11-stable/sys/dev/mps/mps_table.h
/freebsd-11-stable/sys/dev/mps/mps_user.c
/freebsd-11-stable/sys/dev/mps/mpsvar.h
/freebsd-11-stable/sys/dev/mpt/mpilib/mpi.h
/freebsd-11-stable/sys/dev/mpt/mpilib/mpi_cnfg.h
/freebsd-11-stable/sys/dev/mpt/mpilib/mpi_fc.h
/freebsd-11-stable/sys/dev/mpt/mpilib/mpi_init.h
/freebsd-11-stable/sys/dev/mpt/mpilib/mpi_ioc.h
/freebsd-11-stable/sys/dev/mpt/mpilib/mpi_lan.h
/freebsd-11-stable/sys/dev/mpt/mpilib/mpi_log_fc.h
/freebsd-11-stable/sys/dev/mpt/mpilib/mpi_log_sas.h
/freebsd-11-stable/sys/dev/mpt/mpilib/mpi_raid.h
/freebsd-11-stable/sys/dev/mpt/mpilib/mpi_sas.h
/freebsd-11-stable/sys/dev/mpt/mpilib/mpi_targ.h
/freebsd-11-stable/sys/dev/mpt/mpilib/mpi_tool.h
/freebsd-11-stable/sys/dev/mpt/mpilib/mpi_type.h
/freebsd-11-stable/sys/dev/mpt/mpt.c
/freebsd-11-stable/sys/dev/mpt/mpt.h
/freebsd-11-stable/sys/dev/mpt/mpt_cam.c
/freebsd-11-stable/sys/dev/mpt/mpt_cam.h
/freebsd-11-stable/sys/dev/mpt/mpt_debug.c
/freebsd-11-stable/sys/dev/mpt/mpt_pci.c
/freebsd-11-stable/sys/dev/mpt/mpt_raid.c
/freebsd-11-stable/sys/dev/mpt/mpt_raid.h
/freebsd-11-stable/sys/dev/mpt/mpt_reg.h
/freebsd-11-stable/sys/dev/mpt/mpt_user.c
/freebsd-11-stable/sys/dev/mse/mse.c
/freebsd-11-stable/sys/dev/mse/mse_isa.c
/freebsd-11-stable/sys/dev/mse/msevar.h
/freebsd-11-stable/sys/dev/msk/if_msk.c
/freebsd-11-stable/sys/dev/msk/if_mskreg.h
/freebsd-11-stable/sys/dev/mvs/mvs.c
/freebsd-11-stable/sys/dev/mvs/mvs.h
/freebsd-11-stable/sys/dev/mvs/mvs_pci.c
/freebsd-11-stable/sys/dev/mvs/mvs_soc.c
/freebsd-11-stable/sys/dev/mwl/if_mwl.c
/freebsd-11-stable/sys/dev/mwl/if_mwl_pci.c
/freebsd-11-stable/sys/dev/mwl/if_mwlioctl.h
/freebsd-11-stable/sys/dev/mwl/if_mwlvar.h
/freebsd-11-stable/sys/dev/mwl/mwldiag.h
/freebsd-11-stable/sys/dev/mwl/mwlhal.c
/freebsd-11-stable/sys/dev/mwl/mwlhal.h
/freebsd-11-stable/sys/dev/mwl/mwlreg.h
/freebsd-11-stable/sys/dev/mxge/eth_z8e.h
/freebsd-11-stable/sys/dev/mxge/ethp_z8e.h
/freebsd-11-stable/sys/dev/mxge/if_mxge.c
/freebsd-11-stable/sys/dev/mxge/if_mxge_var.h
/freebsd-11-stable/sys/dev/mxge/mcp_gen_header.h
/freebsd-11-stable/sys/dev/mxge/mxge_mcp.h
/freebsd-11-stable/sys/dev/mxge/rss_eth_z8e.h
/freebsd-11-stable/sys/dev/mxge/rss_ethp_z8e.h
/freebsd-11-stable/sys/dev/my/if_my.c
/freebsd-11-stable/sys/dev/my/if_myreg.h
/freebsd-11-stable/sys/dev/nand/nand.c
/freebsd-11-stable/sys/dev/nand/nand.h
/freebsd-11-stable/sys/dev/nand/nand_bbt.c
/freebsd-11-stable/sys/dev/nand/nand_cdev.c
/freebsd-11-stable/sys/dev/nand/nand_dev.h
/freebsd-11-stable/sys/dev/nand/nand_ecc_pos.h
/freebsd-11-stable/sys/dev/nand/nand_generic.c
/freebsd-11-stable/sys/dev/nand/nand_geom.c
/freebsd-11-stable/sys/dev/nand/nand_id.c
/freebsd-11-stable/sys/dev/nand/nandbus.c
/freebsd-11-stable/sys/dev/nand/nandbus.h
/freebsd-11-stable/sys/dev/nand/nandsim.c
/freebsd-11-stable/sys/dev/nand/nandsim.h
/freebsd-11-stable/sys/dev/nand/nandsim_chip.c
/freebsd-11-stable/sys/dev/nand/nandsim_chip.h
/freebsd-11-stable/sys/dev/nand/nandsim_ctrl.c
/freebsd-11-stable/sys/dev/nand/nandsim_log.c
/freebsd-11-stable/sys/dev/nand/nandsim_log.h
/freebsd-11-stable/sys/dev/nand/nandsim_swap.c
/freebsd-11-stable/sys/dev/nand/nandsim_swap.h
/freebsd-11-stable/sys/dev/nand/nfc_at91.c
/freebsd-11-stable/sys/dev/nand/nfc_at91.h
/freebsd-11-stable/sys/dev/nand/nfc_fsl.c
/freebsd-11-stable/sys/dev/nand/nfc_fsl.h
/freebsd-11-stable/sys/dev/nand/nfc_mv.c
/freebsd-11-stable/sys/dev/ncv/ncr53c500.c
/freebsd-11-stable/sys/dev/ncv/ncr53c500_pccard.c
/freebsd-11-stable/sys/dev/ncv/ncr53c500hw.h
/freebsd-11-stable/sys/dev/ncv/ncr53c500hwtab.h
/freebsd-11-stable/sys/dev/ncv/ncr53c500reg.h
/freebsd-11-stable/sys/dev/ncv/ncr53c500var.h
/freebsd-11-stable/sys/dev/netmap/if_em_netmap.h
/freebsd-11-stable/sys/dev/netmap/if_igb_netmap.h
/freebsd-11-stable/sys/dev/netmap/if_lem_netmap.h
/freebsd-11-stable/sys/dev/netmap/if_re_netmap.h
/freebsd-11-stable/sys/dev/netmap/ixgbe_netmap.h
/freebsd-11-stable/sys/dev/netmap/netmap.c
/freebsd-11-stable/sys/dev/netmap/netmap_freebsd.c
/freebsd-11-stable/sys/dev/netmap/netmap_generic.c
/freebsd-11-stable/sys/dev/netmap/netmap_kern.h
/freebsd-11-stable/sys/dev/netmap/netmap_mbq.c
/freebsd-11-stable/sys/dev/netmap/netmap_mbq.h
/freebsd-11-stable/sys/dev/netmap/netmap_mem2.c
/freebsd-11-stable/sys/dev/netmap/netmap_mem2.h
/freebsd-11-stable/sys/dev/netmap/netmap_offloadings.c
/freebsd-11-stable/sys/dev/netmap/netmap_pipe.c
/freebsd-11-stable/sys/dev/netmap/netmap_vale.c
/freebsd-11-stable/sys/dev/nge/if_nge.c
/freebsd-11-stable/sys/dev/nge/if_ngereg.h
/freebsd-11-stable/sys/dev/nmdm/nmdm.c
/freebsd-11-stable/sys/dev/nsp/nsp.c
/freebsd-11-stable/sys/dev/nsp/nsp_pccard.c
/freebsd-11-stable/sys/dev/nsp/nspreg.h
/freebsd-11-stable/sys/dev/nsp/nspvar.h
/freebsd-11-stable/sys/dev/null/null.c
/freebsd-11-stable/sys/dev/nvd/nvd.c
/freebsd-11-stable/sys/dev/nvme/nvme.c
/freebsd-11-stable/sys/dev/nvme/nvme.h
/freebsd-11-stable/sys/dev/nvme/nvme_ctrlr.c
/freebsd-11-stable/sys/dev/nvme/nvme_ctrlr_cmd.c
/freebsd-11-stable/sys/dev/nvme/nvme_ns.c
/freebsd-11-stable/sys/dev/nvme/nvme_ns_cmd.c
/freebsd-11-stable/sys/dev/nvme/nvme_private.h
/freebsd-11-stable/sys/dev/nvme/nvme_qpair.c
/freebsd-11-stable/sys/dev/nvme/nvme_sysctl.c
/freebsd-11-stable/sys/dev/nvme/nvme_test.c
/freebsd-11-stable/sys/dev/nvme/nvme_util.c
/freebsd-11-stable/sys/dev/nvram/nvram.c
/freebsd-11-stable/sys/dev/nvram2env/nvram2env.c
/freebsd-11-stable/sys/dev/nxge/if_nxge.c
/freebsd-11-stable/sys/dev/nxge/if_nxge.h
/freebsd-11-stable/sys/dev/nxge/include/version.h
/freebsd-11-stable/sys/dev/nxge/include/xge-debug.h
/freebsd-11-stable/sys/dev/nxge/include/xge-defs.h
/freebsd-11-stable/sys/dev/nxge/include/xge-list.h
/freebsd-11-stable/sys/dev/nxge/include/xge-os-pal.h
/freebsd-11-stable/sys/dev/nxge/include/xge-queue.h
/freebsd-11-stable/sys/dev/nxge/include/xgehal-channel.h
/freebsd-11-stable/sys/dev/nxge/include/xgehal-config.h
/freebsd-11-stable/sys/dev/nxge/include/xgehal-device.h
/freebsd-11-stable/sys/dev/nxge/include/xgehal-driver.h
/freebsd-11-stable/sys/dev/nxge/include/xgehal-event.h
/freebsd-11-stable/sys/dev/nxge/include/xgehal-fifo.h
/freebsd-11-stable/sys/dev/nxge/include/xgehal-mgmt.h
/freebsd-11-stable/sys/dev/nxge/include/xgehal-mgmtaux.h
/freebsd-11-stable/sys/dev/nxge/include/xgehal-mm.h
/freebsd-11-stable/sys/dev/nxge/include/xgehal-regs.h
/freebsd-11-stable/sys/dev/nxge/include/xgehal-ring.h
/freebsd-11-stable/sys/dev/nxge/include/xgehal-stats.h
/freebsd-11-stable/sys/dev/nxge/include/xgehal-types.h
/freebsd-11-stable/sys/dev/nxge/include/xgehal.h
/freebsd-11-stable/sys/dev/nxge/xge-osdep.h
/freebsd-11-stable/sys/dev/nxge/xgehal/xge-queue.c
/freebsd-11-stable/sys/dev/nxge/xgehal/xgehal-channel-fp.c
/freebsd-11-stable/sys/dev/nxge/xgehal/xgehal-channel.c
/freebsd-11-stable/sys/dev/nxge/xgehal/xgehal-config.c
/freebsd-11-stable/sys/dev/nxge/xgehal/xgehal-device-fp.c
/freebsd-11-stable/sys/dev/nxge/xgehal/xgehal-device.c
/freebsd-11-stable/sys/dev/nxge/xgehal/xgehal-driver.c
/freebsd-11-stable/sys/dev/nxge/xgehal/xgehal-fifo-fp.c
/freebsd-11-stable/sys/dev/nxge/xgehal/xgehal-fifo.c
/freebsd-11-stable/sys/dev/nxge/xgehal/xgehal-mgmt.c
/freebsd-11-stable/sys/dev/nxge/xgehal/xgehal-mgmtaux.c
/freebsd-11-stable/sys/dev/nxge/xgehal/xgehal-mm.c
/freebsd-11-stable/sys/dev/nxge/xgehal/xgehal-ring-fp.c
/freebsd-11-stable/sys/dev/nxge/xgehal/xgehal-ring.c
/freebsd-11-stable/sys/dev/nxge/xgehal/xgehal-stats.c
/freebsd-11-stable/sys/dev/nxge/xgell-version.h
/freebsd-11-stable/sys/dev/oce/oce_hw.c
/freebsd-11-stable/sys/dev/oce/oce_hw.h
/freebsd-11-stable/sys/dev/oce/oce_if.c
/freebsd-11-stable/sys/dev/oce/oce_if.h
/freebsd-11-stable/sys/dev/oce/oce_mbox.c
/freebsd-11-stable/sys/dev/oce/oce_queue.c
/freebsd-11-stable/sys/dev/oce/oce_sysctl.c
/freebsd-11-stable/sys/dev/oce/oce_util.c
/freebsd-11-stable/sys/dev/ofw/ofw_bus.h
/freebsd-11-stable/sys/dev/ofw/ofw_bus_subr.c
/freebsd-11-stable/sys/dev/ofw/ofw_bus_subr.h
/freebsd-11-stable/sys/dev/ofw/ofw_console.c
/freebsd-11-stable/sys/dev/ofw/ofw_disk.c
/freebsd-11-stable/sys/dev/ofw/ofw_fdt.c
/freebsd-11-stable/sys/dev/ofw/ofw_pci.h
/freebsd-11-stable/sys/dev/ofw/ofw_standard.c
/freebsd-11-stable/sys/dev/ofw/ofwvar.h
/freebsd-11-stable/sys/dev/ofw/openfirm.c
/freebsd-11-stable/sys/dev/ofw/openfirm.h
/freebsd-11-stable/sys/dev/ofw/openfirmio.c
/freebsd-11-stable/sys/dev/ofw/openfirmio.h
/freebsd-11-stable/sys/dev/ofw/openpromio.c
/freebsd-11-stable/sys/dev/ofw/openpromio.h
/freebsd-11-stable/sys/dev/pbio/pbio.c
/freebsd-11-stable/sys/dev/pbio/pbioio.h
/freebsd-11-stable/sys/dev/pccard/pccard.c
/freebsd-11-stable/sys/dev/pccard/pccard_cis.c
/freebsd-11-stable/sys/dev/pccard/pccard_cis.h
/freebsd-11-stable/sys/dev/pccard/pccard_cis_quirks.c
/freebsd-11-stable/sys/dev/pccard/pccard_device.c
/freebsd-11-stable/sys/dev/pccard/pccardreg.h
/freebsd-11-stable/sys/dev/pccard/pccardvar.h
/freebsd-11-stable/sys/dev/pccard/pccardvarp.h
/freebsd-11-stable/sys/dev/pccbb/pccbb.c
/freebsd-11-stable/sys/dev/pccbb/pccbb_isa.c
/freebsd-11-stable/sys/dev/pccbb/pccbb_pci.c
/freebsd-11-stable/sys/dev/pccbb/pccbbdevid.h
/freebsd-11-stable/sys/dev/pccbb/pccbbreg.h
/freebsd-11-stable/sys/dev/pccbb/pccbbvar.h
/freebsd-11-stable/sys/dev/pcf/envctrl.c
/freebsd-11-stable/sys/dev/pcf/pcf.c
/freebsd-11-stable/sys/dev/pcf/pcf_ebus.c
/freebsd-11-stable/sys/dev/pcf/pcf_isa.c
/freebsd-11-stable/sys/dev/pcf/pcfvar.h
/freebsd-11-stable/sys/dev/pci/fixup_pci.c
/freebsd-11-stable/sys/dev/pci/hostb_pci.c
/freebsd-11-stable/sys/dev/pci/ignore_pci.c
/freebsd-11-stable/sys/dev/pci/isa_pci.c
/freebsd-11-stable/sys/dev/pci/pci.c
/freebsd-11-stable/sys/dev/pci/pci_pci.c
/freebsd-11-stable/sys/dev/pci/pci_private.h
/freebsd-11-stable/sys/dev/pci/pci_subr.c
/freebsd-11-stable/sys/dev/pci/pci_user.c
/freebsd-11-stable/sys/dev/pci/pcib_private.h
/freebsd-11-stable/sys/dev/pci/pcireg.h
/freebsd-11-stable/sys/dev/pci/pcivar.h
/freebsd-11-stable/sys/dev/pci/vga_pci.c
/freebsd-11-stable/sys/dev/pcn/if_pcn.c
/freebsd-11-stable/sys/dev/pcn/if_pcnreg.h
/freebsd-11-stable/sys/dev/pdq/if_fpa.c
/freebsd-11-stable/sys/dev/pdq/pdq.c
/freebsd-11-stable/sys/dev/pdq/pdq_freebsd.h
/freebsd-11-stable/sys/dev/pdq/pdq_ifsubr.c
/freebsd-11-stable/sys/dev/pdq/pdqreg.h
/freebsd-11-stable/sys/dev/pdq/pdqvar.h
/freebsd-11-stable/sys/dev/powermac_nvram/powermac_nvram.c
/freebsd-11-stable/sys/dev/powermac_nvram/powermac_nvramvar.h
/freebsd-11-stable/sys/dev/ppbus/if_plip.c
/freebsd-11-stable/sys/dev/ppbus/immio.c
/freebsd-11-stable/sys/dev/ppbus/lpbb.c
/freebsd-11-stable/sys/dev/ppbus/lpt.c
/freebsd-11-stable/sys/dev/ppbus/lpt.h
/freebsd-11-stable/sys/dev/ppbus/pcfclock.c
/freebsd-11-stable/sys/dev/ppbus/ppb_1284.c
/freebsd-11-stable/sys/dev/ppbus/ppb_1284.h
/freebsd-11-stable/sys/dev/ppbus/ppb_base.c
/freebsd-11-stable/sys/dev/ppbus/ppb_msq.c
/freebsd-11-stable/sys/dev/ppbus/ppb_msq.h
/freebsd-11-stable/sys/dev/ppbus/ppbconf.c
/freebsd-11-stable/sys/dev/ppbus/ppbconf.h
/freebsd-11-stable/sys/dev/ppbus/ppbio.h
/freebsd-11-stable/sys/dev/ppbus/ppi.c
/freebsd-11-stable/sys/dev/ppbus/ppi.h
/freebsd-11-stable/sys/dev/ppbus/vpo.c
/freebsd-11-stable/sys/dev/ppbus/vpoio.c
/freebsd-11-stable/sys/dev/ppbus/vpoio.h
/freebsd-11-stable/sys/dev/ppc/ppc.c
/freebsd-11-stable/sys/dev/ppc/ppc_acpi.c
/freebsd-11-stable/sys/dev/ppc/ppc_isa.c
/freebsd-11-stable/sys/dev/ppc/ppc_pci.c
/freebsd-11-stable/sys/dev/ppc/ppc_puc.c
/freebsd-11-stable/sys/dev/ppc/ppcreg.h
/freebsd-11-stable/sys/dev/ppc/ppcvar.h
/freebsd-11-stable/sys/dev/pst/pst-iop.c
/freebsd-11-stable/sys/dev/pst/pst-iop.h
/freebsd-11-stable/sys/dev/pst/pst-pci.c
/freebsd-11-stable/sys/dev/pst/pst-raid.c
/freebsd-11-stable/sys/dev/pty/pty.c
/freebsd-11-stable/sys/dev/puc/puc.c
/freebsd-11-stable/sys/dev/puc/puc_bfe.h
/freebsd-11-stable/sys/dev/puc/puc_bus.h
/freebsd-11-stable/sys/dev/puc/puc_cfg.c
/freebsd-11-stable/sys/dev/puc/puc_cfg.h
/freebsd-11-stable/sys/dev/puc/puc_pccard.c
/freebsd-11-stable/sys/dev/puc/puc_pci.c
/freebsd-11-stable/sys/dev/puc/pucdata.c
/freebsd-11-stable/sys/dev/qlxgb/qla_dbg.c
/freebsd-11-stable/sys/dev/qlxgb/qla_dbg.h
/freebsd-11-stable/sys/dev/qlxgb/qla_def.h
/freebsd-11-stable/sys/dev/qlxgb/qla_glbl.h
/freebsd-11-stable/sys/dev/qlxgb/qla_hw.c
/freebsd-11-stable/sys/dev/qlxgb/qla_hw.h
/freebsd-11-stable/sys/dev/qlxgb/qla_inline.h
/freebsd-11-stable/sys/dev/qlxgb/qla_ioctl.c
/freebsd-11-stable/sys/dev/qlxgb/qla_ioctl.h
/freebsd-11-stable/sys/dev/qlxgb/qla_isr.c
/freebsd-11-stable/sys/dev/qlxgb/qla_misc.c
/freebsd-11-stable/sys/dev/qlxgb/qla_os.c
/freebsd-11-stable/sys/dev/qlxgb/qla_os.h
/freebsd-11-stable/sys/dev/qlxgb/qla_reg.h
/freebsd-11-stable/sys/dev/qlxgb/qla_ver.h
/freebsd-11-stable/sys/dev/qlxgbe/ql_dbg.c
/freebsd-11-stable/sys/dev/qlxgbe/ql_dbg.h
/freebsd-11-stable/sys/dev/qlxgbe/ql_def.h
/freebsd-11-stable/sys/dev/qlxgbe/ql_glbl.h
/freebsd-11-stable/sys/dev/qlxgbe/ql_hw.c
/freebsd-11-stable/sys/dev/qlxgbe/ql_hw.h
/freebsd-11-stable/sys/dev/qlxgbe/ql_inline.h
/freebsd-11-stable/sys/dev/qlxgbe/ql_ioctl.c
/freebsd-11-stable/sys/dev/qlxgbe/ql_ioctl.h
/freebsd-11-stable/sys/dev/qlxgbe/ql_isr.c
/freebsd-11-stable/sys/dev/qlxgbe/ql_misc.c
/freebsd-11-stable/sys/dev/qlxgbe/ql_os.c
/freebsd-11-stable/sys/dev/qlxgbe/ql_os.h
/freebsd-11-stable/sys/dev/qlxgbe/ql_reset.c
/freebsd-11-stable/sys/dev/qlxgbe/ql_tmplt.h
/freebsd-11-stable/sys/dev/qlxgbe/ql_ver.h
/freebsd-11-stable/sys/dev/qlxge/qls_dbg.c
/freebsd-11-stable/sys/dev/qlxge/qls_dbg.h
/freebsd-11-stable/sys/dev/qlxge/qls_def.h
/freebsd-11-stable/sys/dev/qlxge/qls_dump.c
/freebsd-11-stable/sys/dev/qlxge/qls_dump.h
/freebsd-11-stable/sys/dev/qlxge/qls_glbl.h
/freebsd-11-stable/sys/dev/qlxge/qls_hw.c
/freebsd-11-stable/sys/dev/qlxge/qls_hw.h
/freebsd-11-stable/sys/dev/qlxge/qls_inline.h
/freebsd-11-stable/sys/dev/qlxge/qls_ioctl.c
/freebsd-11-stable/sys/dev/qlxge/qls_ioctl.h
/freebsd-11-stable/sys/dev/qlxge/qls_isr.c
/freebsd-11-stable/sys/dev/qlxge/qls_os.c
/freebsd-11-stable/sys/dev/qlxge/qls_os.h
/freebsd-11-stable/sys/dev/qlxge/qls_ver.h
/freebsd-11-stable/sys/dev/quicc/quicc_bfe.h
/freebsd-11-stable/sys/dev/quicc/quicc_bfe_fdt.c
/freebsd-11-stable/sys/dev/quicc/quicc_bus.h
/freebsd-11-stable/sys/dev/quicc/quicc_core.c
/freebsd-11-stable/sys/dev/rc/rc.c
/freebsd-11-stable/sys/dev/rc/rcreg.h
/freebsd-11-stable/sys/dev/re/if_re.c
/freebsd-11-stable/sys/dev/rndtest/rndtest.c
/freebsd-11-stable/sys/dev/rndtest/rndtest.h
/freebsd-11-stable/sys/dev/rp/rp.c
/freebsd-11-stable/sys/dev/rp/rp_isa.c
/freebsd-11-stable/sys/dev/rp/rp_pci.c
/freebsd-11-stable/sys/dev/rp/rpreg.h
/freebsd-11-stable/sys/dev/rp/rpvar.h
/freebsd-11-stable/sys/dev/rt/if_rt.c
/freebsd-11-stable/sys/dev/rt/if_rtreg.h
/freebsd-11-stable/sys/dev/rt/if_rtvar.h
/freebsd-11-stable/sys/dev/safe/safe.c
/freebsd-11-stable/sys/dev/safe/safereg.h
/freebsd-11-stable/sys/dev/safe/safevar.h
/freebsd-11-stable/sys/dev/scc/scc_bfe.h
/freebsd-11-stable/sys/dev/scc/scc_bfe_ebus.c
/freebsd-11-stable/sys/dev/scc/scc_bfe_macio.c
/freebsd-11-stable/sys/dev/scc/scc_bfe_quicc.c
/freebsd-11-stable/sys/dev/scc/scc_bfe_sbus.c
/freebsd-11-stable/sys/dev/scc/scc_bus.h
/freebsd-11-stable/sys/dev/scc/scc_core.c
/freebsd-11-stable/sys/dev/scc/scc_dev_quicc.c
/freebsd-11-stable/sys/dev/scc/scc_dev_sab82532.c
/freebsd-11-stable/sys/dev/scc/scc_dev_z8530.c
/freebsd-11-stable/sys/dev/sdhci/sdhci.c
/freebsd-11-stable/sys/dev/sdhci/sdhci.h
/freebsd-11-stable/sys/dev/sdhci/sdhci_fdt.c
/freebsd-11-stable/sys/dev/sdhci/sdhci_pci.c
/freebsd-11-stable/sys/dev/sec/sec.c
/freebsd-11-stable/sys/dev/sec/sec.h
/freebsd-11-stable/sys/dev/sf/if_sf.c
/freebsd-11-stable/sys/dev/sf/if_sfreg.h
/freebsd-11-stable/sys/dev/sfxge/common/efsys.h
/freebsd-11-stable/sys/dev/sfxge/common/efx.h
/freebsd-11-stable/sys/dev/sfxge/common/efx_bootcfg.c
/freebsd-11-stable/sys/dev/sfxge/common/efx_ev.c
/freebsd-11-stable/sys/dev/sfxge/common/efx_filter.c
/freebsd-11-stable/sys/dev/sfxge/common/efx_impl.h
/freebsd-11-stable/sys/dev/sfxge/common/efx_intr.c
/freebsd-11-stable/sys/dev/sfxge/common/efx_mac.c
/freebsd-11-stable/sys/dev/sfxge/common/efx_mcdi.c
/freebsd-11-stable/sys/dev/sfxge/common/efx_mcdi.h
/freebsd-11-stable/sys/dev/sfxge/common/efx_mon.c
/freebsd-11-stable/sys/dev/sfxge/common/efx_nic.c
/freebsd-11-stable/sys/dev/sfxge/common/efx_nvram.c
/freebsd-11-stable/sys/dev/sfxge/common/efx_phy.c
/freebsd-11-stable/sys/dev/sfxge/common/efx_port.c
/freebsd-11-stable/sys/dev/sfxge/common/efx_regs.h
/freebsd-11-stable/sys/dev/sfxge/common/efx_regs_ef10.h
/freebsd-11-stable/sys/dev/sfxge/common/efx_regs_mcdi.h
/freebsd-11-stable/sys/dev/sfxge/common/efx_regs_pci.h
/freebsd-11-stable/sys/dev/sfxge/common/efx_rx.c
/freebsd-11-stable/sys/dev/sfxge/common/efx_sram.c
/freebsd-11-stable/sys/dev/sfxge/common/efx_tx.c
/freebsd-11-stable/sys/dev/sfxge/common/efx_types.h
/freebsd-11-stable/sys/dev/sfxge/common/efx_vpd.c
/freebsd-11-stable/sys/dev/sfxge/common/siena_flash.h
/freebsd-11-stable/sys/dev/sfxge/common/siena_impl.h
/freebsd-11-stable/sys/dev/sfxge/common/siena_mac.c
/freebsd-11-stable/sys/dev/sfxge/common/siena_nic.c
/freebsd-11-stable/sys/dev/sfxge/common/siena_nvram.c
/freebsd-11-stable/sys/dev/sfxge/common/siena_phy.c
/freebsd-11-stable/sys/dev/sfxge/common/siena_sram.c
/freebsd-11-stable/sys/dev/sfxge/common/siena_vpd.c
/freebsd-11-stable/sys/dev/sfxge/sfxge.c
/freebsd-11-stable/sys/dev/sfxge/sfxge.h
/freebsd-11-stable/sys/dev/sfxge/sfxge_dma.c
/freebsd-11-stable/sys/dev/sfxge/sfxge_ev.c
/freebsd-11-stable/sys/dev/sfxge/sfxge_intr.c
/freebsd-11-stable/sys/dev/sfxge/sfxge_mcdi.c
/freebsd-11-stable/sys/dev/sfxge/sfxge_port.c
/freebsd-11-stable/sys/dev/sfxge/sfxge_rx.c
/freebsd-11-stable/sys/dev/sfxge/sfxge_rx.h
/freebsd-11-stable/sys/dev/sfxge/sfxge_tx.c
/freebsd-11-stable/sys/dev/sfxge/sfxge_tx.h
/freebsd-11-stable/sys/dev/sge/if_sge.c
/freebsd-11-stable/sys/dev/sge/if_sgereg.h
/freebsd-11-stable/sys/dev/siba/siba_bwn.c
/freebsd-11-stable/sys/dev/siba/siba_core.c
/freebsd-11-stable/sys/dev/siba/siba_ids.h
/freebsd-11-stable/sys/dev/siba/sibareg.h
/freebsd-11-stable/sys/dev/siba/sibavar.h
/freebsd-11-stable/sys/dev/siis/siis.c
/freebsd-11-stable/sys/dev/siis/siis.h
/freebsd-11-stable/sys/dev/sio/sio.c
/freebsd-11-stable/sys/dev/sio/sio_isa.c
/freebsd-11-stable/sys/dev/sio/sio_pccard.c
/freebsd-11-stable/sys/dev/sio/sio_pci.c
/freebsd-11-stable/sys/dev/sio/sio_puc.c
/freebsd-11-stable/sys/dev/sio/sioreg.h
/freebsd-11-stable/sys/dev/sio/siovar.h
/freebsd-11-stable/sys/dev/sis/if_sis.c
/freebsd-11-stable/sys/dev/sis/if_sisreg.h
/freebsd-11-stable/sys/dev/sk/if_sk.c
/freebsd-11-stable/sys/dev/sk/if_skreg.h
/freebsd-11-stable/sys/dev/sk/xmaciireg.h
/freebsd-11-stable/sys/dev/smbus/smb.c
/freebsd-11-stable/sys/dev/smbus/smb.h
/freebsd-11-stable/sys/dev/smbus/smbconf.c
/freebsd-11-stable/sys/dev/smbus/smbconf.h
/freebsd-11-stable/sys/dev/smbus/smbus.c
/freebsd-11-stable/sys/dev/smbus/smbus.h
/freebsd-11-stable/sys/dev/smc/if_smc.c
/freebsd-11-stable/sys/dev/smc/if_smcreg.h
/freebsd-11-stable/sys/dev/smc/if_smcvar.h
/freebsd-11-stable/sys/dev/sn/if_sn.c
/freebsd-11-stable/sys/dev/sn/if_sn_isa.c
/freebsd-11-stable/sys/dev/sn/if_sn_pccard.c
/freebsd-11-stable/sys/dev/sn/if_snreg.h
/freebsd-11-stable/sys/dev/sn/if_snvar.h
/freebsd-11-stable/sys/dev/sn/ositech.h
/freebsd-11-stable/sys/dev/snp/snp.c
/freebsd-11-stable/sys/dev/sound/chip.h
/freebsd-11-stable/sys/dev/sound/clone.c
/freebsd-11-stable/sys/dev/sound/clone.h
/freebsd-11-stable/sys/dev/sound/driver.c
/freebsd-11-stable/sys/dev/sound/isa/ad1816.c
/freebsd-11-stable/sys/dev/sound/isa/ad1816.h
/freebsd-11-stable/sys/dev/sound/isa/ess.c
/freebsd-11-stable/sys/dev/sound/isa/gusc.c
/freebsd-11-stable/sys/dev/sound/isa/mss.c
/freebsd-11-stable/sys/dev/sound/isa/mss.h
/freebsd-11-stable/sys/dev/sound/isa/sb.h
/freebsd-11-stable/sys/dev/sound/isa/sb16.c
/freebsd-11-stable/sys/dev/sound/isa/sb8.c
/freebsd-11-stable/sys/dev/sound/isa/sbc.c
/freebsd-11-stable/sys/dev/sound/isa/sndbuf_dma.c
/freebsd-11-stable/sys/dev/sound/macio/aoa.c
/freebsd-11-stable/sys/dev/sound/macio/aoa.h
/freebsd-11-stable/sys/dev/sound/macio/davbus.c
/freebsd-11-stable/sys/dev/sound/macio/davbusreg.h
/freebsd-11-stable/sys/dev/sound/macio/i2s.c
/freebsd-11-stable/sys/dev/sound/macio/onyx.c
/freebsd-11-stable/sys/dev/sound/macio/snapper.c
/freebsd-11-stable/sys/dev/sound/macio/tumbler.c
/freebsd-11-stable/sys/dev/sound/midi/midi.c
/freebsd-11-stable/sys/dev/sound/midi/midi.h
/freebsd-11-stable/sys/dev/sound/midi/midiq.h
/freebsd-11-stable/sys/dev/sound/midi/mpu401.c
/freebsd-11-stable/sys/dev/sound/midi/mpu401.h
/freebsd-11-stable/sys/dev/sound/midi/sequencer.c
/freebsd-11-stable/sys/dev/sound/midi/sequencer.h
/freebsd-11-stable/sys/dev/sound/pci/allegro_code.h
/freebsd-11-stable/sys/dev/sound/pci/allegro_reg.h
/freebsd-11-stable/sys/dev/sound/pci/als4000.c
/freebsd-11-stable/sys/dev/sound/pci/als4000.h
/freebsd-11-stable/sys/dev/sound/pci/atiixp.c
/freebsd-11-stable/sys/dev/sound/pci/atiixp.h
/freebsd-11-stable/sys/dev/sound/pci/aureal.c
/freebsd-11-stable/sys/dev/sound/pci/aureal.h
/freebsd-11-stable/sys/dev/sound/pci/cmi.c
/freebsd-11-stable/sys/dev/sound/pci/cmireg.h
/freebsd-11-stable/sys/dev/sound/pci/cs4281.c
/freebsd-11-stable/sys/dev/sound/pci/cs4281.h
/freebsd-11-stable/sys/dev/sound/pci/cs461x_dsp.h
/freebsd-11-stable/sys/dev/sound/pci/csa.c
/freebsd-11-stable/sys/dev/sound/pci/csapcm.c
/freebsd-11-stable/sys/dev/sound/pci/csareg.h
/freebsd-11-stable/sys/dev/sound/pci/csavar.h
/freebsd-11-stable/sys/dev/sound/pci/ds1-fw.h
/freebsd-11-stable/sys/dev/sound/pci/ds1.c
/freebsd-11-stable/sys/dev/sound/pci/emu10k1.c
/freebsd-11-stable/sys/dev/sound/pci/emu10kx-midi.c
/freebsd-11-stable/sys/dev/sound/pci/emu10kx-pcm.c
/freebsd-11-stable/sys/dev/sound/pci/emu10kx.c
/freebsd-11-stable/sys/dev/sound/pci/emu10kx.h
/freebsd-11-stable/sys/dev/sound/pci/envy24.c
/freebsd-11-stable/sys/dev/sound/pci/envy24.h
/freebsd-11-stable/sys/dev/sound/pci/envy24ht.c
/freebsd-11-stable/sys/dev/sound/pci/envy24ht.h
/freebsd-11-stable/sys/dev/sound/pci/es137x.c
/freebsd-11-stable/sys/dev/sound/pci/es137x.h
/freebsd-11-stable/sys/dev/sound/pci/fm801.c
/freebsd-11-stable/sys/dev/sound/pci/hda/hda_reg.h
/freebsd-11-stable/sys/dev/sound/pci/hda/hdaa.c
/freebsd-11-stable/sys/dev/sound/pci/hda/hdaa.h
/freebsd-11-stable/sys/dev/sound/pci/hda/hdaa_patches.c
/freebsd-11-stable/sys/dev/sound/pci/hda/hdac.c
/freebsd-11-stable/sys/dev/sound/pci/hda/hdac.h
/freebsd-11-stable/sys/dev/sound/pci/hda/hdac_private.h
/freebsd-11-stable/sys/dev/sound/pci/hda/hdac_reg.h
/freebsd-11-stable/sys/dev/sound/pci/hda/hdacc.c
/freebsd-11-stable/sys/dev/sound/pci/hdspe-pcm.c
/freebsd-11-stable/sys/dev/sound/pci/hdspe.c
/freebsd-11-stable/sys/dev/sound/pci/hdspe.h
/freebsd-11-stable/sys/dev/sound/pci/ich.c
/freebsd-11-stable/sys/dev/sound/pci/ich.h
/freebsd-11-stable/sys/dev/sound/pci/maestro.c
/freebsd-11-stable/sys/dev/sound/pci/maestro3.c
/freebsd-11-stable/sys/dev/sound/pci/maestro_reg.h
/freebsd-11-stable/sys/dev/sound/pci/neomagic-coeff.h
/freebsd-11-stable/sys/dev/sound/pci/neomagic.c
/freebsd-11-stable/sys/dev/sound/pci/neomagic.h
/freebsd-11-stable/sys/dev/sound/pci/solo.c
/freebsd-11-stable/sys/dev/sound/pci/spicds.c
/freebsd-11-stable/sys/dev/sound/pci/spicds.h
/freebsd-11-stable/sys/dev/sound/pci/t4dwave.c
/freebsd-11-stable/sys/dev/sound/pci/t4dwave.h
/freebsd-11-stable/sys/dev/sound/pci/via8233.c
/freebsd-11-stable/sys/dev/sound/pci/via8233.h
/freebsd-11-stable/sys/dev/sound/pci/via82c686.c
/freebsd-11-stable/sys/dev/sound/pci/via82c686.h
/freebsd-11-stable/sys/dev/sound/pci/vibes.c
/freebsd-11-stable/sys/dev/sound/pci/vibes.h
/freebsd-11-stable/sys/dev/sound/pcm/ac97.c
/freebsd-11-stable/sys/dev/sound/pcm/ac97.h
/freebsd-11-stable/sys/dev/sound/pcm/ac97_patch.c
/freebsd-11-stable/sys/dev/sound/pcm/ac97_patch.h
/freebsd-11-stable/sys/dev/sound/pcm/buffer.c
/freebsd-11-stable/sys/dev/sound/pcm/buffer.h
/freebsd-11-stable/sys/dev/sound/pcm/channel.c
/freebsd-11-stable/sys/dev/sound/pcm/channel.h
/freebsd-11-stable/sys/dev/sound/pcm/dsp.c
/freebsd-11-stable/sys/dev/sound/pcm/dsp.h
/freebsd-11-stable/sys/dev/sound/pcm/feeder.c
/freebsd-11-stable/sys/dev/sound/pcm/feeder.h
/freebsd-11-stable/sys/dev/sound/pcm/feeder_chain.c
/freebsd-11-stable/sys/dev/sound/pcm/feeder_eq.c
/freebsd-11-stable/sys/dev/sound/pcm/feeder_format.c
/freebsd-11-stable/sys/dev/sound/pcm/feeder_matrix.c
/freebsd-11-stable/sys/dev/sound/pcm/feeder_mixer.c
/freebsd-11-stable/sys/dev/sound/pcm/feeder_rate.c
/freebsd-11-stable/sys/dev/sound/pcm/feeder_volume.c
/freebsd-11-stable/sys/dev/sound/pcm/g711.h
/freebsd-11-stable/sys/dev/sound/pcm/intpcm.h
/freebsd-11-stable/sys/dev/sound/pcm/matrix.h
/freebsd-11-stable/sys/dev/sound/pcm/matrix_map.h
/freebsd-11-stable/sys/dev/sound/pcm/mixer.c
/freebsd-11-stable/sys/dev/sound/pcm/mixer.h
/freebsd-11-stable/sys/dev/sound/pcm/pcm.h
/freebsd-11-stable/sys/dev/sound/pcm/sndstat.c
/freebsd-11-stable/sys/dev/sound/pcm/sndstat.h
/freebsd-11-stable/sys/dev/sound/pcm/sound.c
/freebsd-11-stable/sys/dev/sound/pcm/sound.h
/freebsd-11-stable/sys/dev/sound/pcm/vchan.c
/freebsd-11-stable/sys/dev/sound/pcm/vchan.h
/freebsd-11-stable/sys/dev/sound/sbus/apcdmareg.h
/freebsd-11-stable/sys/dev/sound/sbus/cs4231.c
/freebsd-11-stable/sys/dev/sound/sbus/cs4231.h
/freebsd-11-stable/sys/dev/sound/unit.c
/freebsd-11-stable/sys/dev/sound/unit.h
/freebsd-11-stable/sys/dev/sound/usb/uaudio.c
/freebsd-11-stable/sys/dev/sound/usb/uaudio.h
/freebsd-11-stable/sys/dev/sound/usb/uaudio_pcm.c
/freebsd-11-stable/sys/dev/sound/usb/uaudioreg.h
/freebsd-11-stable/sys/dev/sound/version.h
/freebsd-11-stable/sys/dev/spibus/ofw_spibus.c
/freebsd-11-stable/sys/dev/ste/if_ste.c
/freebsd-11-stable/sys/dev/ste/if_stereg.h
/freebsd-11-stable/sys/dev/stg/tmc18c30.c
/freebsd-11-stable/sys/dev/stg/tmc18c30_isa.c
/freebsd-11-stable/sys/dev/stg/tmc18c30_pccard.c
/freebsd-11-stable/sys/dev/stg/tmc18c30_pci.c
/freebsd-11-stable/sys/dev/stg/tmc18c30_subr.c
/freebsd-11-stable/sys/dev/stg/tmc18c30reg.h
/freebsd-11-stable/sys/dev/stg/tmc18c30var.h
/freebsd-11-stable/sys/dev/stge/if_stge.c
/freebsd-11-stable/sys/dev/stge/if_stgereg.h
/freebsd-11-stable/sys/dev/sym/sym_conf.h
/freebsd-11-stable/sys/dev/sym/sym_defs.h
/freebsd-11-stable/sys/dev/sym/sym_fw.h
/freebsd-11-stable/sys/dev/sym/sym_fw1.h
/freebsd-11-stable/sys/dev/sym/sym_fw2.h
/freebsd-11-stable/sys/dev/sym/sym_hipd.c
/freebsd-11-stable/sys/dev/syscons/apm/apm_saver.c
/freebsd-11-stable/sys/dev/syscons/blank/blank_saver.c
/freebsd-11-stable/sys/dev/syscons/daemon/daemon_saver.c
/freebsd-11-stable/sys/dev/syscons/dragon/dragon_saver.c
/freebsd-11-stable/sys/dev/syscons/fade/fade_saver.c
/freebsd-11-stable/sys/dev/syscons/fire/fire_saver.c
/freebsd-11-stable/sys/dev/syscons/green/green_saver.c
/freebsd-11-stable/sys/dev/syscons/logo/logo_saver.c
/freebsd-11-stable/sys/dev/syscons/rain/rain_saver.c
/freebsd-11-stable/sys/dev/syscons/scgfbrndr.c
/freebsd-11-stable/sys/dev/syscons/schistory.c
/freebsd-11-stable/sys/dev/syscons/scmouse.c
/freebsd-11-stable/sys/dev/syscons/scterm-teken.c
/freebsd-11-stable/sys/dev/syscons/scterm.c
/freebsd-11-stable/sys/dev/syscons/scvesactl.c
/freebsd-11-stable/sys/dev/syscons/scvgarndr.c
/freebsd-11-stable/sys/dev/syscons/scvidctl.c
/freebsd-11-stable/sys/dev/syscons/scvtb.c
/freebsd-11-stable/sys/dev/syscons/snake/snake_saver.c
/freebsd-11-stable/sys/dev/syscons/star/star_saver.c
/freebsd-11-stable/sys/dev/syscons/syscons.c
/freebsd-11-stable/sys/dev/syscons/syscons.h
/freebsd-11-stable/sys/dev/syscons/sysmouse.c
/freebsd-11-stable/sys/dev/syscons/warp/warp_saver.c
/freebsd-11-stable/sys/dev/tdfx/tdfx_io.h
/freebsd-11-stable/sys/dev/tdfx/tdfx_linux.c
/freebsd-11-stable/sys/dev/tdfx/tdfx_linux.h
/freebsd-11-stable/sys/dev/tdfx/tdfx_pci.c
/freebsd-11-stable/sys/dev/tdfx/tdfx_pci.h
/freebsd-11-stable/sys/dev/tdfx/tdfx_vars.h
/freebsd-11-stable/sys/dev/terasic/de4led/terasic_de4led.c
/freebsd-11-stable/sys/dev/terasic/de4led/terasic_de4led.h
/freebsd-11-stable/sys/dev/terasic/de4led/terasic_de4led_fdt.c
/freebsd-11-stable/sys/dev/terasic/de4led/terasic_de4led_nexus.c
/freebsd-11-stable/sys/dev/terasic/mtl/terasic_mtl.c
/freebsd-11-stable/sys/dev/terasic/mtl/terasic_mtl.h
/freebsd-11-stable/sys/dev/terasic/mtl/terasic_mtl_fdt.c
/freebsd-11-stable/sys/dev/terasic/mtl/terasic_mtl_nexus.c
/freebsd-11-stable/sys/dev/terasic/mtl/terasic_mtl_pixel.c
/freebsd-11-stable/sys/dev/terasic/mtl/terasic_mtl_reg.c
/freebsd-11-stable/sys/dev/terasic/mtl/terasic_mtl_syscons.c
/freebsd-11-stable/sys/dev/terasic/mtl/terasic_mtl_text.c
/freebsd-11-stable/sys/dev/ti/if_ti.c
/freebsd-11-stable/sys/dev/ti/if_tireg.h
/freebsd-11-stable/sys/dev/tl/if_tl.c
/freebsd-11-stable/sys/dev/tl/if_tlreg.h
/freebsd-11-stable/sys/dev/trm/trm.c
/freebsd-11-stable/sys/dev/trm/trm.h
/freebsd-11-stable/sys/dev/tsec/if_tsec.c
/freebsd-11-stable/sys/dev/tsec/if_tsec.h
/freebsd-11-stable/sys/dev/tsec/if_tsec_fdt.c
/freebsd-11-stable/sys/dev/tsec/if_tsecreg.h
/freebsd-11-stable/sys/dev/twa/tw_cl.h
/freebsd-11-stable/sys/dev/twa/tw_cl_externs.h
/freebsd-11-stable/sys/dev/twa/tw_cl_fwif.h
/freebsd-11-stable/sys/dev/twa/tw_cl_init.c
/freebsd-11-stable/sys/dev/twa/tw_cl_intr.c
/freebsd-11-stable/sys/dev/twa/tw_cl_io.c
/freebsd-11-stable/sys/dev/twa/tw_cl_ioctl.h
/freebsd-11-stable/sys/dev/twa/tw_cl_misc.c
/freebsd-11-stable/sys/dev/twa/tw_cl_share.h
/freebsd-11-stable/sys/dev/twa/tw_osl.h
/freebsd-11-stable/sys/dev/twa/tw_osl_cam.c
/freebsd-11-stable/sys/dev/twa/tw_osl_externs.h
/freebsd-11-stable/sys/dev/twa/tw_osl_freebsd.c
/freebsd-11-stable/sys/dev/twa/tw_osl_includes.h
/freebsd-11-stable/sys/dev/twa/tw_osl_inline.h
/freebsd-11-stable/sys/dev/twa/tw_osl_ioctl.h
/freebsd-11-stable/sys/dev/twa/tw_osl_share.h
/freebsd-11-stable/sys/dev/twa/tw_osl_types.h
/freebsd-11-stable/sys/dev/twe/twe.c
/freebsd-11-stable/sys/dev/twe/twe_compat.h
/freebsd-11-stable/sys/dev/twe/twe_freebsd.c
/freebsd-11-stable/sys/dev/twe/twe_tables.h
/freebsd-11-stable/sys/dev/twe/tweio.h
/freebsd-11-stable/sys/dev/twe/twereg.h
/freebsd-11-stable/sys/dev/twe/twevar.h
/freebsd-11-stable/sys/dev/tws/tws.c
/freebsd-11-stable/sys/dev/tws/tws.h
/freebsd-11-stable/sys/dev/tws/tws_cam.c
/freebsd-11-stable/sys/dev/tws/tws_hdm.c
/freebsd-11-stable/sys/dev/tws/tws_hdm.h
/freebsd-11-stable/sys/dev/tws/tws_services.c
/freebsd-11-stable/sys/dev/tws/tws_services.h
/freebsd-11-stable/sys/dev/tws/tws_user.c
/freebsd-11-stable/sys/dev/tws/tws_user.h
/freebsd-11-stable/sys/dev/tx/if_tx.c
/freebsd-11-stable/sys/dev/tx/if_txreg.h
/freebsd-11-stable/sys/dev/tx/if_txvar.h
/freebsd-11-stable/sys/dev/txp/3c990img.h
/freebsd-11-stable/sys/dev/txp/if_txp.c
/freebsd-11-stable/sys/dev/txp/if_txpreg.h
/freebsd-11-stable/sys/dev/uart/uart.h
/freebsd-11-stable/sys/dev/uart/uart_bus.h
/freebsd-11-stable/sys/dev/uart/uart_bus_acpi.c
/freebsd-11-stable/sys/dev/uart/uart_bus_ebus.c
/freebsd-11-stable/sys/dev/uart/uart_bus_fdt.c
/freebsd-11-stable/sys/dev/uart/uart_bus_isa.c
/freebsd-11-stable/sys/dev/uart/uart_bus_pccard.c
/freebsd-11-stable/sys/dev/uart/uart_bus_pci.c
/freebsd-11-stable/sys/dev/uart/uart_bus_puc.c
/freebsd-11-stable/sys/dev/uart/uart_bus_scc.c
/freebsd-11-stable/sys/dev/uart/uart_core.c
/freebsd-11-stable/sys/dev/uart/uart_cpu.h
/freebsd-11-stable/sys/dev/uart/uart_cpu_fdt.c
/freebsd-11-stable/sys/dev/uart/uart_cpu_powerpc.c
/freebsd-11-stable/sys/dev/uart/uart_cpu_sparc64.c
/freebsd-11-stable/sys/dev/uart/uart_cpu_x86.c
/freebsd-11-stable/sys/dev/uart/uart_dbg.c
/freebsd-11-stable/sys/dev/uart/uart_dev_imx.c
/freebsd-11-stable/sys/dev/uart/uart_dev_lpc.c
/freebsd-11-stable/sys/dev/uart/uart_dev_ns8250.c
/freebsd-11-stable/sys/dev/uart/uart_dev_ns8250.h
/freebsd-11-stable/sys/dev/uart/uart_dev_pl011.c
/freebsd-11-stable/sys/dev/uart/uart_dev_quicc.c
/freebsd-11-stable/sys/dev/uart/uart_dev_sab82532.c
/freebsd-11-stable/sys/dev/uart/uart_dev_ti8250.c
/freebsd-11-stable/sys/dev/uart/uart_dev_z8530.c
/freebsd-11-stable/sys/dev/uart/uart_kbd_sun.c
/freebsd-11-stable/sys/dev/uart/uart_kbd_sun.h
/freebsd-11-stable/sys/dev/uart/uart_subr.c
/freebsd-11-stable/sys/dev/uart/uart_tty.c
/freebsd-11-stable/sys/dev/ubsec/ubsec.c
/freebsd-11-stable/sys/dev/ubsec/ubsecreg.h
/freebsd-11-stable/sys/dev/ubsec/ubsecvar.h
/freebsd-11-stable/sys/dev/usb/controller/at91dci.c
/freebsd-11-stable/sys/dev/usb/controller/at91dci.h
/freebsd-11-stable/sys/dev/usb/controller/at91dci_atmelarm.c
/freebsd-11-stable/sys/dev/usb/controller/at91dci_fdt.c
/freebsd-11-stable/sys/dev/usb/controller/atmegadci.c
/freebsd-11-stable/sys/dev/usb/controller/atmegadci.h
/freebsd-11-stable/sys/dev/usb/controller/atmegadci_atmelarm.c
/freebsd-11-stable/sys/dev/usb/controller/avr32dci.c
/freebsd-11-stable/sys/dev/usb/controller/avr32dci.h
/freebsd-11-stable/sys/dev/usb/controller/dwc_otg.c
/freebsd-11-stable/sys/dev/usb/controller/dwc_otg.h
/freebsd-11-stable/sys/dev/usb/controller/dwc_otg_fdt.c
/freebsd-11-stable/sys/dev/usb/controller/dwc_otgreg.h
/freebsd-11-stable/sys/dev/usb/controller/ehci.c
/freebsd-11-stable/sys/dev/usb/controller/ehci.h
/freebsd-11-stable/sys/dev/usb/controller/ehci_fsl.c
/freebsd-11-stable/sys/dev/usb/controller/ehci_imx.c
/freebsd-11-stable/sys/dev/usb/controller/ehci_ixp4xx.c
/freebsd-11-stable/sys/dev/usb/controller/ehci_mv.c
/freebsd-11-stable/sys/dev/usb/controller/ehci_pci.c
/freebsd-11-stable/sys/dev/usb/controller/ehcireg.h
/freebsd-11-stable/sys/dev/usb/controller/musb_otg.c
/freebsd-11-stable/sys/dev/usb/controller/musb_otg.h
/freebsd-11-stable/sys/dev/usb/controller/musb_otg_atmelarm.c
/freebsd-11-stable/sys/dev/usb/controller/ohci.c
/freebsd-11-stable/sys/dev/usb/controller/ohci.h
/freebsd-11-stable/sys/dev/usb/controller/ohci_pci.c
/freebsd-11-stable/sys/dev/usb/controller/ohci_s3c24x0.c
/freebsd-11-stable/sys/dev/usb/controller/ohcireg.h
/freebsd-11-stable/sys/dev/usb/controller/uhci.c
/freebsd-11-stable/sys/dev/usb/controller/uhci.h
/freebsd-11-stable/sys/dev/usb/controller/uhci_pci.c
/freebsd-11-stable/sys/dev/usb/controller/uhcireg.h
/freebsd-11-stable/sys/dev/usb/controller/usb_controller.c
/freebsd-11-stable/sys/dev/usb/controller/uss820dci.c
/freebsd-11-stable/sys/dev/usb/controller/uss820dci.h
/freebsd-11-stable/sys/dev/usb/controller/uss820dci_atmelarm.c
/freebsd-11-stable/sys/dev/usb/controller/xhci.c
/freebsd-11-stable/sys/dev/usb/controller/xhci.h
/freebsd-11-stable/sys/dev/usb/controller/xhci_pci.c
/freebsd-11-stable/sys/dev/usb/controller/xhcireg.h
/freebsd-11-stable/sys/dev/usb/gadget/g_audio.c
/freebsd-11-stable/sys/dev/usb/gadget/g_audio.h
/freebsd-11-stable/sys/dev/usb/gadget/g_keyboard.c
/freebsd-11-stable/sys/dev/usb/gadget/g_keyboard.h
/freebsd-11-stable/sys/dev/usb/gadget/g_modem.c
/freebsd-11-stable/sys/dev/usb/gadget/g_modem.h
/freebsd-11-stable/sys/dev/usb/gadget/g_mouse.c
/freebsd-11-stable/sys/dev/usb/gadget/g_mouse.h
/freebsd-11-stable/sys/dev/usb/input/atp.c
/freebsd-11-stable/sys/dev/usb/input/uep.c
/freebsd-11-stable/sys/dev/usb/input/uhid.c
/freebsd-11-stable/sys/dev/usb/input/ukbd.c
/freebsd-11-stable/sys/dev/usb/input/ums.c
/freebsd-11-stable/sys/dev/usb/input/usb_rdesc.h
/freebsd-11-stable/sys/dev/usb/input/wsp.c
/freebsd-11-stable/sys/dev/usb/misc/udbp.c
/freebsd-11-stable/sys/dev/usb/misc/ufm.c
/freebsd-11-stable/sys/dev/usb/net/if_aue.c
/freebsd-11-stable/sys/dev/usb/net/if_auereg.h
/freebsd-11-stable/sys/dev/usb/net/if_axe.c
/freebsd-11-stable/sys/dev/usb/net/if_axereg.h
/freebsd-11-stable/sys/dev/usb/net/if_axge.c
/freebsd-11-stable/sys/dev/usb/net/if_axgereg.h
/freebsd-11-stable/sys/dev/usb/net/if_cdce.c
/freebsd-11-stable/sys/dev/usb/net/if_cdcereg.h
/freebsd-11-stable/sys/dev/usb/net/if_cue.c
/freebsd-11-stable/sys/dev/usb/net/if_cuereg.h
/freebsd-11-stable/sys/dev/usb/net/if_ipheth.c
/freebsd-11-stable/sys/dev/usb/net/if_iphethvar.h
/freebsd-11-stable/sys/dev/usb/net/if_kue.c
/freebsd-11-stable/sys/dev/usb/net/if_kuefw.h
/freebsd-11-stable/sys/dev/usb/net/if_kuereg.h
/freebsd-11-stable/sys/dev/usb/net/if_mos.c
/freebsd-11-stable/sys/dev/usb/net/if_mosreg.h
/freebsd-11-stable/sys/dev/usb/net/if_rue.c
/freebsd-11-stable/sys/dev/usb/net/if_ruereg.h
/freebsd-11-stable/sys/dev/usb/net/if_smsc.c
/freebsd-11-stable/sys/dev/usb/net/if_smscreg.h
/freebsd-11-stable/sys/dev/usb/net/if_udav.c
/freebsd-11-stable/sys/dev/usb/net/if_udavreg.h
/freebsd-11-stable/sys/dev/usb/net/if_usie.c
/freebsd-11-stable/sys/dev/usb/net/if_usievar.h
/freebsd-11-stable/sys/dev/usb/net/ruephy.c
/freebsd-11-stable/sys/dev/usb/net/ruephyreg.h
/freebsd-11-stable/sys/dev/usb/net/uhso.c
/freebsd-11-stable/sys/dev/usb/net/usb_ethernet.c
/freebsd-11-stable/sys/dev/usb/net/usb_ethernet.h
/freebsd-11-stable/sys/dev/usb/quirk/usb_quirk.c
/freebsd-11-stable/sys/dev/usb/quirk/usb_quirk.h
/freebsd-11-stable/sys/dev/usb/serial/ubsa.c
/freebsd-11-stable/sys/dev/usb/serial/ubser.c
/freebsd-11-stable/sys/dev/usb/serial/uchcom.c
/freebsd-11-stable/sys/dev/usb/serial/ucycom.c
/freebsd-11-stable/sys/dev/usb/serial/ufoma.c
/freebsd-11-stable/sys/dev/usb/serial/uftdi.c
/freebsd-11-stable/sys/dev/usb/serial/ugensa.c
/freebsd-11-stable/sys/dev/usb/serial/uipaq.c
/freebsd-11-stable/sys/dev/usb/serial/ulpt.c
/freebsd-11-stable/sys/dev/usb/serial/umcs.c
/freebsd-11-stable/sys/dev/usb/serial/umcs.h
/freebsd-11-stable/sys/dev/usb/serial/umct.c
/freebsd-11-stable/sys/dev/usb/serial/umodem.c
/freebsd-11-stable/sys/dev/usb/serial/uplcom.c
/freebsd-11-stable/sys/dev/usb/serial/usb_serial.c
/freebsd-11-stable/sys/dev/usb/serial/usb_serial.h
/freebsd-11-stable/sys/dev/usb/serial/uvisor.c
/freebsd-11-stable/sys/dev/usb/serial/uvscom.c
/freebsd-11-stable/sys/dev/usb/storage/umass.c
/freebsd-11-stable/sys/dev/usb/storage/urio.c
/freebsd-11-stable/sys/dev/usb/storage/ustorage_fs.c
/freebsd-11-stable/sys/dev/usb/template/usb_template.c
/freebsd-11-stable/sys/dev/usb/template/usb_template.h
/freebsd-11-stable/sys/dev/usb/template/usb_template_audio.c
/freebsd-11-stable/sys/dev/usb/template/usb_template_cdce.c
/freebsd-11-stable/sys/dev/usb/template/usb_template_kbd.c
/freebsd-11-stable/sys/dev/usb/template/usb_template_modem.c
/freebsd-11-stable/sys/dev/usb/template/usb_template_mouse.c
/freebsd-11-stable/sys/dev/usb/template/usb_template_msc.c
/freebsd-11-stable/sys/dev/usb/template/usb_template_mtp.c
/freebsd-11-stable/sys/dev/usb/ufm_ioctl.h
/freebsd-11-stable/sys/dev/usb/usb.h
/freebsd-11-stable/sys/dev/usb/usb_bus.h
/freebsd-11-stable/sys/dev/usb/usb_busdma.c
/freebsd-11-stable/sys/dev/usb/usb_busdma.h
/freebsd-11-stable/sys/dev/usb/usb_cdc.h
/freebsd-11-stable/sys/dev/usb/usb_controller.h
/freebsd-11-stable/sys/dev/usb/usb_core.c
/freebsd-11-stable/sys/dev/usb/usb_core.h
/freebsd-11-stable/sys/dev/usb/usb_debug.c
/freebsd-11-stable/sys/dev/usb/usb_debug.h
/freebsd-11-stable/sys/dev/usb/usb_dev.c
/freebsd-11-stable/sys/dev/usb/usb_dev.h
/freebsd-11-stable/sys/dev/usb/usb_device.c
/freebsd-11-stable/sys/dev/usb/usb_device.h
/freebsd-11-stable/sys/dev/usb/usb_dynamic.c
/freebsd-11-stable/sys/dev/usb/usb_dynamic.h
/freebsd-11-stable/sys/dev/usb/usb_endian.h
/freebsd-11-stable/sys/dev/usb/usb_error.c
/freebsd-11-stable/sys/dev/usb/usb_freebsd.h
/freebsd-11-stable/sys/dev/usb/usb_freebsd_loader.h
/freebsd-11-stable/sys/dev/usb/usb_generic.c
/freebsd-11-stable/sys/dev/usb/usb_generic.h
/freebsd-11-stable/sys/dev/usb/usb_handle_request.c
/freebsd-11-stable/sys/dev/usb/usb_hid.c
/freebsd-11-stable/sys/dev/usb/usb_hub.c
/freebsd-11-stable/sys/dev/usb/usb_hub.h
/freebsd-11-stable/sys/dev/usb/usb_ioctl.h
/freebsd-11-stable/sys/dev/usb/usb_lookup.c
/freebsd-11-stable/sys/dev/usb/usb_mbuf.c
/freebsd-11-stable/sys/dev/usb/usb_mbuf.h
/freebsd-11-stable/sys/dev/usb/usb_msctest.c
/freebsd-11-stable/sys/dev/usb/usb_msctest.h
/freebsd-11-stable/sys/dev/usb/usb_parse.c
/freebsd-11-stable/sys/dev/usb/usb_pci.h
/freebsd-11-stable/sys/dev/usb/usb_pf.c
/freebsd-11-stable/sys/dev/usb/usb_pf.h
/freebsd-11-stable/sys/dev/usb/usb_process.c
/freebsd-11-stable/sys/dev/usb/usb_process.h
/freebsd-11-stable/sys/dev/usb/usb_request.c
/freebsd-11-stable/sys/dev/usb/usb_request.h
/freebsd-11-stable/sys/dev/usb/usb_transfer.c
/freebsd-11-stable/sys/dev/usb/usb_transfer.h
/freebsd-11-stable/sys/dev/usb/usb_util.c
/freebsd-11-stable/sys/dev/usb/usb_util.h
/freebsd-11-stable/sys/dev/usb/usbdi.h
/freebsd-11-stable/sys/dev/usb/usbdi_util.h
/freebsd-11-stable/sys/dev/usb/usbhid.h
/freebsd-11-stable/sys/dev/usb/wlan/if_uath.c
/freebsd-11-stable/sys/dev/usb/wlan/if_zydfw.h
/freebsd-11-stable/sys/dev/vge/if_vge.c
/freebsd-11-stable/sys/dev/vge/if_vgereg.h
/freebsd-11-stable/sys/dev/vge/if_vgevar.h
/freebsd-11-stable/sys/dev/viawd/viawd.c
/freebsd-11-stable/sys/dev/viawd/viawd.h
/freebsd-11-stable/sys/dev/virtio/balloon/virtio_balloon.c
/freebsd-11-stable/sys/dev/virtio/balloon/virtio_balloon.h
/freebsd-11-stable/sys/dev/virtio/block/virtio_blk.c
/freebsd-11-stable/sys/dev/virtio/block/virtio_blk.h
/freebsd-11-stable/sys/dev/virtio/network/if_vtnet.c
/freebsd-11-stable/sys/dev/virtio/network/if_vtnetvar.h
/freebsd-11-stable/sys/dev/virtio/network/virtio_net.h
/freebsd-11-stable/sys/dev/virtio/pci/virtio_pci.c
/freebsd-11-stable/sys/dev/virtio/pci/virtio_pci.h
/freebsd-11-stable/sys/dev/virtio/random/virtio_random.c
/freebsd-11-stable/sys/dev/virtio/scsi/virtio_scsi.c
/freebsd-11-stable/sys/dev/virtio/scsi/virtio_scsi.h
/freebsd-11-stable/sys/dev/virtio/scsi/virtio_scsivar.h
/freebsd-11-stable/sys/dev/virtio/virtio.c
/freebsd-11-stable/sys/dev/virtio/virtio.h
/freebsd-11-stable/sys/dev/virtio/virtio_ring.h
/freebsd-11-stable/sys/dev/virtio/virtqueue.c
/freebsd-11-stable/sys/dev/virtio/virtqueue.h
/freebsd-11-stable/sys/dev/vkbd/vkbd.c
/freebsd-11-stable/sys/dev/vkbd/vkbd_var.h
/freebsd-11-stable/sys/dev/vr/if_vr.c
/freebsd-11-stable/sys/dev/vr/if_vrreg.h
/freebsd-11-stable/sys/dev/vt/colors/vt_termcolors.c
/freebsd-11-stable/sys/dev/vt/colors/vt_termcolors.h
/freebsd-11-stable/sys/dev/vt/font/vt_font_default.c
/freebsd-11-stable/sys/dev/vt/font/vt_mouse_cursor.c
/freebsd-11-stable/sys/dev/vt/hw/efifb/efifb.c
/freebsd-11-stable/sys/dev/vt/hw/fb/vt_early_fb.c
/freebsd-11-stable/sys/dev/vt/hw/fb/vt_fb.c
/freebsd-11-stable/sys/dev/vt/hw/fb/vt_fb.h
/freebsd-11-stable/sys/dev/vt/hw/ofwfb/ofwfb.c
/freebsd-11-stable/sys/dev/vt/logo/logo_freebsd.c
/freebsd-11-stable/sys/dev/vt/vt.h
/freebsd-11-stable/sys/dev/vt/vt_buf.c
/freebsd-11-stable/sys/dev/vt/vt_consolectl.c
/freebsd-11-stable/sys/dev/vt/vt_core.c
/freebsd-11-stable/sys/dev/vt/vt_font.c
/freebsd-11-stable/sys/dev/vt/vt_sysmouse.c
/freebsd-11-stable/sys/dev/vte/if_vte.c
/freebsd-11-stable/sys/dev/vte/if_vtereg.h
/freebsd-11-stable/sys/dev/vte/if_vtevar.h
/freebsd-11-stable/sys/dev/vx/if_vx.c
/freebsd-11-stable/sys/dev/vx/if_vx_pci.c
/freebsd-11-stable/sys/dev/vx/if_vxreg.h
/freebsd-11-stable/sys/dev/vx/if_vxvar.h
/freebsd-11-stable/sys/dev/vxge/include/vxge-debug.h
/freebsd-11-stable/sys/dev/vxge/include/vxge-defs.h
/freebsd-11-stable/sys/dev/vxge/include/vxge-list.h
/freebsd-11-stable/sys/dev/vxge/include/vxge-os-debug.h
/freebsd-11-stable/sys/dev/vxge/include/vxge-os-pal.h
/freebsd-11-stable/sys/dev/vxge/include/vxge-queue.h
/freebsd-11-stable/sys/dev/vxge/include/vxgehal-config.h
/freebsd-11-stable/sys/dev/vxge/include/vxgehal-ll.h
/freebsd-11-stable/sys/dev/vxge/include/vxgehal-mgmt.h
/freebsd-11-stable/sys/dev/vxge/include/vxgehal-mgmtaux.h
/freebsd-11-stable/sys/dev/vxge/include/vxgehal-stats.h
/freebsd-11-stable/sys/dev/vxge/include/vxgehal-status.h
/freebsd-11-stable/sys/dev/vxge/include/vxgehal-types.h
/freebsd-11-stable/sys/dev/vxge/include/vxgehal-version.h
/freebsd-11-stable/sys/dev/vxge/vxge-firmware.h
/freebsd-11-stable/sys/dev/vxge/vxge-osdep.h
/freebsd-11-stable/sys/dev/vxge/vxge.c
/freebsd-11-stable/sys/dev/vxge/vxge.h
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxge-queue.c
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-blockpool.c
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-blockpool.h
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-channel.c
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-channel.h
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-common-reg.h
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-config-priv.h
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-config.c
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-debug.h
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-device.c
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-device.h
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-doorbells.c
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-doorbells.h
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-driver.c
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-driver.h
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-fifo.c
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-fifo.h
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-ifmsg.c
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-ifmsg.h
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-legacy-reg.h
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-memrepair-reg.h
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-mgmt.c
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-mgmtaux.c
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-mm.c
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-mm.h
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-mrpcim-reg.h
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-mrpcim.c
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-mrpcim.h
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-pcicfgmgmt-reg.h
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-regdefs.h
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-regs.h
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-ring.c
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-ring.h
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-srpcim-reg.h
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-srpcim.c
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-srpcim.h
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-swapper.c
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-swapper.h
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-toc-reg.h
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-virtualpath.c
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-virtualpath.h
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-vpath-reg.h
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal-vpmgmt-reg.h
/freebsd-11-stable/sys/dev/vxge/vxgehal/vxgehal.h
/freebsd-11-stable/sys/dev/vxge/vxgell-version.h
/freebsd-11-stable/sys/dev/watchdog/watchdog.c
/freebsd-11-stable/sys/dev/wb/if_wb.c
/freebsd-11-stable/sys/dev/wb/if_wbreg.h
/freebsd-11-stable/sys/dev/wbwd/wbwd.c
/freebsd-11-stable/sys/dev/wi/if_wavelan_ieee.h
/freebsd-11-stable/sys/dev/wi/if_wi_macio.c
/freebsd-11-stable/sys/dev/wi/if_wi_pccard.c
/freebsd-11-stable/sys/dev/wi/if_wi_pci.c
/freebsd-11-stable/sys/dev/wi/if_wireg.h
/freebsd-11-stable/sys/dev/wi/if_wivar.h
/freebsd-11-stable/sys/dev/wtap/if_medium.c
/freebsd-11-stable/sys/dev/wtap/if_medium.h
/freebsd-11-stable/sys/dev/wtap/if_wtap.c
/freebsd-11-stable/sys/dev/wtap/if_wtap_module.c
/freebsd-11-stable/sys/dev/wtap/if_wtapioctl.h
/freebsd-11-stable/sys/dev/wtap/if_wtapvar.h
/freebsd-11-stable/sys/dev/wtap/plugins/visibility.c
/freebsd-11-stable/sys/dev/wtap/plugins/visibility.h
/freebsd-11-stable/sys/dev/wtap/plugins/visibility_ioctl.h
/freebsd-11-stable/sys/dev/wtap/plugins/wtap_plugin.h
/freebsd-11-stable/sys/dev/wtap/wtap_hal/hal.c
/freebsd-11-stable/sys/dev/wtap/wtap_hal/hal.h
/freebsd-11-stable/sys/dev/wtap/wtap_hal/handler.h
/freebsd-11-stable/sys/dev/xe/if_xe.c
/freebsd-11-stable/sys/dev/xe/if_xe_pccard.c
/freebsd-11-stable/sys/dev/xe/if_xereg.h
/freebsd-11-stable/sys/dev/xe/if_xevar.h
/freebsd-11-stable/sys/dev/xen/blkback/blkback.c
/freebsd-11-stable/sys/dev/xen/control/control.c
/freebsd-11-stable/sys/dev/xen/netback/netback.c
/freebsd-11-stable/sys/dev/xen/netback/netback_unit_tests.c
/freebsd-11-stable/sys/dev/xen/netfront/netfront.c
/freebsd-11-stable/sys/dev/xen/pcifront/pcifront.c
/freebsd-11-stable/sys/dev/xen/timer/timer.c
/freebsd-11-stable/sys/dev/xen/timer/timer.h
/freebsd-11-stable/sys/dev/xen/xenpci/xenpci.c
/freebsd-11-stable/sys/dev/xen/xenpci/xenpcivar.h
/freebsd-11-stable/sys/dev/xl/if_xl.c
/freebsd-11-stable/sys/dev/xl/if_xlreg.h
/freebsd-11-stable/sys/dev/xl/xlphy.c
/freebsd-11-stable/sys/fs/cd9660/cd9660_bmap.c
/freebsd-11-stable/sys/fs/cd9660/cd9660_lookup.c
/freebsd-11-stable/sys/fs/cd9660/cd9660_mount.h
/freebsd-11-stable/sys/fs/cd9660/cd9660_node.c
/freebsd-11-stable/sys/fs/cd9660/cd9660_node.h
/freebsd-11-stable/sys/fs/cd9660/cd9660_rrip.c
/freebsd-11-stable/sys/fs/cd9660/cd9660_rrip.h
/freebsd-11-stable/sys/fs/cd9660/cd9660_util.c
/freebsd-11-stable/sys/fs/cd9660/cd9660_vfsops.c
/freebsd-11-stable/sys/fs/cd9660/cd9660_vnops.c
/freebsd-11-stable/sys/fs/cd9660/iso.h
/freebsd-11-stable/sys/fs/cd9660/iso_rrip.h
/freebsd-11-stable/sys/fs/deadfs/dead_vnops.c
/freebsd-11-stable/sys/fs/ext2fs/ext2_alloc.c
/freebsd-11-stable/sys/fs/ext2fs/ext2_balloc.c
/freebsd-11-stable/sys/fs/ext2fs/ext2_bmap.c
/freebsd-11-stable/sys/fs/ext2fs/ext2_extern.h
/freebsd-11-stable/sys/fs/ext2fs/ext2_inode.c
/freebsd-11-stable/sys/fs/ext2fs/ext2_lookup.c
/freebsd-11-stable/sys/fs/ext2fs/ext2_mount.h
/freebsd-11-stable/sys/fs/ext2fs/ext2_subr.c
/freebsd-11-stable/sys/fs/ext2fs/ext2_vfsops.c
/freebsd-11-stable/sys/fs/ext2fs/ext2_vnops.c
/freebsd-11-stable/sys/fs/ext2fs/fs.h
/freebsd-11-stable/sys/fs/ext2fs/inode.h
/freebsd-11-stable/sys/fs/fdescfs/fdesc.h
/freebsd-11-stable/sys/fs/fdescfs/fdesc_vfsops.c
/freebsd-11-stable/sys/fs/fdescfs/fdesc_vnops.c
/freebsd-11-stable/sys/fs/fifofs/fifo_vnops.c
/freebsd-11-stable/sys/fs/fuse/fuse.h
/freebsd-11-stable/sys/fs/fuse/fuse_debug.h
/freebsd-11-stable/sys/fs/fuse/fuse_device.c
/freebsd-11-stable/sys/fs/fuse/fuse_file.c
/freebsd-11-stable/sys/fs/fuse/fuse_file.h
/freebsd-11-stable/sys/fs/fuse/fuse_internal.c
/freebsd-11-stable/sys/fs/fuse/fuse_internal.h
/freebsd-11-stable/sys/fs/fuse/fuse_io.c
/freebsd-11-stable/sys/fs/fuse/fuse_io.h
/freebsd-11-stable/sys/fs/fuse/fuse_ipc.c
/freebsd-11-stable/sys/fs/fuse/fuse_ipc.h
/freebsd-11-stable/sys/fs/fuse/fuse_kernel.h
/freebsd-11-stable/sys/fs/fuse/fuse_main.c
/freebsd-11-stable/sys/fs/fuse/fuse_node.c
/freebsd-11-stable/sys/fs/fuse/fuse_node.h
/freebsd-11-stable/sys/fs/fuse/fuse_param.h
/freebsd-11-stable/sys/fs/fuse/fuse_vfsops.c
/freebsd-11-stable/sys/fs/fuse/fuse_vnops.c
/freebsd-11-stable/sys/fs/nfs/nfs.h
/freebsd-11-stable/sys/fs/nfs/nfs_commonkrpc.c
/freebsd-11-stable/sys/fs/nfs/nfs_commonport.c
/freebsd-11-stable/sys/fs/nfs/nfs_commonsubs.c
/freebsd-11-stable/sys/fs/nfs/nfs_var.h
/freebsd-11-stable/sys/fs/nfs/nfsm_subs.h
/freebsd-11-stable/sys/fs/nfs/nfsport.h
/freebsd-11-stable/sys/fs/nfs/nfsproto.h
/freebsd-11-stable/sys/fs/nfs/nfsrvcache.h
/freebsd-11-stable/sys/fs/nfs/rpcv2.h
/freebsd-11-stable/sys/fs/nfs/xdr_subs.h
/freebsd-11-stable/sys/fs/nfsclient/nfs.h
/freebsd-11-stable/sys/fs/nfsclient/nfs_clbio.c
/freebsd-11-stable/sys/fs/nfsclient/nfs_clcomsubs.c
/freebsd-11-stable/sys/fs/nfsclient/nfs_clkrpc.c
/freebsd-11-stable/sys/fs/nfsclient/nfs_clnfsiod.c
/freebsd-11-stable/sys/fs/nfsclient/nfs_clnode.c
/freebsd-11-stable/sys/fs/nfsclient/nfs_clport.c
/freebsd-11-stable/sys/fs/nfsclient/nfs_clrpcops.c
/freebsd-11-stable/sys/fs/nfsclient/nfs_clsubs.c
/freebsd-11-stable/sys/fs/nfsclient/nfs_clvfsops.c
/freebsd-11-stable/sys/fs/nfsclient/nfs_clvnops.c
/freebsd-11-stable/sys/fs/nfsclient/nfsmount.h
/freebsd-11-stable/sys/fs/nfsclient/nfsnode.h
/freebsd-11-stable/sys/fs/nfsserver/nfs_nfsdcache.c
/freebsd-11-stable/sys/fs/nfsserver/nfs_nfsdkrpc.c
/freebsd-11-stable/sys/fs/nfsserver/nfs_nfsdport.c
/freebsd-11-stable/sys/fs/nfsserver/nfs_nfsdserv.c
/freebsd-11-stable/sys/fs/nfsserver/nfs_nfsdsocket.c
/freebsd-11-stable/sys/fs/nfsserver/nfs_nfsdsubs.c
/freebsd-11-stable/sys/fs/nullfs/null.h
/freebsd-11-stable/sys/fs/nullfs/null_subr.c
/freebsd-11-stable/sys/fs/nullfs/null_vfsops.c
/freebsd-11-stable/sys/fs/nullfs/null_vnops.c
/freebsd-11-stable/sys/fs/procfs/procfs.c
/freebsd-11-stable/sys/fs/procfs/procfs.h
/freebsd-11-stable/sys/fs/procfs/procfs_dbregs.c
/freebsd-11-stable/sys/fs/procfs/procfs_fpregs.c
/freebsd-11-stable/sys/fs/procfs/procfs_map.c
/freebsd-11-stable/sys/fs/procfs/procfs_mem.c
/freebsd-11-stable/sys/fs/procfs/procfs_note.c
/freebsd-11-stable/sys/fs/procfs/procfs_osrel.c
/freebsd-11-stable/sys/fs/procfs/procfs_regs.c
/freebsd-11-stable/sys/fs/procfs/procfs_rlimit.c
/freebsd-11-stable/sys/fs/procfs/procfs_status.c
/freebsd-11-stable/sys/fs/procfs/procfs_type.c
/freebsd-11-stable/sys/fs/unionfs/union.h
/freebsd-11-stable/sys/fs/unionfs/union_subr.c
/freebsd-11-stable/sys/fs/unionfs/union_vfsops.c
/freebsd-11-stable/sys/fs/unionfs/union_vnops.c
/freebsd-11-stable/sys/geom/vinum/geom_vinum_share.c
/freebsd-11-stable/sys/geom/vinum/geom_vinum_subr.c
/freebsd-11-stable/sys/geom/vinum/geom_vinum_var.h
/freebsd-11-stable/sys/i386/acpica/acpi_machdep.c
/freebsd-11-stable/sys/i386/bios/smapi.c
/freebsd-11-stable/sys/i386/i386/atomic.c
/freebsd-11-stable/sys/i386/i386/bios.c
/freebsd-11-stable/sys/i386/i386/bpf_jit_machdep.c
/freebsd-11-stable/sys/i386/i386/bpf_jit_machdep.h
/freebsd-11-stable/sys/i386/i386/elf_machdep.c
/freebsd-11-stable/sys/i386/i386/gdb_machdep.c
/freebsd-11-stable/sys/i386/i386/genassym.c
/freebsd-11-stable/sys/i386/i386/geode.c
/freebsd-11-stable/sys/i386/i386/in_cksum.c
/freebsd-11-stable/sys/i386/i386/initcpu.c
/freebsd-11-stable/sys/i386/i386/io.c
/freebsd-11-stable/sys/i386/i386/k6_mem.c
/freebsd-11-stable/sys/i386/i386/longrun.c
/freebsd-11-stable/sys/i386/i386/machdep.c
/freebsd-11-stable/sys/i386/i386/mem.c
/freebsd-11-stable/sys/i386/i386/minidump_machdep.c
/freebsd-11-stable/sys/i386/i386/mp_machdep.c
/freebsd-11-stable/sys/i386/i386/pmap.c
/freebsd-11-stable/sys/i386/i386/ptrace_machdep.c
/freebsd-11-stable/sys/i386/i386/sys_machdep.c
/freebsd-11-stable/sys/i386/i386/trap.c
/freebsd-11-stable/sys/i386/i386/uio_machdep.c
/freebsd-11-stable/sys/i386/i386/vm86.c
/freebsd-11-stable/sys/i386/i386/vm_machdep.c
/freebsd-11-stable/sys/i386/ibcs2/coff.h
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_dirent.h
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_errno.c
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_errno.h
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_fcntl.c
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_fcntl.h
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_ioctl.c
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_ipc.c
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_ipc.h
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_isc.c
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_misc.c
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_mount.h
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_msg.c
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_other.c
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_signal.c
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_signal.h
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_socksys.c
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_socksys.h
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_stat.c
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_stat.h
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_statfs.h
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_stropts.h
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_sysi86.c
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_sysvec.c
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_termios.h
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_time.h
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_types.h
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_unistd.h
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_ustat.h
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_util.c
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_util.h
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_utime.h
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_utsname.h
/freebsd-11-stable/sys/i386/ibcs2/ibcs2_xenix.c
/freebsd-11-stable/sys/i386/ibcs2/imgact_coff.c
/freebsd-11-stable/sys/i386/include/_bus.h
/freebsd-11-stable/sys/i386/include/asm.h
/freebsd-11-stable/sys/i386/include/asmacros.h
/freebsd-11-stable/sys/i386/include/atomic.h
/freebsd-11-stable/sys/i386/include/bootinfo.h
/freebsd-11-stable/sys/i386/include/bus_dma.h
/freebsd-11-stable/sys/i386/include/counter.h
/freebsd-11-stable/sys/i386/include/cpu.h
/freebsd-11-stable/sys/i386/include/cpufunc.h
/freebsd-11-stable/sys/i386/include/cputypes.h
/freebsd-11-stable/sys/i386/include/elan_mmcr.h
/freebsd-11-stable/sys/i386/include/exec.h
/freebsd-11-stable/sys/i386/include/floatingpoint.h
/freebsd-11-stable/sys/i386/include/gdb_machdep.h
/freebsd-11-stable/sys/i386/include/ieeefp.h
/freebsd-11-stable/sys/i386/include/if_wl_wavelan.h
/freebsd-11-stable/sys/i386/include/in_cksum.h
/freebsd-11-stable/sys/i386/include/intr_machdep.h
/freebsd-11-stable/sys/i386/include/ioctl_bt848.h
/freebsd-11-stable/sys/i386/include/ioctl_meteor.h
/freebsd-11-stable/sys/i386/include/iodev.h
/freebsd-11-stable/sys/i386/include/kdb.h
/freebsd-11-stable/sys/i386/include/limits.h
/freebsd-11-stable/sys/i386/include/md_var.h
/freebsd-11-stable/sys/i386/include/memdev.h
/freebsd-11-stable/sys/i386/include/minidump.h
/freebsd-11-stable/sys/i386/include/mp_watchdog.h
/freebsd-11-stable/sys/i386/include/npx.h
/freebsd-11-stable/sys/i386/include/param.h
/freebsd-11-stable/sys/i386/include/pc/bios.h
/freebsd-11-stable/sys/i386/include/pcaudioio.h
/freebsd-11-stable/sys/i386/include/pcb.h
/freebsd-11-stable/sys/i386/include/pcb_ext.h
/freebsd-11-stable/sys/i386/include/pcpu.h
/freebsd-11-stable/sys/i386/include/pmap.h
/freebsd-11-stable/sys/i386/include/pmc_mdep.h
/freebsd-11-stable/sys/i386/include/ppireg.h
/freebsd-11-stable/sys/i386/include/proc.h
/freebsd-11-stable/sys/i386/include/profile.h
/freebsd-11-stable/sys/i386/include/reloc.h
/freebsd-11-stable/sys/i386/include/runq.h
/freebsd-11-stable/sys/i386/include/segments.h
/freebsd-11-stable/sys/i386/include/sf_buf.h
/freebsd-11-stable/sys/i386/include/sigframe.h
/freebsd-11-stable/sys/i386/include/signal.h
/freebsd-11-stable/sys/i386/include/smapi.h
/freebsd-11-stable/sys/i386/include/timerreg.h
/freebsd-11-stable/sys/i386/include/tss.h
/freebsd-11-stable/sys/i386/include/ucontext.h
/freebsd-11-stable/sys/i386/include/varargs.h
/freebsd-11-stable/sys/i386/include/vm.h
/freebsd-11-stable/sys/i386/include/vm86.h
/freebsd-11-stable/sys/i386/include/vmparam.h
/freebsd-11-stable/sys/i386/isa/ccbque.h
/freebsd-11-stable/sys/i386/isa/elink.c
/freebsd-11-stable/sys/i386/isa/elink.h
/freebsd-11-stable/sys/i386/isa/pmtimer.c
/freebsd-11-stable/sys/i386/isa/prof_machdep.c
/freebsd-11-stable/sys/i386/linux/imgact_linux.c
/freebsd-11-stable/sys/i386/linux/linux.h
/freebsd-11-stable/sys/i386/linux/linux_dummy.c
/freebsd-11-stable/sys/i386/linux/linux_machdep.c
/freebsd-11-stable/sys/i386/linux/linux_ptrace.c
/freebsd-11-stable/sys/i386/linux/linux_sysvec.c
/freebsd-11-stable/sys/i386/pci/pci_cfgreg.c
/freebsd-11-stable/sys/i386/pci/pci_pir.c
/freebsd-11-stable/sys/isa/isareg.h
/freebsd-11-stable/sys/isa/pnpreg.h
/freebsd-11-stable/sys/isa/rtc.h
/freebsd-11-stable/sys/kern/init_main.c
/freebsd-11-stable/sys/kern/kern_acct.c
/freebsd-11-stable/sys/kern/kern_clock.c
/freebsd-11-stable/sys/kern/kern_cons.c
/freebsd-11-stable/sys/kern/kern_descrip.c
/freebsd-11-stable/sys/kern/kern_exit.c
/freebsd-11-stable/sys/kern/kern_fork.c
/freebsd-11-stable/sys/kern/kern_ktrace.c
/freebsd-11-stable/sys/kern/kern_lockf.c
/freebsd-11-stable/sys/kern/kern_malloc.c
/freebsd-11-stable/sys/kern/kern_mib.c
/freebsd-11-stable/sys/kern/kern_proc.c
/freebsd-11-stable/sys/kern/kern_prot.c
/freebsd-11-stable/sys/kern/kern_resource.c
/freebsd-11-stable/sys/kern/kern_rmlock.c
/freebsd-11-stable/sys/kern/kern_shutdown.c
/freebsd-11-stable/sys/kern/kern_sig.c
/freebsd-11-stable/sys/kern/kern_synch.c
/freebsd-11-stable/sys/kern/kern_sysctl.c
/freebsd-11-stable/sys/kern/kern_time.c
/freebsd-11-stable/sys/kern/kern_timeout.c
/freebsd-11-stable/sys/kern/kern_xxx.c
/freebsd-11-stable/sys/kern/ksched.c
/freebsd-11-stable/sys/kern/p1003_1b.c
/freebsd-11-stable/sys/kern/posix4_mib.c
/freebsd-11-stable/sys/kern/sched_4bsd.c
/freebsd-11-stable/sys/kern/subr_autoconf.c
/freebsd-11-stable/sys/kern/subr_blist.c
/freebsd-11-stable/sys/kern/subr_clock.c
/freebsd-11-stable/sys/kern/subr_hash.c
/freebsd-11-stable/sys/kern/subr_log.c
/freebsd-11-stable/sys/kern/subr_mchain.c
/freebsd-11-stable/sys/kern/subr_param.c
/freebsd-11-stable/sys/kern/subr_pcpu.c
/freebsd-11-stable/sys/kern/subr_prf.c
/freebsd-11-stable/sys/kern/subr_prof.c
/freebsd-11-stable/sys/kern/subr_rtc.c
/freebsd-11-stable/sys/kern/subr_scanf.c
/freebsd-11-stable/sys/kern/subr_sglist.c
/freebsd-11-stable/sys/kern/subr_syscall.c
/freebsd-11-stable/sys/kern/subr_trap.c
/freebsd-11-stable/sys/kern/subr_uio.c
/freebsd-11-stable/sys/kern/sys_generic.c
/freebsd-11-stable/sys/kern/sys_socket.c
/freebsd-11-stable/sys/kern/tty_compat.c
/freebsd-11-stable/sys/kern/tty_info.c
/freebsd-11-stable/sys/kern/uipc_domain.c
/freebsd-11-stable/sys/kern/uipc_mbuf.c
/freebsd-11-stable/sys/kern/uipc_mbuf2.c
/freebsd-11-stable/sys/kern/uipc_sockbuf.c
/freebsd-11-stable/sys/kern/uipc_socket.c
/freebsd-11-stable/sys/kern/uipc_syscalls.c
/freebsd-11-stable/sys/kern/uipc_usrreq.c
/freebsd-11-stable/sys/kern/vfs_cache.c
/freebsd-11-stable/sys/kern/vfs_cluster.c
/freebsd-11-stable/sys/kern/vfs_default.c
/freebsd-11-stable/sys/kern/vfs_export.c
/freebsd-11-stable/sys/kern/vfs_init.c
/freebsd-11-stable/sys/kern/vfs_lookup.c
/freebsd-11-stable/sys/kern/vfs_mount.c
/freebsd-11-stable/sys/kern/vfs_mountroot.c
/freebsd-11-stable/sys/kern/vfs_subr.c
/freebsd-11-stable/sys/kern/vfs_syscalls.c
/freebsd-11-stable/sys/kern/vfs_vnops.c
/freebsd-11-stable/sys/libkern/arm/muldi3.c
/freebsd-11-stable/sys/libkern/ashldi3.c
/freebsd-11-stable/sys/libkern/ashrdi3.c
/freebsd-11-stable/sys/libkern/bcmp.c
/freebsd-11-stable/sys/libkern/bsearch.c
/freebsd-11-stable/sys/libkern/cmpdi2.c
/freebsd-11-stable/sys/libkern/divdi3.c
/freebsd-11-stable/sys/libkern/ffs.c
/freebsd-11-stable/sys/libkern/ffsl.c
/freebsd-11-stable/sys/libkern/fls.c
/freebsd-11-stable/sys/libkern/flsl.c
/freebsd-11-stable/sys/libkern/flsll.c
/freebsd-11-stable/sys/libkern/fnmatch.c
/freebsd-11-stable/sys/libkern/lshrdi3.c
/freebsd-11-stable/sys/libkern/mcount.c
/freebsd-11-stable/sys/libkern/memchr.c
/freebsd-11-stable/sys/libkern/memcmp.c
/freebsd-11-stable/sys/libkern/moddi3.c
/freebsd-11-stable/sys/libkern/qdivrem.c
/freebsd-11-stable/sys/libkern/qsort.c
/freebsd-11-stable/sys/libkern/quad.h
/freebsd-11-stable/sys/libkern/random.c
/freebsd-11-stable/sys/libkern/scanc.c
/freebsd-11-stable/sys/libkern/strcasecmp.c
/freebsd-11-stable/sys/libkern/strcat.c
/freebsd-11-stable/sys/libkern/strchr.c
/freebsd-11-stable/sys/libkern/strcmp.c
/freebsd-11-stable/sys/libkern/strcpy.c
/freebsd-11-stable/sys/libkern/strncmp.c
/freebsd-11-stable/sys/libkern/strncpy.c
/freebsd-11-stable/sys/libkern/strrchr.c
/freebsd-11-stable/sys/libkern/strsep.c
/freebsd-11-stable/sys/libkern/strstr.c
/freebsd-11-stable/sys/libkern/strtol.c
/freebsd-11-stable/sys/libkern/strtoq.c
/freebsd-11-stable/sys/libkern/strtoul.c
/freebsd-11-stable/sys/libkern/strtouq.c
/freebsd-11-stable/sys/libkern/ucmpdi2.c
/freebsd-11-stable/sys/libkern/udivdi3.c
/freebsd-11-stable/sys/libkern/umoddi3.c
/freebsd-11-stable/sys/mips/adm5120/adm5120_machdep.c
/freebsd-11-stable/sys/mips/adm5120/adm5120reg.h
/freebsd-11-stable/sys/mips/adm5120/admpci.c
/freebsd-11-stable/sys/mips/adm5120/console.c
/freebsd-11-stable/sys/mips/adm5120/if_admsw.c
/freebsd-11-stable/sys/mips/adm5120/if_admswreg.h
/freebsd-11-stable/sys/mips/adm5120/if_admswvar.h
/freebsd-11-stable/sys/mips/adm5120/obio.c
/freebsd-11-stable/sys/mips/adm5120/obiovar.h
/freebsd-11-stable/sys/mips/adm5120/uart_bus_adm5120.c
/freebsd-11-stable/sys/mips/adm5120/uart_cpu_adm5120.c
/freebsd-11-stable/sys/mips/adm5120/uart_dev_adm5120.c
/freebsd-11-stable/sys/mips/adm5120/uart_dev_adm5120.h
/freebsd-11-stable/sys/mips/alchemy/alchemy_machdep.c
/freebsd-11-stable/sys/mips/alchemy/aureg.h
/freebsd-11-stable/sys/mips/alchemy/obio.c
/freebsd-11-stable/sys/mips/alchemy/uart_bus_alchemy.c
/freebsd-11-stable/sys/mips/alchemy/uart_cpu_alchemy.c
/freebsd-11-stable/sys/mips/atheros/apb.c
/freebsd-11-stable/sys/mips/atheros/apbvar.h
/freebsd-11-stable/sys/mips/atheros/ar71xx_bus_space_reversed.c
/freebsd-11-stable/sys/mips/atheros/ar71xx_bus_space_reversed.h
/freebsd-11-stable/sys/mips/atheros/ar71xx_chip.c
/freebsd-11-stable/sys/mips/atheros/ar71xx_chip.h
/freebsd-11-stable/sys/mips/atheros/ar71xx_cpudef.h
/freebsd-11-stable/sys/mips/atheros/ar71xx_ehci.c
/freebsd-11-stable/sys/mips/atheros/ar71xx_fixup.c
/freebsd-11-stable/sys/mips/atheros/ar71xx_fixup.h
/freebsd-11-stable/sys/mips/atheros/ar71xx_gpio.c
/freebsd-11-stable/sys/mips/atheros/ar71xx_gpiovar.h
/freebsd-11-stable/sys/mips/atheros/ar71xx_machdep.c
/freebsd-11-stable/sys/mips/atheros/ar71xx_ohci.c
/freebsd-11-stable/sys/mips/atheros/ar71xx_pci.c
/freebsd-11-stable/sys/mips/atheros/ar71xx_pci_bus_space.c
/freebsd-11-stable/sys/mips/atheros/ar71xx_pci_bus_space.h
/freebsd-11-stable/sys/mips/atheros/ar71xx_setup.c
/freebsd-11-stable/sys/mips/atheros/ar71xx_setup.h
/freebsd-11-stable/sys/mips/atheros/ar71xx_spi.c
/freebsd-11-stable/sys/mips/atheros/ar71xx_wdog.c
/freebsd-11-stable/sys/mips/atheros/ar71xxreg.h
/freebsd-11-stable/sys/mips/atheros/ar724x_chip.c
/freebsd-11-stable/sys/mips/atheros/ar724x_chip.h
/freebsd-11-stable/sys/mips/atheros/ar724x_pci.c
/freebsd-11-stable/sys/mips/atheros/ar724xreg.h
/freebsd-11-stable/sys/mips/atheros/ar91xx_chip.c
/freebsd-11-stable/sys/mips/atheros/ar91xx_chip.h
/freebsd-11-stable/sys/mips/atheros/ar91xxreg.h
/freebsd-11-stable/sys/mips/atheros/ar933x_chip.c
/freebsd-11-stable/sys/mips/atheros/ar933x_chip.h
/freebsd-11-stable/sys/mips/atheros/ar933x_uart.h
/freebsd-11-stable/sys/mips/atheros/ar933xreg.h
/freebsd-11-stable/sys/mips/atheros/ar934x_chip.c
/freebsd-11-stable/sys/mips/atheros/ar934x_chip.h
/freebsd-11-stable/sys/mips/atheros/ar934xreg.h
/freebsd-11-stable/sys/mips/atheros/if_arge.c
/freebsd-11-stable/sys/mips/atheros/if_argevar.h
/freebsd-11-stable/sys/mips/atheros/pcf2123_rtc.c
/freebsd-11-stable/sys/mips/atheros/pcf2123reg.h
/freebsd-11-stable/sys/mips/atheros/uart_bus_ar71xx.c
/freebsd-11-stable/sys/mips/atheros/uart_bus_ar933x.c
/freebsd-11-stable/sys/mips/atheros/uart_cpu_ar71xx.c
/freebsd-11-stable/sys/mips/atheros/uart_cpu_ar933x.c
/freebsd-11-stable/sys/mips/atheros/uart_dev_ar933x.c
/freebsd-11-stable/sys/mips/atheros/uart_dev_ar933x.h
/freebsd-11-stable/sys/mips/beri/beri_machdep.c
/freebsd-11-stable/sys/mips/beri/beri_pic.c
/freebsd-11-stable/sys/mips/cavium/ciu.c
/freebsd-11-stable/sys/mips/cavium/cryptocteon/cavium_crypto.c
/freebsd-11-stable/sys/mips/cavium/cvmx_config.h
/freebsd-11-stable/sys/mips/cavium/if_octm.c
/freebsd-11-stable/sys/mips/cavium/obio.c
/freebsd-11-stable/sys/mips/cavium/obiovar.h
/freebsd-11-stable/sys/mips/cavium/octe/cavium-ethernet.h
/freebsd-11-stable/sys/mips/cavium/octe/ethernet-common.c
/freebsd-11-stable/sys/mips/cavium/octe/ethernet-common.h
/freebsd-11-stable/sys/mips/cavium/octe/ethernet-defines.h
/freebsd-11-stable/sys/mips/cavium/octe/ethernet-headers.h
/freebsd-11-stable/sys/mips/cavium/octe/ethernet-mdio.c
/freebsd-11-stable/sys/mips/cavium/octe/ethernet-mdio.h
/freebsd-11-stable/sys/mips/cavium/octe/ethernet-mem.c
/freebsd-11-stable/sys/mips/cavium/octe/ethernet-mem.h
/freebsd-11-stable/sys/mips/cavium/octe/ethernet-mv88e61xx.c
/freebsd-11-stable/sys/mips/cavium/octe/ethernet-mv88e61xx.h
/freebsd-11-stable/sys/mips/cavium/octe/ethernet-rgmii.c
/freebsd-11-stable/sys/mips/cavium/octe/ethernet-rx.c
/freebsd-11-stable/sys/mips/cavium/octe/ethernet-rx.h
/freebsd-11-stable/sys/mips/cavium/octe/ethernet-sgmii.c
/freebsd-11-stable/sys/mips/cavium/octe/ethernet-spi.c
/freebsd-11-stable/sys/mips/cavium/octe/ethernet-tx.c
/freebsd-11-stable/sys/mips/cavium/octe/ethernet-tx.h
/freebsd-11-stable/sys/mips/cavium/octe/ethernet-util.h
/freebsd-11-stable/sys/mips/cavium/octe/ethernet-xaui.c
/freebsd-11-stable/sys/mips/cavium/octe/ethernet.c
/freebsd-11-stable/sys/mips/cavium/octe/mv88e61xxphy.c
/freebsd-11-stable/sys/mips/cavium/octe/mv88e61xxphyreg.h
/freebsd-11-stable/sys/mips/cavium/octe/octe.c
/freebsd-11-stable/sys/mips/cavium/octe/octebus.c
/freebsd-11-stable/sys/mips/cavium/octe/octebusvar.h
/freebsd-11-stable/sys/mips/cavium/octe/wrapper-cvmx-includes.h
/freebsd-11-stable/sys/mips/cavium/octeon_cop2.h
/freebsd-11-stable/sys/mips/cavium/octeon_ds1337.c
/freebsd-11-stable/sys/mips/cavium/octeon_ebt3000_cf.c
/freebsd-11-stable/sys/mips/cavium/octeon_gpio.c
/freebsd-11-stable/sys/mips/cavium/octeon_gpiovar.h
/freebsd-11-stable/sys/mips/cavium/octeon_irq.h
/freebsd-11-stable/sys/mips/cavium/octeon_machdep.c
/freebsd-11-stable/sys/mips/cavium/octeon_mp.c
/freebsd-11-stable/sys/mips/cavium/octeon_pci_console.c
/freebsd-11-stable/sys/mips/cavium/octeon_pcmap_regs.h
/freebsd-11-stable/sys/mips/cavium/octeon_pmc.c
/freebsd-11-stable/sys/mips/cavium/octeon_rnd.c
/freebsd-11-stable/sys/mips/cavium/octeon_rtc.c
/freebsd-11-stable/sys/mips/cavium/octeon_wdog.c
/freebsd-11-stable/sys/mips/cavium/octopci.c
/freebsd-11-stable/sys/mips/cavium/octopci_bus_space.c
/freebsd-11-stable/sys/mips/cavium/octopcireg.h
/freebsd-11-stable/sys/mips/cavium/octopcivar.h
/freebsd-11-stable/sys/mips/cavium/uart_bus_octeonusart.c
/freebsd-11-stable/sys/mips/cavium/uart_cpu_octeonusart.c
/freebsd-11-stable/sys/mips/cavium/uart_dev_oct16550.c
/freebsd-11-stable/sys/mips/cavium/usb/octusb.c
/freebsd-11-stable/sys/mips/cavium/usb/octusb.h
/freebsd-11-stable/sys/mips/cavium/usb/octusb_octeon.c
/freebsd-11-stable/sys/mips/gxemul/gxemul_machdep.c
/freebsd-11-stable/sys/mips/gxemul/mpreg.h
/freebsd-11-stable/sys/mips/idt/idt_machdep.c
/freebsd-11-stable/sys/mips/idt/idtpci.c
/freebsd-11-stable/sys/mips/idt/idtreg.h
/freebsd-11-stable/sys/mips/idt/if_kr.c
/freebsd-11-stable/sys/mips/idt/if_krreg.h
/freebsd-11-stable/sys/mips/idt/obio.c
/freebsd-11-stable/sys/mips/idt/obiovar.h
/freebsd-11-stable/sys/mips/idt/uart_bus_rc32434.c
/freebsd-11-stable/sys/mips/idt/uart_cpu_rc32434.c
/freebsd-11-stable/sys/mips/include/_align.h
/freebsd-11-stable/sys/mips/include/_bus.h
/freebsd-11-stable/sys/mips/include/_inttypes.h
/freebsd-11-stable/sys/mips/include/_limits.h
/freebsd-11-stable/sys/mips/include/_stdint.h
/freebsd-11-stable/sys/mips/include/_types.h
/freebsd-11-stable/sys/mips/include/asm.h
/freebsd-11-stable/sys/mips/include/atomic.h
/freebsd-11-stable/sys/mips/include/bootinfo.h
/freebsd-11-stable/sys/mips/include/bus.h
/freebsd-11-stable/sys/mips/include/bus_dma.h
/freebsd-11-stable/sys/mips/include/cache.h
/freebsd-11-stable/sys/mips/include/cache_mipsNN.h
/freebsd-11-stable/sys/mips/include/cache_r4k.h
/freebsd-11-stable/sys/mips/include/counter.h
/freebsd-11-stable/sys/mips/include/cpu.h
/freebsd-11-stable/sys/mips/include/cpufunc.h
/freebsd-11-stable/sys/mips/include/cpuinfo.h
/freebsd-11-stable/sys/mips/include/cpuregs.h
/freebsd-11-stable/sys/mips/include/db_machdep.h
/freebsd-11-stable/sys/mips/include/elf.h
/freebsd-11-stable/sys/mips/include/endian.h
/freebsd-11-stable/sys/mips/include/exec.h
/freebsd-11-stable/sys/mips/include/fdt.h
/freebsd-11-stable/sys/mips/include/float.h
/freebsd-11-stable/sys/mips/include/floatingpoint.h
/freebsd-11-stable/sys/mips/include/fls64.h
/freebsd-11-stable/sys/mips/include/frame.h
/freebsd-11-stable/sys/mips/include/gdb_machdep.h
/freebsd-11-stable/sys/mips/include/hwfunc.h
/freebsd-11-stable/sys/mips/include/ieee.h
/freebsd-11-stable/sys/mips/include/in_cksum.h
/freebsd-11-stable/sys/mips/include/intr_machdep.h
/freebsd-11-stable/sys/mips/include/kdb.h
/freebsd-11-stable/sys/mips/include/limits.h
/freebsd-11-stable/sys/mips/include/md_var.h
/freebsd-11-stable/sys/mips/include/memdev.h
/freebsd-11-stable/sys/mips/include/metadata.h
/freebsd-11-stable/sys/mips/include/minidump.h
/freebsd-11-stable/sys/mips/include/mips_opcode.h
/freebsd-11-stable/sys/mips/include/octeon_cop2.h
/freebsd-11-stable/sys/mips/include/ofw_machdep.h
/freebsd-11-stable/sys/mips/include/param.h
/freebsd-11-stable/sys/mips/include/pcb.h
/freebsd-11-stable/sys/mips/include/pcpu.h
/freebsd-11-stable/sys/mips/include/pmap.h
/freebsd-11-stable/sys/mips/include/proc.h
/freebsd-11-stable/sys/mips/include/profile.h
/freebsd-11-stable/sys/mips/include/pte.h
/freebsd-11-stable/sys/mips/include/ptrace.h
/freebsd-11-stable/sys/mips/include/reg.h
/freebsd-11-stable/sys/mips/include/regdef.h
/freebsd-11-stable/sys/mips/include/regnum.h
/freebsd-11-stable/sys/mips/include/reloc.h
/freebsd-11-stable/sys/mips/include/runq.h
/freebsd-11-stable/sys/mips/include/sc_machdep.h
/freebsd-11-stable/sys/mips/include/sf_buf.h
/freebsd-11-stable/sys/mips/include/sigframe.h
/freebsd-11-stable/sys/mips/include/signal.h
/freebsd-11-stable/sys/mips/include/sysarch.h
/freebsd-11-stable/sys/mips/include/tlb.h
/freebsd-11-stable/sys/mips/include/tls.h
/freebsd-11-stable/sys/mips/include/trap.h
/freebsd-11-stable/sys/mips/include/ucontext.h
/freebsd-11-stable/sys/mips/include/varargs.h
/freebsd-11-stable/sys/mips/include/vdso.h
/freebsd-11-stable/sys/mips/include/vm.h
/freebsd-11-stable/sys/mips/include/vmparam.h
/freebsd-11-stable/sys/mips/malta/gt.c
/freebsd-11-stable/sys/mips/malta/gt_pci.c
/freebsd-11-stable/sys/mips/malta/gt_pci_bus_space.c
/freebsd-11-stable/sys/mips/malta/gt_pci_bus_space.h
/freebsd-11-stable/sys/mips/malta/gtreg.h
/freebsd-11-stable/sys/mips/malta/gtvar.h
/freebsd-11-stable/sys/mips/malta/malta_machdep.c
/freebsd-11-stable/sys/mips/malta/maltareg.h
/freebsd-11-stable/sys/mips/malta/obio.c
/freebsd-11-stable/sys/mips/malta/obiovar.h
/freebsd-11-stable/sys/mips/malta/uart_bus_maltausart.c
/freebsd-11-stable/sys/mips/malta/uart_cpu_maltausart.c
/freebsd-11-stable/sys/mips/malta/yamon.c
/freebsd-11-stable/sys/mips/malta/yamon.h
/freebsd-11-stable/sys/mips/mips/autoconf.c
/freebsd-11-stable/sys/mips/mips/bus_space_generic.c
/freebsd-11-stable/sys/mips/mips/busdma_machdep.c
/freebsd-11-stable/sys/mips/mips/cache.c
/freebsd-11-stable/sys/mips/mips/cache_mipsNN.c
/freebsd-11-stable/sys/mips/mips/cpu.c
/freebsd-11-stable/sys/mips/mips/db_disasm.c
/freebsd-11-stable/sys/mips/mips/db_interface.c
/freebsd-11-stable/sys/mips/mips/db_trace.c
/freebsd-11-stable/sys/mips/mips/dump_machdep.c
/freebsd-11-stable/sys/mips/mips/elf_machdep.c
/freebsd-11-stable/sys/mips/mips/elf_trampoline.c
/freebsd-11-stable/sys/mips/mips/freebsd32_machdep.c
/freebsd-11-stable/sys/mips/mips/gdb_machdep.c
/freebsd-11-stable/sys/mips/mips/genassym.c
/freebsd-11-stable/sys/mips/mips/in_cksum.c
/freebsd-11-stable/sys/mips/mips/intr_machdep.c
/freebsd-11-stable/sys/mips/mips/libkern_machdep.c
/freebsd-11-stable/sys/mips/mips/machdep.c
/freebsd-11-stable/sys/mips/mips/mem.c
/freebsd-11-stable/sys/mips/mips/minidump_machdep.c
/freebsd-11-stable/sys/mips/mips/mp_machdep.c
/freebsd-11-stable/sys/mips/mips/octeon_cop2.c
/freebsd-11-stable/sys/mips/mips/pm_machdep.c
/freebsd-11-stable/sys/mips/mips/pmap.c
/freebsd-11-stable/sys/mips/mips/ptrace_machdep.c
/freebsd-11-stable/sys/mips/mips/sc_machdep.c
/freebsd-11-stable/sys/mips/mips/stack_machdep.c
/freebsd-11-stable/sys/mips/mips/stdatomic.c
/freebsd-11-stable/sys/mips/mips/sys_machdep.c
/freebsd-11-stable/sys/mips/mips/tick.c
/freebsd-11-stable/sys/mips/mips/tlb.c
/freebsd-11-stable/sys/mips/mips/trap.c
/freebsd-11-stable/sys/mips/mips/uio_machdep.c
/freebsd-11-stable/sys/mips/mips/uma_machdep.c
/freebsd-11-stable/sys/mips/mips/vm_machdep.c
/freebsd-11-stable/sys/mips/nlm/board.c
/freebsd-11-stable/sys/mips/nlm/board.h
/freebsd-11-stable/sys/mips/nlm/board_cpld.c
/freebsd-11-stable/sys/mips/nlm/board_eeprom.c
/freebsd-11-stable/sys/mips/nlm/bus_space_rmi.c
/freebsd-11-stable/sys/mips/nlm/bus_space_rmi_pci.c
/freebsd-11-stable/sys/mips/nlm/clock.h
/freebsd-11-stable/sys/mips/nlm/cms.c
/freebsd-11-stable/sys/mips/nlm/dev/net/mdio.c
/freebsd-11-stable/sys/mips/nlm/dev/net/nae.c
/freebsd-11-stable/sys/mips/nlm/dev/net/sgmii.c
/freebsd-11-stable/sys/mips/nlm/dev/net/ucore/ucore.h
/freebsd-11-stable/sys/mips/nlm/dev/net/ucore/ucore_app.c
/freebsd-11-stable/sys/mips/nlm/dev/net/xaui.c
/freebsd-11-stable/sys/mips/nlm/dev/net/xlpge.c
/freebsd-11-stable/sys/mips/nlm/dev/net/xlpge.h
/freebsd-11-stable/sys/mips/nlm/dev/sec/nlmrsa.c
/freebsd-11-stable/sys/mips/nlm/dev/sec/nlmrsalib.h
/freebsd-11-stable/sys/mips/nlm/dev/sec/nlmsec.c
/freebsd-11-stable/sys/mips/nlm/dev/sec/nlmseclib.c
/freebsd-11-stable/sys/mips/nlm/dev/sec/nlmseclib.h
/freebsd-11-stable/sys/mips/nlm/dev/sec/rsa_ucode.h
/freebsd-11-stable/sys/mips/nlm/hal/bridge.h
/freebsd-11-stable/sys/mips/nlm/hal/cop2.h
/freebsd-11-stable/sys/mips/nlm/hal/cpucontrol.h
/freebsd-11-stable/sys/mips/nlm/hal/fmn.c
/freebsd-11-stable/sys/mips/nlm/hal/fmn.h
/freebsd-11-stable/sys/mips/nlm/hal/gbu.h
/freebsd-11-stable/sys/mips/nlm/hal/haldefs.h
/freebsd-11-stable/sys/mips/nlm/hal/interlaken.h
/freebsd-11-stable/sys/mips/nlm/hal/iomap.h
/freebsd-11-stable/sys/mips/nlm/hal/mdio.h
/freebsd-11-stable/sys/mips/nlm/hal/mips-extns.h
/freebsd-11-stable/sys/mips/nlm/hal/mmu.h
/freebsd-11-stable/sys/mips/nlm/hal/nae.h
/freebsd-11-stable/sys/mips/nlm/hal/nlm_hal.c
/freebsd-11-stable/sys/mips/nlm/hal/nlmsaelib.h
/freebsd-11-stable/sys/mips/nlm/hal/pcibus.h
/freebsd-11-stable/sys/mips/nlm/hal/pic.h
/freebsd-11-stable/sys/mips/nlm/hal/poe.h
/freebsd-11-stable/sys/mips/nlm/hal/sgmii.h
/freebsd-11-stable/sys/mips/nlm/hal/sys.h
/freebsd-11-stable/sys/mips/nlm/hal/uart.h
/freebsd-11-stable/sys/mips/nlm/hal/ucore_loader.h
/freebsd-11-stable/sys/mips/nlm/hal/usb.h
/freebsd-11-stable/sys/mips/nlm/hal/xaui.h
/freebsd-11-stable/sys/mips/nlm/interrupt.h
/freebsd-11-stable/sys/mips/nlm/intr_machdep.c
/freebsd-11-stable/sys/mips/nlm/msgring.h
/freebsd-11-stable/sys/mips/nlm/tick.c
/freebsd-11-stable/sys/mips/nlm/uart_cpu_xlp.c
/freebsd-11-stable/sys/mips/nlm/usb_init.c
/freebsd-11-stable/sys/mips/nlm/xlp.h
/freebsd-11-stable/sys/mips/nlm/xlp_machdep.c
/freebsd-11-stable/sys/mips/nlm/xlp_pci.c
/freebsd-11-stable/sys/mips/rmi/board.c
/freebsd-11-stable/sys/mips/rmi/board.h
/freebsd-11-stable/sys/mips/rmi/bus_space_rmi.c
/freebsd-11-stable/sys/mips/rmi/bus_space_rmi_pci.c
/freebsd-11-stable/sys/mips/rmi/dev/iic/at24co2n.c
/freebsd-11-stable/sys/mips/rmi/dev/iic/max6657.c
/freebsd-11-stable/sys/mips/rmi/dev/nlge/if_nlge.c
/freebsd-11-stable/sys/mips/rmi/dev/nlge/if_nlge.h
/freebsd-11-stable/sys/mips/rmi/dev/sec/desc.h
/freebsd-11-stable/sys/mips/rmi/dev/sec/rmilib.c
/freebsd-11-stable/sys/mips/rmi/dev/sec/rmilib.h
/freebsd-11-stable/sys/mips/rmi/dev/sec/rmisec.c
/freebsd-11-stable/sys/mips/rmi/dev/xlr/atx_cpld.h
/freebsd-11-stable/sys/mips/rmi/dev/xlr/debug.h
/freebsd-11-stable/sys/mips/rmi/dev/xlr/xgmac_mdio.h
/freebsd-11-stable/sys/mips/rmi/fmn.c
/freebsd-11-stable/sys/mips/rmi/interrupt.h
/freebsd-11-stable/sys/mips/rmi/intr_machdep.c
/freebsd-11-stable/sys/mips/rmi/iodi.c
/freebsd-11-stable/sys/mips/rmi/iomap.h
/freebsd-11-stable/sys/mips/rmi/msgring.c
/freebsd-11-stable/sys/mips/rmi/msgring.cfg
/freebsd-11-stable/sys/mips/rmi/msgring.h
/freebsd-11-stable/sys/mips/rmi/pcibus.h
/freebsd-11-stable/sys/mips/rmi/pic.h
/freebsd-11-stable/sys/mips/rmi/rmi_boot_info.h
/freebsd-11-stable/sys/mips/rmi/rmi_mips_exts.h
/freebsd-11-stable/sys/mips/rmi/tick.c
/freebsd-11-stable/sys/mips/rmi/uart_bus_xlr_iodi.c
/freebsd-11-stable/sys/mips/rmi/uart_cpu_mips_xlr.c
/freebsd-11-stable/sys/mips/rmi/xlr_i2c.c
/freebsd-11-stable/sys/mips/rmi/xlr_machdep.c
/freebsd-11-stable/sys/mips/rmi/xlr_pci.c
/freebsd-11-stable/sys/mips/rmi/xlr_pcmcia.c
/freebsd-11-stable/sys/mips/rmi/xls_ehci.c
/freebsd-11-stable/sys/mips/rt305x/obio.c
/freebsd-11-stable/sys/mips/rt305x/obiovar.h
/freebsd-11-stable/sys/mips/rt305x/rt305x_dotg.c
/freebsd-11-stable/sys/mips/rt305x/rt305x_gpio.c
/freebsd-11-stable/sys/mips/rt305x/rt305x_gpio.h
/freebsd-11-stable/sys/mips/rt305x/rt305x_gpiovar.h
/freebsd-11-stable/sys/mips/rt305x/rt305x_ic.c
/freebsd-11-stable/sys/mips/rt305x/rt305x_icvar.h
/freebsd-11-stable/sys/mips/rt305x/rt305x_machdep.c
/freebsd-11-stable/sys/mips/rt305x/rt305x_sysctl.c
/freebsd-11-stable/sys/mips/rt305x/rt305x_sysctlvar.h
/freebsd-11-stable/sys/mips/rt305x/rt305xreg.h
/freebsd-11-stable/sys/mips/rt305x/rt_swreg.h
/freebsd-11-stable/sys/mips/rt305x/uart_bus_rt305x.c
/freebsd-11-stable/sys/mips/rt305x/uart_cpu_rt305x.c
/freebsd-11-stable/sys/mips/rt305x/uart_dev_rt305x.c
/freebsd-11-stable/sys/mips/rt305x/uart_dev_rt305x.h
/freebsd-11-stable/sys/mips/sibyte/ata_zbbus.c
/freebsd-11-stable/sys/mips/sibyte/sb_bus_space.h
/freebsd-11-stable/sys/mips/sibyte/sb_machdep.c
/freebsd-11-stable/sys/mips/sibyte/sb_scd.c
/freebsd-11-stable/sys/mips/sibyte/sb_scd.h
/freebsd-11-stable/sys/mips/sibyte/sb_zbbus.c
/freebsd-11-stable/sys/mips/sibyte/sb_zbpci.c
/freebsd-11-stable/sys/net/bpf.c
/freebsd-11-stable/sys/net/bpf.h
/freebsd-11-stable/sys/net/bpf_buffer.c
/freebsd-11-stable/sys/net/bpf_filter.c
/freebsd-11-stable/sys/net/bpf_jitter.c
/freebsd-11-stable/sys/net/bpf_jitter.h
/freebsd-11-stable/sys/net/bpfdesc.h
/freebsd-11-stable/sys/net/fddi.h
/freebsd-11-stable/sys/net/if.c
/freebsd-11-stable/sys/net/if.h
/freebsd-11-stable/sys/net/if_arc.h
/freebsd-11-stable/sys/net/if_arcsubr.c
/freebsd-11-stable/sys/net/if_arp.h
/freebsd-11-stable/sys/net/if_clone.c
/freebsd-11-stable/sys/net/if_clone.h
/freebsd-11-stable/sys/net/if_disc.c
/freebsd-11-stable/sys/net/if_dl.h
/freebsd-11-stable/sys/net/if_edsc.c
/freebsd-11-stable/sys/net/if_ethersubr.c
/freebsd-11-stable/sys/net/if_fddisubr.c
/freebsd-11-stable/sys/net/if_fwsubr.c
/freebsd-11-stable/sys/net/if_gif.c
/freebsd-11-stable/sys/net/if_gif.h
/freebsd-11-stable/sys/net/if_llc.h
/freebsd-11-stable/sys/net/if_loop.c
/freebsd-11-stable/sys/net/if_stf.c
/freebsd-11-stable/sys/net/if_types.h
/freebsd-11-stable/sys/net/if_var.h
/freebsd-11-stable/sys/net/ifq.h
/freebsd-11-stable/sys/net/pfkeyv2.h
/freebsd-11-stable/sys/net/radix.c
/freebsd-11-stable/sys/net/radix.h
/freebsd-11-stable/sys/net/radix_mpath.c
/freebsd-11-stable/sys/net/radix_mpath.h
/freebsd-11-stable/sys/net/raw_cb.c
/freebsd-11-stable/sys/net/raw_cb.h
/freebsd-11-stable/sys/net/raw_usrreq.c
/freebsd-11-stable/sys/net/route.c
/freebsd-11-stable/sys/net/route.h
/freebsd-11-stable/sys/net/rtsock.c
/freebsd-11-stable/sys/net/slcompress.c
/freebsd-11-stable/sys/net/slcompress.h
/freebsd-11-stable/sys/netinet/icmp6.h
/freebsd-11-stable/sys/netinet/icmp_var.h
/freebsd-11-stable/sys/netinet/if_ether.c
/freebsd-11-stable/sys/netinet/if_ether.h
/freebsd-11-stable/sys/netinet/igmp.c
/freebsd-11-stable/sys/netinet/igmp.h
/freebsd-11-stable/sys/netinet/igmp_var.h
/freebsd-11-stable/sys/netinet/in.c
/freebsd-11-stable/sys/netinet/in.h
/freebsd-11-stable/sys/netinet/in_cksum.c
/freebsd-11-stable/sys/netinet/in_gif.c
/freebsd-11-stable/sys/netinet/in_pcb.c
/freebsd-11-stable/sys/netinet/in_pcb.h
/freebsd-11-stable/sys/netinet/in_proto.c
/freebsd-11-stable/sys/netinet/in_systm.h
/freebsd-11-stable/sys/netinet/in_var.h
/freebsd-11-stable/sys/netinet/ip.h
/freebsd-11-stable/sys/netinet/ip6.h
/freebsd-11-stable/sys/netinet/ip_divert.c
/freebsd-11-stable/sys/netinet/ip_ecn.c
/freebsd-11-stable/sys/netinet/ip_ecn.h
/freebsd-11-stable/sys/netinet/ip_encap.c
/freebsd-11-stable/sys/netinet/ip_encap.h
/freebsd-11-stable/sys/netinet/ip_icmp.c
/freebsd-11-stable/sys/netinet/ip_icmp.h
/freebsd-11-stable/sys/netinet/ip_input.c
/freebsd-11-stable/sys/netinet/ip_mroute.c
/freebsd-11-stable/sys/netinet/ip_mroute.h
/freebsd-11-stable/sys/netinet/ip_options.c
/freebsd-11-stable/sys/netinet/ip_options.h
/freebsd-11-stable/sys/netinet/ip_output.c
/freebsd-11-stable/sys/netinet/ip_var.h
/freebsd-11-stable/sys/netinet/pim.h
/freebsd-11-stable/sys/netinet/pim_var.h
/freebsd-11-stable/sys/netinet/raw_ip.c
/freebsd-11-stable/sys/netinet/sctp.h
/freebsd-11-stable/sys/netinet/sctp_asconf.c
/freebsd-11-stable/sys/netinet/sctp_asconf.h
/freebsd-11-stable/sys/netinet/sctp_auth.c
/freebsd-11-stable/sys/netinet/sctp_auth.h
/freebsd-11-stable/sys/netinet/sctp_bsd_addr.c
/freebsd-11-stable/sys/netinet/sctp_bsd_addr.h
/freebsd-11-stable/sys/netinet/sctp_cc_functions.c
/freebsd-11-stable/sys/netinet/sctp_constants.h
/freebsd-11-stable/sys/netinet/sctp_crc32.c
/freebsd-11-stable/sys/netinet/sctp_crc32.h
/freebsd-11-stable/sys/netinet/sctp_dtrace_declare.h
/freebsd-11-stable/sys/netinet/sctp_dtrace_define.h
/freebsd-11-stable/sys/netinet/sctp_header.h
/freebsd-11-stable/sys/netinet/sctp_indata.c
/freebsd-11-stable/sys/netinet/sctp_indata.h
/freebsd-11-stable/sys/netinet/sctp_input.c
/freebsd-11-stable/sys/netinet/sctp_input.h
/freebsd-11-stable/sys/netinet/sctp_lock_bsd.h
/freebsd-11-stable/sys/netinet/sctp_os.h
/freebsd-11-stable/sys/netinet/sctp_os_bsd.h
/freebsd-11-stable/sys/netinet/sctp_output.c
/freebsd-11-stable/sys/netinet/sctp_output.h
/freebsd-11-stable/sys/netinet/sctp_pcb.c
/freebsd-11-stable/sys/netinet/sctp_pcb.h
/freebsd-11-stable/sys/netinet/sctp_peeloff.c
/freebsd-11-stable/sys/netinet/sctp_peeloff.h
/freebsd-11-stable/sys/netinet/sctp_structs.h
/freebsd-11-stable/sys/netinet/sctp_sysctl.c
/freebsd-11-stable/sys/netinet/sctp_sysctl.h
/freebsd-11-stable/sys/netinet/sctp_timer.c
/freebsd-11-stable/sys/netinet/sctp_timer.h
/freebsd-11-stable/sys/netinet/sctp_uio.h
/freebsd-11-stable/sys/netinet/sctp_usrreq.c
/freebsd-11-stable/sys/netinet/sctp_var.h
/freebsd-11-stable/sys/netinet/sctputil.c
/freebsd-11-stable/sys/netinet/sctputil.h
/freebsd-11-stable/sys/netinet/tcp.h
/freebsd-11-stable/sys/netinet/tcp_debug.c
/freebsd-11-stable/sys/netinet/tcp_debug.h
/freebsd-11-stable/sys/netinet/tcp_fsm.h
/freebsd-11-stable/sys/netinet/tcp_input.c
/freebsd-11-stable/sys/netinet/tcp_output.c
/freebsd-11-stable/sys/netinet/tcp_reass.c
/freebsd-11-stable/sys/netinet/tcp_sack.c
/freebsd-11-stable/sys/netinet/tcp_seq.h
/freebsd-11-stable/sys/netinet/tcp_subr.c
/freebsd-11-stable/sys/netinet/tcp_syncache.h
/freebsd-11-stable/sys/netinet/tcp_timer.c
/freebsd-11-stable/sys/netinet/tcp_timer.h
/freebsd-11-stable/sys/netinet/tcp_timewait.c
/freebsd-11-stable/sys/netinet/tcp_usrreq.c
/freebsd-11-stable/sys/netinet/tcp_var.h
/freebsd-11-stable/sys/netinet/tcpip.h
/freebsd-11-stable/sys/netinet/udp.h
/freebsd-11-stable/sys/netinet/udp_usrreq.c
/freebsd-11-stable/sys/netinet/udp_var.h
/freebsd-11-stable/sys/netinet6/dest6.c
/freebsd-11-stable/sys/netinet6/frag6.c
/freebsd-11-stable/sys/netinet6/icmp6.c
/freebsd-11-stable/sys/netinet6/in6.c
/freebsd-11-stable/sys/netinet6/in6.h
/freebsd-11-stable/sys/netinet6/in6_cksum.c
/freebsd-11-stable/sys/netinet6/in6_gif.c
/freebsd-11-stable/sys/netinet6/in6_ifattach.c
/freebsd-11-stable/sys/netinet6/in6_ifattach.h
/freebsd-11-stable/sys/netinet6/in6_pcb.c
/freebsd-11-stable/sys/netinet6/in6_pcb.h
/freebsd-11-stable/sys/netinet6/in6_proto.c
/freebsd-11-stable/sys/netinet6/in6_rmx.c
/freebsd-11-stable/sys/netinet6/in6_src.c
/freebsd-11-stable/sys/netinet6/in6_var.h
/freebsd-11-stable/sys/netinet6/ip6_ecn.h
/freebsd-11-stable/sys/netinet6/ip6_forward.c
/freebsd-11-stable/sys/netinet6/ip6_id.c
/freebsd-11-stable/sys/netinet6/ip6_input.c
/freebsd-11-stable/sys/netinet6/ip6_mroute.c
/freebsd-11-stable/sys/netinet6/ip6_mroute.h
/freebsd-11-stable/sys/netinet6/ip6_output.c
/freebsd-11-stable/sys/netinet6/ip6_var.h
/freebsd-11-stable/sys/netinet6/ip6protosw.h
/freebsd-11-stable/sys/netinet6/mld6.c
/freebsd-11-stable/sys/netinet6/nd6.c
/freebsd-11-stable/sys/netinet6/nd6.h
/freebsd-11-stable/sys/netinet6/nd6_nbr.c
/freebsd-11-stable/sys/netinet6/nd6_rtr.c
/freebsd-11-stable/sys/netinet6/pim6.h
/freebsd-11-stable/sys/netinet6/pim6_var.h
/freebsd-11-stable/sys/netinet6/raw_ip6.c
/freebsd-11-stable/sys/netinet6/raw_ip6.h
/freebsd-11-stable/sys/netinet6/route6.c
/freebsd-11-stable/sys/netinet6/scope6.c
/freebsd-11-stable/sys/netinet6/scope6_var.h
/freebsd-11-stable/sys/netinet6/sctp6_usrreq.c
/freebsd-11-stable/sys/netinet6/sctp6_var.h
/freebsd-11-stable/sys/netinet6/tcp6_var.h
/freebsd-11-stable/sys/netinet6/udp6_usrreq.c
/freebsd-11-stable/sys/netinet6/udp6_var.h
/freebsd-11-stable/sys/netipsec/ah.h
/freebsd-11-stable/sys/netipsec/esp.h
/freebsd-11-stable/sys/netipsec/ipcomp.h
/freebsd-11-stable/sys/netipsec/ipcomp_var.h
/freebsd-11-stable/sys/netipsec/ipsec.c
/freebsd-11-stable/sys/netipsec/ipsec.h
/freebsd-11-stable/sys/netipsec/ipsec6.h
/freebsd-11-stable/sys/netipsec/key.c
/freebsd-11-stable/sys/netipsec/key.h
/freebsd-11-stable/sys/netipsec/key_debug.c
/freebsd-11-stable/sys/netipsec/key_debug.h
/freebsd-11-stable/sys/netipsec/key_var.h
/freebsd-11-stable/sys/netipsec/keydb.h
/freebsd-11-stable/sys/netipsec/keysock.c
/freebsd-11-stable/sys/netipsec/keysock.h
/freebsd-11-stable/sys/netpfil/pf/in4_cksum.c
/freebsd-11-stable/sys/netsmb/smb_crypt.c
/freebsd-11-stable/sys/nfs/bootp_subr.c
/freebsd-11-stable/sys/nfs/krpc_subr.c
/freebsd-11-stable/sys/nfs/nfs_common.h
/freebsd-11-stable/sys/nfs/nfs_diskless.c
/freebsd-11-stable/sys/nfs/nfs_nfssvc.c
/freebsd-11-stable/sys/nfs/nfsdiskless.h
/freebsd-11-stable/sys/nfs/nfsproto.h
/freebsd-11-stable/sys/nfs/nfssvc.h
/freebsd-11-stable/sys/nfs/xdr_subs.h
/freebsd-11-stable/sys/nfsclient/nfs.h
/freebsd-11-stable/sys/nfsclient/nfsargs.h
/freebsd-11-stable/sys/nfsclient/nfsm_subs.h
/freebsd-11-stable/sys/nfsclient/nfsmount.h
/freebsd-11-stable/sys/nfsclient/nfsnode.h
/freebsd-11-stable/sys/nfsclient/nfsstats.h
/freebsd-11-stable/sys/nfsserver/nfs.h
/freebsd-11-stable/sys/nfsserver/nfsm_subs.h
/freebsd-11-stable/sys/nfsserver/nfsrvcache.h
/freebsd-11-stable/sys/nfsserver/nfsrvstats.h
/freebsd-11-stable/sys/ofed/drivers/infiniband/ulp/sdp/sdp_main.c
/freebsd-11-stable/sys/powerpc/aim/mmu_oea.c
/freebsd-11-stable/sys/powerpc/aim/mmu_oea64.c
/freebsd-11-stable/sys/powerpc/aim/mmu_oea64.h
/freebsd-11-stable/sys/powerpc/aim/moea64_native.c
/freebsd-11-stable/sys/powerpc/aim/mp_cpudep.c
/freebsd-11-stable/sys/powerpc/aim/slb.c
/freebsd-11-stable/sys/powerpc/booke/machdep_e500.c
/freebsd-11-stable/sys/powerpc/booke/machdep_ppc4xx.c
/freebsd-11-stable/sys/powerpc/booke/mp_cpudep.c
/freebsd-11-stable/sys/powerpc/booke/platform_bare.c
/freebsd-11-stable/sys/powerpc/booke/pmap.c
/freebsd-11-stable/sys/powerpc/cpufreq/dfs.c
/freebsd-11-stable/sys/powerpc/cpufreq/pcr.c
/freebsd-11-stable/sys/powerpc/cpufreq/pmufreq.c
/freebsd-11-stable/sys/powerpc/fpu/fpu_add.c
/freebsd-11-stable/sys/powerpc/fpu/fpu_arith.h
/freebsd-11-stable/sys/powerpc/fpu/fpu_compare.c
/freebsd-11-stable/sys/powerpc/fpu/fpu_div.c
/freebsd-11-stable/sys/powerpc/fpu/fpu_emu.c
/freebsd-11-stable/sys/powerpc/fpu/fpu_emu.h
/freebsd-11-stable/sys/powerpc/fpu/fpu_explode.c
/freebsd-11-stable/sys/powerpc/fpu/fpu_extern.h
/freebsd-11-stable/sys/powerpc/fpu/fpu_implode.c
/freebsd-11-stable/sys/powerpc/fpu/fpu_instr.h
/freebsd-11-stable/sys/powerpc/fpu/fpu_mul.c
/freebsd-11-stable/sys/powerpc/fpu/fpu_sqrt.c
/freebsd-11-stable/sys/powerpc/fpu/fpu_subr.c
/freebsd-11-stable/sys/powerpc/include/_align.h
/freebsd-11-stable/sys/powerpc/include/_bus.h
/freebsd-11-stable/sys/powerpc/include/_inttypes.h
/freebsd-11-stable/sys/powerpc/include/_limits.h
/freebsd-11-stable/sys/powerpc/include/_stdint.h
/freebsd-11-stable/sys/powerpc/include/_types.h
/freebsd-11-stable/sys/powerpc/include/altivec.h
/freebsd-11-stable/sys/powerpc/include/asm.h
/freebsd-11-stable/sys/powerpc/include/atomic.h
/freebsd-11-stable/sys/powerpc/include/bat.h
/freebsd-11-stable/sys/powerpc/include/bus.h
/freebsd-11-stable/sys/powerpc/include/bus_dma.h
/freebsd-11-stable/sys/powerpc/include/counter.h
/freebsd-11-stable/sys/powerpc/include/cpu.h
/freebsd-11-stable/sys/powerpc/include/cpufunc.h
/freebsd-11-stable/sys/powerpc/include/dbdma.h
/freebsd-11-stable/sys/powerpc/include/elf.h
/freebsd-11-stable/sys/powerpc/include/endian.h
/freebsd-11-stable/sys/powerpc/include/exec.h
/freebsd-11-stable/sys/powerpc/include/float.h
/freebsd-11-stable/sys/powerpc/include/floatingpoint.h
/freebsd-11-stable/sys/powerpc/include/fpu.h
/freebsd-11-stable/sys/powerpc/include/frame.h
/freebsd-11-stable/sys/powerpc/include/gdb_machdep.h
/freebsd-11-stable/sys/powerpc/include/hid.h
/freebsd-11-stable/sys/powerpc/include/ieee.h
/freebsd-11-stable/sys/powerpc/include/in_cksum.h
/freebsd-11-stable/sys/powerpc/include/intr_machdep.h
/freebsd-11-stable/sys/powerpc/include/kdb.h
/freebsd-11-stable/sys/powerpc/include/limits.h
/freebsd-11-stable/sys/powerpc/include/machdep.h
/freebsd-11-stable/sys/powerpc/include/md_var.h
/freebsd-11-stable/sys/powerpc/include/memdev.h
/freebsd-11-stable/sys/powerpc/include/metadata.h
/freebsd-11-stable/sys/powerpc/include/mmuvar.h
/freebsd-11-stable/sys/powerpc/include/ofw_machdep.h
/freebsd-11-stable/sys/powerpc/include/openpicreg.h
/freebsd-11-stable/sys/powerpc/include/openpicvar.h
/freebsd-11-stable/sys/powerpc/include/param.h
/freebsd-11-stable/sys/powerpc/include/pcb.h
/freebsd-11-stable/sys/powerpc/include/pcpu.h
/freebsd-11-stable/sys/powerpc/include/pio.h
/freebsd-11-stable/sys/powerpc/include/platform.h
/freebsd-11-stable/sys/powerpc/include/platformvar.h
/freebsd-11-stable/sys/powerpc/include/pmap.h
/freebsd-11-stable/sys/powerpc/include/proc.h
/freebsd-11-stable/sys/powerpc/include/psl.h
/freebsd-11-stable/sys/powerpc/include/pte.h
/freebsd-11-stable/sys/powerpc/include/ptrace.h
/freebsd-11-stable/sys/powerpc/include/reloc.h
/freebsd-11-stable/sys/powerpc/include/rtas.h
/freebsd-11-stable/sys/powerpc/include/runq.h
/freebsd-11-stable/sys/powerpc/include/sc_machdep.h
/freebsd-11-stable/sys/powerpc/include/sigframe.h
/freebsd-11-stable/sys/powerpc/include/signal.h
/freebsd-11-stable/sys/powerpc/include/slb.h
/freebsd-11-stable/sys/powerpc/include/smp.h
/freebsd-11-stable/sys/powerpc/include/spr.h
/freebsd-11-stable/sys/powerpc/include/sr.h
/freebsd-11-stable/sys/powerpc/include/stdarg.h
/freebsd-11-stable/sys/powerpc/include/sysarch.h
/freebsd-11-stable/sys/powerpc/include/tlb.h
/freebsd-11-stable/sys/powerpc/include/trap.h
/freebsd-11-stable/sys/powerpc/include/ucontext.h
/freebsd-11-stable/sys/powerpc/include/varargs.h
/freebsd-11-stable/sys/powerpc/include/vdso.h
/freebsd-11-stable/sys/powerpc/include/vm.h
/freebsd-11-stable/sys/powerpc/include/vmparam.h
/freebsd-11-stable/sys/powerpc/mambo/mambo.c
/freebsd-11-stable/sys/powerpc/mambo/mambo_console.c
/freebsd-11-stable/sys/powerpc/mambo/mambo_disk.c
/freebsd-11-stable/sys/powerpc/mambo/mambocall.h
/freebsd-11-stable/sys/powerpc/mpc85xx/atpic.c
/freebsd-11-stable/sys/powerpc/mpc85xx/ds1553_bus_fdt.c
/freebsd-11-stable/sys/powerpc/mpc85xx/ds1553_core.c
/freebsd-11-stable/sys/powerpc/mpc85xx/ds1553_reg.h
/freebsd-11-stable/sys/powerpc/mpc85xx/i2c.c
/freebsd-11-stable/sys/powerpc/mpc85xx/isa.c
/freebsd-11-stable/sys/powerpc/mpc85xx/lbc.c
/freebsd-11-stable/sys/powerpc/mpc85xx/lbc.h
/freebsd-11-stable/sys/powerpc/mpc85xx/mpc85xx.c
/freebsd-11-stable/sys/powerpc/mpc85xx/mpc85xx.h
/freebsd-11-stable/sys/powerpc/mpc85xx/pci_mpc85xx.c
/freebsd-11-stable/sys/powerpc/mpc85xx/platform_mpc85xx.c
/freebsd-11-stable/sys/powerpc/ofw/ofw_machdep.c
/freebsd-11-stable/sys/powerpc/ofw/ofw_pcib_pci.c
/freebsd-11-stable/sys/powerpc/ofw/ofw_pcibus.c
/freebsd-11-stable/sys/powerpc/ofw/ofw_pcibus.h
/freebsd-11-stable/sys/powerpc/ofw/ofw_real.c
/freebsd-11-stable/sys/powerpc/ofw/ofw_syscons.c
/freebsd-11-stable/sys/powerpc/ofw/ofw_syscons.h
/freebsd-11-stable/sys/powerpc/ofw/openpic_ofw.c
/freebsd-11-stable/sys/powerpc/ofw/rtas.c
/freebsd-11-stable/sys/powerpc/powermac/ata_dbdma.c
/freebsd-11-stable/sys/powerpc/powermac/ata_dbdma.h
/freebsd-11-stable/sys/powerpc/powermac/ata_kauai.c
/freebsd-11-stable/sys/powerpc/powermac/ata_macio.c
/freebsd-11-stable/sys/powerpc/powermac/atibl.c
/freebsd-11-stable/sys/powerpc/powermac/cpcht.c
/freebsd-11-stable/sys/powerpc/powermac/cuda.c
/freebsd-11-stable/sys/powerpc/powermac/cudavar.h
/freebsd-11-stable/sys/powerpc/powermac/dbdma.c
/freebsd-11-stable/sys/powerpc/powermac/dbdmavar.h
/freebsd-11-stable/sys/powerpc/powermac/fcu.c
/freebsd-11-stable/sys/powerpc/powermac/grackle.c
/freebsd-11-stable/sys/powerpc/powermac/gracklevar.h
/freebsd-11-stable/sys/powerpc/powermac/hrowpic.c
/freebsd-11-stable/sys/powerpc/powermac/hrowpicvar.h
/freebsd-11-stable/sys/powerpc/powermac/kiic.c
/freebsd-11-stable/sys/powerpc/powermac/macgpio.c
/freebsd-11-stable/sys/powerpc/powermac/macgpiovar.h
/freebsd-11-stable/sys/powerpc/powermac/macio.c
/freebsd-11-stable/sys/powerpc/powermac/maciovar.h
/freebsd-11-stable/sys/powerpc/powermac/nvbl.c
/freebsd-11-stable/sys/powerpc/powermac/platform_powermac.c
/freebsd-11-stable/sys/powerpc/powermac/pmu.c
/freebsd-11-stable/sys/powerpc/powermac/pmuvar.h
/freebsd-11-stable/sys/powerpc/powermac/powermac_thermal.c
/freebsd-11-stable/sys/powerpc/powermac/powermac_thermal.h
/freebsd-11-stable/sys/powerpc/powermac/pswitch.c
/freebsd-11-stable/sys/powerpc/powermac/smu.c
/freebsd-11-stable/sys/powerpc/powermac/smusat.c
/freebsd-11-stable/sys/powerpc/powermac/uninorth.c
/freebsd-11-stable/sys/powerpc/powermac/uninorthpci.c
/freebsd-11-stable/sys/powerpc/powermac/uninorthvar.h
/freebsd-11-stable/sys/powerpc/powermac/vcoregpio.c
/freebsd-11-stable/sys/powerpc/powermac/viareg.h
/freebsd-11-stable/sys/powerpc/powerpc/altivec.c
/freebsd-11-stable/sys/powerpc/powerpc/autoconf.c
/freebsd-11-stable/sys/powerpc/powerpc/bcopy.c
/freebsd-11-stable/sys/powerpc/powerpc/bus_machdep.c
/freebsd-11-stable/sys/powerpc/powerpc/busdma_machdep.c
/freebsd-11-stable/sys/powerpc/powerpc/clock.c
/freebsd-11-stable/sys/powerpc/powerpc/copyinout.c
/freebsd-11-stable/sys/powerpc/powerpc/copystr.c
/freebsd-11-stable/sys/powerpc/powerpc/cpu.c
/freebsd-11-stable/sys/powerpc/powerpc/db_hwwatch.c
/freebsd-11-stable/sys/powerpc/powerpc/dump_machdep.c
/freebsd-11-stable/sys/powerpc/powerpc/elf32_machdep.c
/freebsd-11-stable/sys/powerpc/powerpc/elf64_machdep.c
/freebsd-11-stable/sys/powerpc/powerpc/exec_machdep.c
/freebsd-11-stable/sys/powerpc/powerpc/fpu.c
/freebsd-11-stable/sys/powerpc/powerpc/fuswintr.c
/freebsd-11-stable/sys/powerpc/powerpc/gdb_machdep.c
/freebsd-11-stable/sys/powerpc/powerpc/genassym.c
/freebsd-11-stable/sys/powerpc/powerpc/in_cksum.c
/freebsd-11-stable/sys/powerpc/powerpc/intr_machdep.c
/freebsd-11-stable/sys/powerpc/powerpc/mem.c
/freebsd-11-stable/sys/powerpc/powerpc/mp_machdep.c
/freebsd-11-stable/sys/powerpc/powerpc/openpic.c
/freebsd-11-stable/sys/powerpc/powerpc/platform.c
/freebsd-11-stable/sys/powerpc/powerpc/pmap_dispatch.c
/freebsd-11-stable/sys/powerpc/powerpc/sc_machdep.c
/freebsd-11-stable/sys/powerpc/powerpc/stack_machdep.c
/freebsd-11-stable/sys/powerpc/powerpc/suswintr.c
/freebsd-11-stable/sys/powerpc/powerpc/syncicache.c
/freebsd-11-stable/sys/powerpc/powerpc/sys_machdep.c
/freebsd-11-stable/sys/powerpc/powerpc/uio_machdep.c
/freebsd-11-stable/sys/powerpc/powerpc/vm_machdep.c
/freebsd-11-stable/sys/powerpc/ps3/ehci_ps3.c
/freebsd-11-stable/sys/powerpc/ps3/if_glc.c
/freebsd-11-stable/sys/powerpc/ps3/if_glcreg.h
/freebsd-11-stable/sys/powerpc/ps3/mmu_ps3.c
/freebsd-11-stable/sys/powerpc/ps3/ohci_ps3.c
/freebsd-11-stable/sys/powerpc/ps3/platform_ps3.c
/freebsd-11-stable/sys/powerpc/ps3/ps3_syscons.c
/freebsd-11-stable/sys/powerpc/ps3/ps3bus.c
/freebsd-11-stable/sys/powerpc/ps3/ps3bus.h
/freebsd-11-stable/sys/powerpc/ps3/ps3cdrom.c
/freebsd-11-stable/sys/powerpc/ps3/ps3disk.c
/freebsd-11-stable/sys/powerpc/ps3/ps3pic.c
/freebsd-11-stable/sys/powerpc/pseries/mmu_phyp.c
/freebsd-11-stable/sys/powerpc/pseries/phyp-hvcall.h
/freebsd-11-stable/sys/powerpc/pseries/phyp_console.c
/freebsd-11-stable/sys/powerpc/pseries/phyp_llan.c
/freebsd-11-stable/sys/powerpc/pseries/phyp_vscsi.c
/freebsd-11-stable/sys/powerpc/pseries/platform_chrp.c
/freebsd-11-stable/sys/powerpc/pseries/plpar_iommu.c
/freebsd-11-stable/sys/powerpc/pseries/plpar_iommu.h
/freebsd-11-stable/sys/powerpc/pseries/plpar_pcibus.c
/freebsd-11-stable/sys/powerpc/pseries/rtas_dev.c
/freebsd-11-stable/sys/powerpc/pseries/rtas_pci.c
/freebsd-11-stable/sys/powerpc/pseries/vdevice.c
/freebsd-11-stable/sys/powerpc/pseries/xics.c
/freebsd-11-stable/sys/powerpc/psim/ata_iobus.c
/freebsd-11-stable/sys/powerpc/psim/iobus.c
/freebsd-11-stable/sys/powerpc/psim/iobusvar.h
/freebsd-11-stable/sys/powerpc/psim/openpic_iobus.c
/freebsd-11-stable/sys/powerpc/psim/uart_iobus.c
/freebsd-11-stable/sys/riscv/riscv/in_cksum.c
/freebsd-11-stable/sys/riscv/riscv/pmap.c
/freebsd-11-stable/sys/rpc/auth.h
/freebsd-11-stable/sys/rpc/auth_none.c
/freebsd-11-stable/sys/rpc/auth_unix.c
/freebsd-11-stable/sys/rpc/authunix_prot.c
/freebsd-11-stable/sys/rpc/clnt.h
/freebsd-11-stable/sys/rpc/clnt_dg.c
/freebsd-11-stable/sys/rpc/clnt_vc.c
/freebsd-11-stable/sys/rpc/krpc.h
/freebsd-11-stable/sys/rpc/nettype.h
/freebsd-11-stable/sys/rpc/pmap_prot.h
/freebsd-11-stable/sys/rpc/rpc.h
/freebsd-11-stable/sys/rpc/rpc_callmsg.c
/freebsd-11-stable/sys/rpc/rpc_com.h
/freebsd-11-stable/sys/rpc/rpc_generic.c
/freebsd-11-stable/sys/rpc/rpc_msg.h
/freebsd-11-stable/sys/rpc/rpc_prot.c
/freebsd-11-stable/sys/rpc/rpcb_clnt.c
/freebsd-11-stable/sys/rpc/rpcb_clnt.h
/freebsd-11-stable/sys/rpc/rpcb_prot.c
/freebsd-11-stable/sys/rpc/rpcb_prot.h
/freebsd-11-stable/sys/rpc/rpcm_subs.h
/freebsd-11-stable/sys/rpc/rpcsec_gss/rpcsec_gss.c
/freebsd-11-stable/sys/rpc/rpcsec_gss/rpcsec_gss_int.h
/freebsd-11-stable/sys/rpc/rpcsec_gss/rpcsec_gss_prot.c
/freebsd-11-stable/sys/rpc/rpcsec_gss/svc_rpcsec_gss.c
/freebsd-11-stable/sys/rpc/svc.c
/freebsd-11-stable/sys/rpc/svc.h
/freebsd-11-stable/sys/rpc/svc_auth.c
/freebsd-11-stable/sys/rpc/svc_auth.h
/freebsd-11-stable/sys/rpc/svc_auth_unix.c
/freebsd-11-stable/sys/rpc/svc_dg.c
/freebsd-11-stable/sys/rpc/svc_generic.c
/freebsd-11-stable/sys/rpc/svc_vc.c
/freebsd-11-stable/sys/rpc/types.h
/freebsd-11-stable/sys/rpc/xdr.h
/freebsd-11-stable/sys/security/audit/audit.c
/freebsd-11-stable/sys/security/audit/audit.h
/freebsd-11-stable/sys/security/audit/audit_arg.c
/freebsd-11-stable/sys/security/audit/audit_bsm.c
/freebsd-11-stable/sys/security/audit/audit_bsm_klib.c
/freebsd-11-stable/sys/security/audit/audit_private.h
/freebsd-11-stable/sys/security/audit/audit_syscalls.c
/freebsd-11-stable/sys/security/audit/audit_worker.c
/freebsd-11-stable/sys/security/audit/bsm_domain.c
/freebsd-11-stable/sys/security/audit/bsm_errno.c
/freebsd-11-stable/sys/security/audit/bsm_fcntl.c
/freebsd-11-stable/sys/security/audit/bsm_socket_type.c
/freebsd-11-stable/sys/security/audit/bsm_token.c
/freebsd-11-stable/sys/sparc64/include/_types.h
/freebsd-11-stable/sys/sparc64/include/asm.h
/freebsd-11-stable/sys/sparc64/include/bus_common.h
/freebsd-11-stable/sys/sparc64/include/cache.h
/freebsd-11-stable/sys/sparc64/include/cpu.h
/freebsd-11-stable/sys/sparc64/include/endian.h
/freebsd-11-stable/sys/sparc64/include/float.h
/freebsd-11-stable/sys/sparc64/include/floatingpoint.h
/freebsd-11-stable/sys/sparc64/include/ieee.h
/freebsd-11-stable/sys/sparc64/include/in_cksum.h
/freebsd-11-stable/sys/sparc64/include/iommureg.h
/freebsd-11-stable/sys/sparc64/include/md_var.h
/freebsd-11-stable/sys/sparc64/include/pmap.h
/freebsd-11-stable/sys/sparc64/include/proc.h
/freebsd-11-stable/sys/sparc64/include/ptrace.h
/freebsd-11-stable/sys/sparc64/include/reg.h
/freebsd-11-stable/sys/sparc64/include/reloc.h
/freebsd-11-stable/sys/sparc64/include/setjmp.h
/freebsd-11-stable/sys/sparc64/include/signal.h
/freebsd-11-stable/sys/sparc64/include/sysarch.h
/freebsd-11-stable/sys/sparc64/include/varargs.h
/freebsd-11-stable/sys/sparc64/include/vmparam.h
/freebsd-11-stable/sys/sparc64/sparc64/cache.c
/freebsd-11-stable/sys/sparc64/sparc64/eeprom.c
/freebsd-11-stable/sys/sparc64/sparc64/in_cksum.c
/freebsd-11-stable/sys/sparc64/sparc64/intr_machdep.c
/freebsd-11-stable/sys/sparc64/sparc64/machdep.c
/freebsd-11-stable/sys/sparc64/sparc64/mem.c
/freebsd-11-stable/sys/sparc64/sparc64/pmap.c
/freebsd-11-stable/sys/sparc64/sparc64/trap.c
/freebsd-11-stable/sys/sparc64/sparc64/uio_machdep.c
/freebsd-11-stable/sys/sparc64/sparc64/vm_machdep.c
/freebsd-11-stable/sys/sys/_bitset.h
/freebsd-11-stable/sys/sys/_bus_dma.h
/freebsd-11-stable/sys/sys/_callout.h
/freebsd-11-stable/sys/sys/_cpuset.h
/freebsd-11-stable/sys/sys/_ffcounter.h
/freebsd-11-stable/sys/sys/_iovec.h
/freebsd-11-stable/sys/sys/_kstack_cache.h
/freebsd-11-stable/sys/sys/_lock.h
/freebsd-11-stable/sys/sys/_lockmgr.h
/freebsd-11-stable/sys/sys/_mutex.h
/freebsd-11-stable/sys/sys/_null.h
/freebsd-11-stable/sys/sys/_pctrie.h
/freebsd-11-stable/sys/sys/_pthreadtypes.h
/freebsd-11-stable/sys/sys/_rmlock.h
/freebsd-11-stable/sys/sys/_rwlock.h
/freebsd-11-stable/sys/sys/_semaphore.h
/freebsd-11-stable/sys/sys/_sigset.h
/freebsd-11-stable/sys/sys/_sockaddr_storage.h
/freebsd-11-stable/sys/sys/_stack.h
/freebsd-11-stable/sys/sys/_stdint.h
/freebsd-11-stable/sys/sys/_sx.h
/freebsd-11-stable/sys/sys/_task.h
/freebsd-11-stable/sys/sys/_termios.h
/freebsd-11-stable/sys/sys/_timespec.h
/freebsd-11-stable/sys/sys/_timeval.h
/freebsd-11-stable/sys/sys/_types.h
/freebsd-11-stable/sys/sys/_umtx.h
/freebsd-11-stable/sys/sys/_unrhdr.h
/freebsd-11-stable/sys/sys/aac_ioctl.h
/freebsd-11-stable/sys/sys/acct.h
/freebsd-11-stable/sys/sys/acl.h
/freebsd-11-stable/sys/sys/agpio.h
/freebsd-11-stable/sys/sys/aio.h
/freebsd-11-stable/sys/sys/alq.h
/freebsd-11-stable/sys/sys/assym.h
/freebsd-11-stable/sys/sys/ata.h
/freebsd-11-stable/sys/sys/bio.h
/freebsd-11-stable/sys/sys/bitset.h
/freebsd-11-stable/sys/sys/bitstring.h
/freebsd-11-stable/sys/sys/blist.h
/freebsd-11-stable/sys/sys/boot.h
/freebsd-11-stable/sys/sys/buf.h
/freebsd-11-stable/sys/sys/buf_ring.h
/freebsd-11-stable/sys/sys/bufobj.h
/freebsd-11-stable/sys/sys/bus.h
/freebsd-11-stable/sys/sys/bus_dma.h
/freebsd-11-stable/sys/sys/busdma_bufalloc.h
/freebsd-11-stable/sys/sys/callout.h
/freebsd-11-stable/sys/sys/capability.h
/freebsd-11-stable/sys/sys/caprights.h
/freebsd-11-stable/sys/sys/cdefs.h
/freebsd-11-stable/sys/sys/cdrio.h
/freebsd-11-stable/sys/sys/cfictl.h
/freebsd-11-stable/sys/sys/chio.h
/freebsd-11-stable/sys/sys/clock.h
/freebsd-11-stable/sys/sys/condvar.h
/freebsd-11-stable/sys/sys/conf.h
/freebsd-11-stable/sys/sys/cons.h
/freebsd-11-stable/sys/sys/consio.h
/freebsd-11-stable/sys/sys/copyright.h
/freebsd-11-stable/sys/sys/counter.h
/freebsd-11-stable/sys/sys/cpu.h
/freebsd-11-stable/sys/sys/cpuctl.h
/freebsd-11-stable/sys/sys/cpuset.h
/freebsd-11-stable/sys/sys/ctype.h
/freebsd-11-stable/sys/sys/devicestat.h
/freebsd-11-stable/sys/sys/digiio.h
/freebsd-11-stable/sys/sys/dir.h
/freebsd-11-stable/sys/sys/dirent.h
/freebsd-11-stable/sys/sys/disklabel.h
/freebsd-11-stable/sys/sys/diskmbr.h
/freebsd-11-stable/sys/sys/dkstat.h
/freebsd-11-stable/sys/sys/domain.h
/freebsd-11-stable/sys/sys/dtrace_bsd.h
/freebsd-11-stable/sys/sys/dvdio.h
/freebsd-11-stable/sys/sys/elf.h
/freebsd-11-stable/sys/sys/elf32.h
/freebsd-11-stable/sys/sys/elf64.h
/freebsd-11-stable/sys/sys/elf_common.h
/freebsd-11-stable/sys/sys/elf_generic.h
/freebsd-11-stable/sys/sys/endian.h
/freebsd-11-stable/sys/sys/errno.h
/freebsd-11-stable/sys/sys/eui64.h
/freebsd-11-stable/sys/sys/event.h
/freebsd-11-stable/sys/sys/eventhandler.h
/freebsd-11-stable/sys/sys/eventvar.h
/freebsd-11-stable/sys/sys/exec.h
/freebsd-11-stable/sys/sys/extattr.h
/freebsd-11-stable/sys/sys/fail.h
/freebsd-11-stable/sys/sys/fbio.h
/freebsd-11-stable/sys/sys/fcntl.h
/freebsd-11-stable/sys/sys/fdcio.h
/freebsd-11-stable/sys/sys/file.h
/freebsd-11-stable/sys/sys/filedesc.h
/freebsd-11-stable/sys/sys/filio.h
/freebsd-11-stable/sys/sys/firmware.h
/freebsd-11-stable/sys/sys/gmon.h
/freebsd-11-stable/sys/sys/gpio.h
/freebsd-11-stable/sys/sys/gpt.h
/freebsd-11-stable/sys/sys/hash.h
/freebsd-11-stable/sys/sys/hhook.h
/freebsd-11-stable/sys/sys/iconv.h
/freebsd-11-stable/sys/sys/imgact.h
/freebsd-11-stable/sys/sys/imgact_aout.h
/freebsd-11-stable/sys/sys/imgact_elf.h
/freebsd-11-stable/sys/sys/interrupt.h
/freebsd-11-stable/sys/sys/ioccom.h
/freebsd-11-stable/sys/sys/ioctl.h
/freebsd-11-stable/sys/sys/ioctl_compat.h
/freebsd-11-stable/sys/sys/ipc.h
/freebsd-11-stable/sys/sys/ipmi.h
/freebsd-11-stable/sys/sys/jail.h
/freebsd-11-stable/sys/sys/joystick.h
/freebsd-11-stable/sys/sys/kdb.h
/freebsd-11-stable/sys/sys/kenv.h
/freebsd-11-stable/sys/sys/kernel.h
/freebsd-11-stable/sys/sys/kerneldump.h
/freebsd-11-stable/sys/sys/khelp.h
/freebsd-11-stable/sys/sys/kobj.h
/freebsd-11-stable/sys/sys/ksem.h
/freebsd-11-stable/sys/sys/kthread.h
/freebsd-11-stable/sys/sys/ktr.h
/freebsd-11-stable/sys/sys/ktr_class.h
/freebsd-11-stable/sys/sys/ktrace.h
/freebsd-11-stable/sys/sys/libkern.h
/freebsd-11-stable/sys/sys/limits.h
/freebsd-11-stable/sys/sys/link_aout.h
/freebsd-11-stable/sys/sys/link_elf.h
/freebsd-11-stable/sys/sys/linker.h
/freebsd-11-stable/sys/sys/linker_set.h
/freebsd-11-stable/sys/sys/lock.h
/freebsd-11-stable/sys/sys/lock_profile.h
/freebsd-11-stable/sys/sys/lockf.h
/freebsd-11-stable/sys/sys/lockmgr.h
/freebsd-11-stable/sys/sys/lockstat.h
/freebsd-11-stable/sys/sys/loginclass.h
/freebsd-11-stable/sys/sys/mac.h
/freebsd-11-stable/sys/sys/malloc.h
/freebsd-11-stable/sys/sys/mbuf.h
/freebsd-11-stable/sys/sys/mchain.h
/freebsd-11-stable/sys/sys/mdioctl.h
/freebsd-11-stable/sys/sys/memdesc.h
/freebsd-11-stable/sys/sys/mman.h
/freebsd-11-stable/sys/sys/module.h
/freebsd-11-stable/sys/sys/module_khelp.h
/freebsd-11-stable/sys/sys/mount.h
/freebsd-11-stable/sys/sys/mpt_ioctl.h
/freebsd-11-stable/sys/sys/mqueue.h
/freebsd-11-stable/sys/sys/msg.h
/freebsd-11-stable/sys/sys/msgbuf.h
/freebsd-11-stable/sys/sys/mtio.h
/freebsd-11-stable/sys/sys/mutex.h
/freebsd-11-stable/sys/sys/namei.h
/freebsd-11-stable/sys/sys/nlist_aout.h
/freebsd-11-stable/sys/sys/osd.h
/freebsd-11-stable/sys/sys/param.h
/freebsd-11-stable/sys/sys/pciio.h
/freebsd-11-stable/sys/sys/pcpu.h
/freebsd-11-stable/sys/sys/pctrie.h
/freebsd-11-stable/sys/sys/pioctl.h
/freebsd-11-stable/sys/sys/pmc.h
/freebsd-11-stable/sys/sys/pmckern.h
/freebsd-11-stable/sys/sys/pmclog.h
/freebsd-11-stable/sys/sys/poll.h
/freebsd-11-stable/sys/sys/posix4.h
/freebsd-11-stable/sys/sys/power.h
/freebsd-11-stable/sys/sys/priority.h
/freebsd-11-stable/sys/sys/priv.h
/freebsd-11-stable/sys/sys/proc.h
/freebsd-11-stable/sys/sys/procctl.h
/freebsd-11-stable/sys/sys/procdesc.h
/freebsd-11-stable/sys/sys/procfs.h
/freebsd-11-stable/sys/sys/protosw.h
/freebsd-11-stable/sys/sys/ptio.h
/freebsd-11-stable/sys/sys/ptrace.h
/freebsd-11-stable/sys/sys/queue.h
/freebsd-11-stable/sys/sys/racct.h
/freebsd-11-stable/sys/sys/random.h
/freebsd-11-stable/sys/sys/rangelock.h
/freebsd-11-stable/sys/sys/rctl.h
/freebsd-11-stable/sys/sys/reboot.h
/freebsd-11-stable/sys/sys/refcount.h
/freebsd-11-stable/sys/sys/regression.h
/freebsd-11-stable/sys/sys/resource.h
/freebsd-11-stable/sys/sys/resourcevar.h
/freebsd-11-stable/sys/sys/rmlock.h
/freebsd-11-stable/sys/sys/rtprio.h
/freebsd-11-stable/sys/sys/runq.h
/freebsd-11-stable/sys/sys/rwlock.h
/freebsd-11-stable/sys/sys/sbuf.h
/freebsd-11-stable/sys/sys/sched.h
/freebsd-11-stable/sys/sys/sdt.h
/freebsd-11-stable/sys/sys/select.h
/freebsd-11-stable/sys/sys/selinfo.h
/freebsd-11-stable/sys/sys/sema.h
/freebsd-11-stable/sys/sys/serial.h
/freebsd-11-stable/sys/sys/sf_buf.h
/freebsd-11-stable/sys/sys/sglist.h
/freebsd-11-stable/sys/sys/shm.h
/freebsd-11-stable/sys/sys/sigio.h
/freebsd-11-stable/sys/sys/signal.h
/freebsd-11-stable/sys/sys/signalvar.h
/freebsd-11-stable/sys/sys/sleepqueue.h
/freebsd-11-stable/sys/sys/slicer.h
/freebsd-11-stable/sys/sys/snoop.h
/freebsd-11-stable/sys/sys/sockbuf.h
/freebsd-11-stable/sys/sys/socket.h
/freebsd-11-stable/sys/sys/socketvar.h
/freebsd-11-stable/sys/sys/sockio.h
/freebsd-11-stable/sys/sys/sockopt.h
/freebsd-11-stable/sys/sys/stack.h
/freebsd-11-stable/sys/sys/stat.h
/freebsd-11-stable/sys/sys/stdatomic.h
/freebsd-11-stable/sys/sys/stddef.h
/freebsd-11-stable/sys/sys/stdint.h
/freebsd-11-stable/sys/sys/sun_disklabel.h
/freebsd-11-stable/sys/sys/sx.h
/freebsd-11-stable/sys/sys/syscallsubr.h
/freebsd-11-stable/sys/sys/sysctl.h
/freebsd-11-stable/sys/sys/sysent.h
/freebsd-11-stable/sys/sys/syslimits.h
/freebsd-11-stable/sys/sys/syslog.h
/freebsd-11-stable/sys/sys/systm.h
/freebsd-11-stable/sys/sys/taskqueue.h
/freebsd-11-stable/sys/sys/terminal.h
/freebsd-11-stable/sys/sys/thr.h
/freebsd-11-stable/sys/sys/tiio.h
/freebsd-11-stable/sys/sys/time.h
/freebsd-11-stable/sys/sys/timeb.h
/freebsd-11-stable/sys/sys/timeet.h
/freebsd-11-stable/sys/sys/timeffc.h
/freebsd-11-stable/sys/sys/timers.h
/freebsd-11-stable/sys/sys/times.h
/freebsd-11-stable/sys/sys/timespec.h
/freebsd-11-stable/sys/sys/tree.h
/freebsd-11-stable/sys/sys/tty.h
/freebsd-11-stable/sys/sys/ttycom.h
/freebsd-11-stable/sys/sys/ttydefaults.h
/freebsd-11-stable/sys/sys/ttydevsw.h
/freebsd-11-stable/sys/sys/ttydisc.h
/freebsd-11-stable/sys/sys/ttyhook.h
/freebsd-11-stable/sys/sys/ttyqueue.h
/freebsd-11-stable/sys/sys/turnstile.h
/freebsd-11-stable/sys/sys/types.h
/freebsd-11-stable/sys/sys/ucontext.h
/freebsd-11-stable/sys/sys/ucred.h
/freebsd-11-stable/sys/sys/uio.h
/freebsd-11-stable/sys/sys/umtx.h
/freebsd-11-stable/sys/sys/un.h
/freebsd-11-stable/sys/sys/unistd.h
/freebsd-11-stable/sys/sys/unpcb.h
/freebsd-11-stable/sys/sys/user.h
/freebsd-11-stable/sys/sys/utsname.h
/freebsd-11-stable/sys/sys/uuid.h
/freebsd-11-stable/sys/sys/vdso.h
/freebsd-11-stable/sys/sys/vmem.h
/freebsd-11-stable/sys/sys/vmmeter.h
/freebsd-11-stable/sys/sys/vnode.h
/freebsd-11-stable/sys/sys/wait.h
/freebsd-11-stable/sys/sys/watchdog.h
/freebsd-11-stable/sys/tools/makeobjops.awk
/freebsd-11-stable/sys/tools/vnode_if.awk
/freebsd-11-stable/sys/ufs/ffs/ffs_alloc.c
/freebsd-11-stable/sys/ufs/ffs/ffs_balloc.c
/freebsd-11-stable/sys/ufs/ffs/ffs_extern.h
/freebsd-11-stable/sys/ufs/ffs/ffs_inode.c
/freebsd-11-stable/sys/ufs/ffs/ffs_subr.c
/freebsd-11-stable/sys/ufs/ffs/ffs_tables.c
/freebsd-11-stable/sys/ufs/ffs/ffs_vfsops.c
/freebsd-11-stable/sys/ufs/ffs/ffs_vnops.c
/freebsd-11-stable/sys/ufs/ffs/fs.h
/freebsd-11-stable/sys/ufs/ufs/dir.h
/freebsd-11-stable/sys/ufs/ufs/inode.h
/freebsd-11-stable/sys/ufs/ufs/quota.h
/freebsd-11-stable/sys/ufs/ufs/ufs_bmap.c
/freebsd-11-stable/sys/ufs/ufs/ufs_extern.h
/freebsd-11-stable/sys/ufs/ufs/ufs_inode.c
/freebsd-11-stable/sys/ufs/ufs/ufs_lookup.c
/freebsd-11-stable/sys/ufs/ufs/ufs_quota.c
/freebsd-11-stable/sys/ufs/ufs/ufs_vfsops.c
/freebsd-11-stable/sys/ufs/ufs/ufs_vnops.c
/freebsd-11-stable/sys/ufs/ufs/ufsmount.h
/freebsd-11-stable/sys/vm/device_pager.c
/freebsd-11-stable/sys/vm/pmap.h
/freebsd-11-stable/sys/vm/swap_pager.c
/freebsd-11-stable/sys/vm/swap_pager.h
/freebsd-11-stable/sys/vm/vm.h
/freebsd-11-stable/sys/vm/vm_extern.h
/freebsd-11-stable/sys/vm/vm_fault.c
/freebsd-11-stable/sys/vm/vm_glue.c
/freebsd-11-stable/sys/vm/vm_init.c
/freebsd-11-stable/sys/vm/vm_kern.c
/freebsd-11-stable/sys/vm/vm_kern.h
/freebsd-11-stable/sys/vm/vm_map.c
/freebsd-11-stable/sys/vm/vm_map.h
/freebsd-11-stable/sys/vm/vm_meter.c
/freebsd-11-stable/sys/vm/vm_mmap.c
/freebsd-11-stable/sys/vm/vm_object.c
/freebsd-11-stable/sys/vm/vm_object.h
/freebsd-11-stable/sys/vm/vm_page.c
/freebsd-11-stable/sys/vm/vm_page.h
/freebsd-11-stable/sys/vm/vm_pageout.c
/freebsd-11-stable/sys/vm/vm_pageout.h
/freebsd-11-stable/sys/vm/vm_pager.c
/freebsd-11-stable/sys/vm/vm_pager.h
/freebsd-11-stable/sys/vm/vm_param.h
/freebsd-11-stable/sys/vm/vm_unix.c
/freebsd-11-stable/sys/vm/vnode_pager.c
/freebsd-11-stable/sys/vm/vnode_pager.h
/freebsd-11-stable/sys/x86/include/_align.h
/freebsd-11-stable/sys/x86/include/_limits.h
/freebsd-11-stable/sys/x86/include/_types.h
/freebsd-11-stable/sys/x86/include/endian.h
/freebsd-11-stable/sys/x86/include/float.h
/freebsd-11-stable/sys/x86/include/frame.h
/freebsd-11-stable/sys/x86/include/psl.h
/freebsd-11-stable/sys/x86/include/ptrace.h
/freebsd-11-stable/sys/x86/include/reg.h
/freebsd-11-stable/sys/x86/include/segments.h
/freebsd-11-stable/sys/x86/include/setjmp.h
/freebsd-11-stable/sys/x86/include/signal.h
/freebsd-11-stable/sys/x86/include/specialreg.h
/freebsd-11-stable/sys/x86/include/stdarg.h
/freebsd-11-stable/sys/x86/include/sysarch.h
/freebsd-11-stable/sys/x86/include/trap.h
/freebsd-11-stable/sys/x86/isa/clock.c
/freebsd-11-stable/sys/x86/isa/icu.h
/freebsd-11-stable/sys/x86/isa/isa_dma.c
/freebsd-11-stable/sys/x86/isa/nmi.c
/freebsd-11-stable/sys/x86/x86/delay.c
/freebsd-11-stable/sys/x86/x86/msi.c
/freebsd-11-stable/tools/regression/aio/aiop/aiop.c
/freebsd-11-stable/tools/regression/p1003_1b/fifo.c
/freebsd-11-stable/tools/regression/p1003_1b/memlock.c
/freebsd-11-stable/tools/regression/p1003_1b/p26.c
/freebsd-11-stable/tools/regression/p1003_1b/sched.c
/freebsd-11-stable/tools/regression/p1003_1b/yield.c
/freebsd-11-stable/tools/regression/posixsem/posixsem.c
/freebsd-11-stable/tools/regression/posixsem/test.c
/freebsd-11-stable/tools/regression/posixsem/test.h
/freebsd-11-stable/tools/test/hwpmc/pmctest.py
/freebsd-11-stable/tools/tools/cxgbtool/cxgbtool.c
/freebsd-11-stable/tools/tools/pirtool/pirtable.h
/freebsd-11-stable/tools/tools/pirtool/pirtool.c
/freebsd-11-stable/tools/tools/vxge/vxge_cmn.h
/freebsd-11-stable/tools/tools/vxge/vxge_info.c
/freebsd-11-stable/tools/tools/vxge/vxge_info.h
/freebsd-11-stable/tools/tools/vxge/vxge_log.c
/freebsd-11-stable/tools/tools/vxge/vxge_log.h
/freebsd-11-stable/usr.bin/apply/apply.c
/freebsd-11-stable/usr.bin/ar/ar.c
/freebsd-11-stable/usr.bin/banner/banner.c
/freebsd-11-stable/usr.bin/basename/basename.c
/freebsd-11-stable/usr.bin/biff/biff.c
/freebsd-11-stable/usr.bin/calendar/calendar.c
/freebsd-11-stable/usr.bin/calendar/calendar.h
/freebsd-11-stable/usr.bin/calendar/day.c
/freebsd-11-stable/usr.bin/calendar/io.c
/freebsd-11-stable/usr.bin/calendar/locale.c
/freebsd-11-stable/usr.bin/calendar/pathnames.h
/freebsd-11-stable/usr.bin/calendar/pom.c
/freebsd-11-stable/usr.bin/cap_mkdb/cap_mkdb.c
/freebsd-11-stable/usr.bin/chpass/chpass.c
/freebsd-11-stable/usr.bin/chpass/chpass.h
/freebsd-11-stable/usr.bin/chpass/edit.c
/freebsd-11-stable/usr.bin/chpass/field.c
/freebsd-11-stable/usr.bin/chpass/table.c
/freebsd-11-stable/usr.bin/chpass/util.c
/freebsd-11-stable/usr.bin/cksum/cksum.c
/freebsd-11-stable/usr.bin/cksum/crc.c
/freebsd-11-stable/usr.bin/cksum/extern.h
/freebsd-11-stable/usr.bin/cksum/print.c
/freebsd-11-stable/usr.bin/cksum/sum1.c
/freebsd-11-stable/usr.bin/cksum/sum2.c
/freebsd-11-stable/usr.bin/cmp/cmp.c
/freebsd-11-stable/usr.bin/cmp/extern.h
/freebsd-11-stable/usr.bin/cmp/misc.c
/freebsd-11-stable/usr.bin/cmp/regular.c
/freebsd-11-stable/usr.bin/cmp/special.c
/freebsd-11-stable/usr.bin/col/col.c
/freebsd-11-stable/usr.bin/colrm/colrm.c
/freebsd-11-stable/usr.bin/column/column.c
/freebsd-11-stable/usr.bin/comm/comm.c
/freebsd-11-stable/usr.bin/compress/compress.c
/freebsd-11-stable/usr.bin/compress/zopen.c
/freebsd-11-stable/usr.bin/ctags/C.c
/freebsd-11-stable/usr.bin/ctags/ctags.c
/freebsd-11-stable/usr.bin/ctags/ctags.h
/freebsd-11-stable/usr.bin/ctags/fortran.c
/freebsd-11-stable/usr.bin/ctags/lisp.c
/freebsd-11-stable/usr.bin/ctags/print.c
/freebsd-11-stable/usr.bin/ctags/tree.c
/freebsd-11-stable/usr.bin/ctags/yacc.c
/freebsd-11-stable/usr.bin/cut/cut.c
/freebsd-11-stable/usr.bin/dirname/dirname.c
/freebsd-11-stable/usr.bin/du/du.c
/freebsd-11-stable/usr.bin/env/env.c
/freebsd-11-stable/usr.bin/expand/expand.c
/freebsd-11-stable/usr.bin/false/false.c
/freebsd-11-stable/usr.bin/find/extern.h
/freebsd-11-stable/usr.bin/find/find.c
/freebsd-11-stable/usr.bin/find/find.h
/freebsd-11-stable/usr.bin/find/function.c
/freebsd-11-stable/usr.bin/find/ls.c
/freebsd-11-stable/usr.bin/find/main.c
/freebsd-11-stable/usr.bin/find/misc.c
/freebsd-11-stable/usr.bin/find/operator.c
/freebsd-11-stable/usr.bin/find/option.c
/freebsd-11-stable/usr.bin/finger/extern.h
/freebsd-11-stable/usr.bin/finger/finger.c
/freebsd-11-stable/usr.bin/finger/finger.h
/freebsd-11-stable/usr.bin/finger/lprint.c
/freebsd-11-stable/usr.bin/finger/net.c
/freebsd-11-stable/usr.bin/finger/sprint.c
/freebsd-11-stable/usr.bin/finger/util.c
/freebsd-11-stable/usr.bin/fold/fold.c
/freebsd-11-stable/usr.bin/from/from.c
/freebsd-11-stable/usr.bin/fstat/fstat.c
/freebsd-11-stable/usr.bin/gcore/extern.h
/freebsd-11-stable/usr.bin/gcore/gcore.c
/freebsd-11-stable/usr.bin/gprof/amd64.h
/freebsd-11-stable/usr.bin/gprof/aout.c
/freebsd-11-stable/usr.bin/gprof/arcs.c
/freebsd-11-stable/usr.bin/gprof/arm.h
/freebsd-11-stable/usr.bin/gprof/dfn.c
/freebsd-11-stable/usr.bin/gprof/elf.c
/freebsd-11-stable/usr.bin/gprof/gprof.c
/freebsd-11-stable/usr.bin/gprof/gprof.h
/freebsd-11-stable/usr.bin/gprof/hertz.c
/freebsd-11-stable/usr.bin/gprof/i386.h
/freebsd-11-stable/usr.bin/gprof/lookup.c
/freebsd-11-stable/usr.bin/gprof/mips.h
/freebsd-11-stable/usr.bin/gprof/pathnames.h
/freebsd-11-stable/usr.bin/gprof/powerpc.h
/freebsd-11-stable/usr.bin/gprof/printgprof.c
/freebsd-11-stable/usr.bin/gprof/printlist.c
/freebsd-11-stable/usr.bin/gprof/sparc64.h
/freebsd-11-stable/usr.bin/gzip/zuncompress.c
/freebsd-11-stable/usr.bin/head/head.c
/freebsd-11-stable/usr.bin/hexdump/conv.c
/freebsd-11-stable/usr.bin/hexdump/display.c
/freebsd-11-stable/usr.bin/hexdump/hexdump.c
/freebsd-11-stable/usr.bin/hexdump/hexdump.h
/freebsd-11-stable/usr.bin/hexdump/hexsyntax.c
/freebsd-11-stable/usr.bin/hexdump/odsyntax.c
/freebsd-11-stable/usr.bin/hexdump/parse.c
/freebsd-11-stable/usr.bin/id/id.c
/freebsd-11-stable/usr.bin/indent/args.c
/freebsd-11-stable/usr.bin/indent/indent.c
/freebsd-11-stable/usr.bin/indent/indent_codes.h
/freebsd-11-stable/usr.bin/indent/indent_globs.h
/freebsd-11-stable/usr.bin/indent/io.c
/freebsd-11-stable/usr.bin/indent/lexi.c
/freebsd-11-stable/usr.bin/indent/parse.c
/freebsd-11-stable/usr.bin/indent/pr_comment.c
/freebsd-11-stable/usr.bin/join/join.c
/freebsd-11-stable/usr.bin/jot/jot.c
/freebsd-11-stable/usr.bin/kdump/kdump.c
/freebsd-11-stable/usr.bin/ktrace/ktrace.c
/freebsd-11-stable/usr.bin/ktrace/ktrace.h
/freebsd-11-stable/usr.bin/ktrace/subr.c
/freebsd-11-stable/usr.bin/lam/lam.c
/freebsd-11-stable/usr.bin/last/last.c
/freebsd-11-stable/usr.bin/lastcomm/lastcomm.c
/freebsd-11-stable/usr.bin/lastcomm/pathnames.h
/freebsd-11-stable/usr.bin/leave/leave.c
/freebsd-11-stable/usr.bin/lex/initparse.c
/freebsd-11-stable/usr.bin/locate/bigram/locate.bigram.c
/freebsd-11-stable/usr.bin/locate/code/locate.code.c
/freebsd-11-stable/usr.bin/locate/locate/fastfind.c
/freebsd-11-stable/usr.bin/locate/locate/locate.c
/freebsd-11-stable/usr.bin/locate/locate/locate.h
/freebsd-11-stable/usr.bin/locate/locate/util.c
/freebsd-11-stable/usr.bin/lock/lock.c
/freebsd-11-stable/usr.bin/logger/logger.c
/freebsd-11-stable/usr.bin/login/login.c
/freebsd-11-stable/usr.bin/login/login_audit.c
/freebsd-11-stable/usr.bin/login/pathnames.h
/freebsd-11-stable/usr.bin/logname/logname.c
/freebsd-11-stable/usr.bin/look/look.c
/freebsd-11-stable/usr.bin/look/pathnames.h
/freebsd-11-stable/usr.bin/lorder/lorder.sh
/freebsd-11-stable/usr.bin/m4/eval.c
/freebsd-11-stable/usr.bin/m4/extern.h
/freebsd-11-stable/usr.bin/m4/look.c
/freebsd-11-stable/usr.bin/m4/main.c
/freebsd-11-stable/usr.bin/m4/mdef.h
/freebsd-11-stable/usr.bin/m4/misc.c
/freebsd-11-stable/usr.bin/m4/pathnames.h
/freebsd-11-stable/usr.bin/m4/stdd.h
/freebsd-11-stable/usr.bin/mail/cmd1.c
/freebsd-11-stable/usr.bin/mail/cmd2.c
/freebsd-11-stable/usr.bin/mail/cmd3.c
/freebsd-11-stable/usr.bin/mail/cmdtab.c
/freebsd-11-stable/usr.bin/mail/collect.c
/freebsd-11-stable/usr.bin/mail/def.h
/freebsd-11-stable/usr.bin/mail/edit.c
/freebsd-11-stable/usr.bin/mail/extern.h
/freebsd-11-stable/usr.bin/mail/fio.c
/freebsd-11-stable/usr.bin/mail/getname.c
/freebsd-11-stable/usr.bin/mail/glob.h
/freebsd-11-stable/usr.bin/mail/head.c
/freebsd-11-stable/usr.bin/mail/lex.c
/freebsd-11-stable/usr.bin/mail/list.c
/freebsd-11-stable/usr.bin/mail/main.c
/freebsd-11-stable/usr.bin/mail/names.c
/freebsd-11-stable/usr.bin/mail/pathnames.h
/freebsd-11-stable/usr.bin/mail/popen.c
/freebsd-11-stable/usr.bin/mail/quit.c
/freebsd-11-stable/usr.bin/mail/rcv.h
/freebsd-11-stable/usr.bin/mail/send.c
/freebsd-11-stable/usr.bin/mail/strings.c
/freebsd-11-stable/usr.bin/mail/temp.c
/freebsd-11-stable/usr.bin/mail/tty.c
/freebsd-11-stable/usr.bin/mail/util.c
/freebsd-11-stable/usr.bin/mail/v7.local.c
/freebsd-11-stable/usr.bin/mail/vars.c
/freebsd-11-stable/usr.bin/mail/version.c
/freebsd-11-stable/usr.bin/mesg/mesg.c
/freebsd-11-stable/usr.bin/mkdep/mkdep.gcc.sh
/freebsd-11-stable/usr.bin/mkdep/mkdep.sh
/freebsd-11-stable/usr.bin/mkfifo/mkfifo.c
/freebsd-11-stable/usr.bin/mklocale/extern.h
/freebsd-11-stable/usr.bin/mklocale/ldef.h
/freebsd-11-stable/usr.bin/mklocale/lex.l
/freebsd-11-stable/usr.bin/mklocale/yacc.y
/freebsd-11-stable/usr.bin/mkstr/mkstr.c
/freebsd-11-stable/usr.bin/msgs/msgs.c
/freebsd-11-stable/usr.bin/msgs/pathnames.h
/freebsd-11-stable/usr.bin/mt/mt.c
/freebsd-11-stable/usr.bin/netstat/if.c
/freebsd-11-stable/usr.bin/netstat/inet6.c
/freebsd-11-stable/usr.bin/netstat/ipsec.c
/freebsd-11-stable/usr.bin/netstat/main.c
/freebsd-11-stable/usr.bin/netstat/mbuf.c
/freebsd-11-stable/usr.bin/netstat/mroute.c
/freebsd-11-stable/usr.bin/netstat/mroute6.c
/freebsd-11-stable/usr.bin/netstat/netstat.h
/freebsd-11-stable/usr.bin/netstat/pfkey.c
/freebsd-11-stable/usr.bin/netstat/route.c
/freebsd-11-stable/usr.bin/netstat/sctp.c
/freebsd-11-stable/usr.bin/netstat/unix.c
/freebsd-11-stable/usr.bin/nice/nice.c
/freebsd-11-stable/usr.bin/nohup/nohup.c
/freebsd-11-stable/usr.bin/pagesize/pagesize.sh
/freebsd-11-stable/usr.bin/paste/paste.c
/freebsd-11-stable/usr.bin/patch/mkpath.c
/freebsd-11-stable/usr.bin/pr/egetopt.c
/freebsd-11-stable/usr.bin/pr/extern.h
/freebsd-11-stable/usr.bin/pr/pr.c
/freebsd-11-stable/usr.bin/pr/pr.h
/freebsd-11-stable/usr.bin/printenv/printenv.c
/freebsd-11-stable/usr.bin/printf/printf.c
/freebsd-11-stable/usr.bin/quota/quota.c
/freebsd-11-stable/usr.bin/renice/renice.c
/freebsd-11-stable/usr.bin/rev/rev.c
/freebsd-11-stable/usr.bin/rs/rs.c
/freebsd-11-stable/usr.bin/rup/rup.c
/freebsd-11-stable/usr.bin/ruptime/ruptime.c
/freebsd-11-stable/usr.bin/rusers/rusers.c
/freebsd-11-stable/usr.bin/rwall/rwall.c
/freebsd-11-stable/usr.bin/rwho/rwho.c
/freebsd-11-stable/usr.bin/script/script.c
/freebsd-11-stable/usr.bin/sed/compile.c
/freebsd-11-stable/usr.bin/sed/defs.h
/freebsd-11-stable/usr.bin/sed/extern.h
/freebsd-11-stable/usr.bin/sed/main.c
/freebsd-11-stable/usr.bin/sed/misc.c
/freebsd-11-stable/usr.bin/sed/process.c
/freebsd-11-stable/usr.bin/shar/shar.sh
/freebsd-11-stable/usr.bin/showmount/showmount.c
/freebsd-11-stable/usr.bin/split/split.c
/freebsd-11-stable/usr.bin/su/su.c
/freebsd-11-stable/usr.bin/systat/cmds.c
/freebsd-11-stable/usr.bin/systat/cmdtab.c
/freebsd-11-stable/usr.bin/systat/devs.c
/freebsd-11-stable/usr.bin/systat/extern.h
/freebsd-11-stable/usr.bin/systat/fetch.c
/freebsd-11-stable/usr.bin/systat/icmp.c
/freebsd-11-stable/usr.bin/systat/icmp6.c
/freebsd-11-stable/usr.bin/systat/iostat.c
/freebsd-11-stable/usr.bin/systat/ip.c
/freebsd-11-stable/usr.bin/systat/ip6.c
/freebsd-11-stable/usr.bin/systat/keyboard.c
/freebsd-11-stable/usr.bin/systat/main.c
/freebsd-11-stable/usr.bin/systat/netcmds.c
/freebsd-11-stable/usr.bin/systat/netstat.c
/freebsd-11-stable/usr.bin/systat/pigs.c
/freebsd-11-stable/usr.bin/systat/swap.c
/freebsd-11-stable/usr.bin/systat/systat.h
/freebsd-11-stable/usr.bin/systat/tcp.c
/freebsd-11-stable/usr.bin/systat/vmstat.c
/freebsd-11-stable/usr.bin/tail/extern.h
/freebsd-11-stable/usr.bin/tail/forward.c
/freebsd-11-stable/usr.bin/tail/misc.c
/freebsd-11-stable/usr.bin/tail/read.c
/freebsd-11-stable/usr.bin/tail/reverse.c
/freebsd-11-stable/usr.bin/tail/tail.c
/freebsd-11-stable/usr.bin/talk/ctl.c
/freebsd-11-stable/usr.bin/talk/ctl_transact.c
/freebsd-11-stable/usr.bin/talk/display.c
/freebsd-11-stable/usr.bin/talk/get_addrs.c
/freebsd-11-stable/usr.bin/talk/get_names.c
/freebsd-11-stable/usr.bin/talk/init_disp.c
/freebsd-11-stable/usr.bin/talk/invite.c
/freebsd-11-stable/usr.bin/talk/io.c
/freebsd-11-stable/usr.bin/talk/look_up.c
/freebsd-11-stable/usr.bin/talk/msgs.c
/freebsd-11-stable/usr.bin/talk/talk.c
/freebsd-11-stable/usr.bin/talk/talk.h
/freebsd-11-stable/usr.bin/talk/talk_ctl.h
/freebsd-11-stable/usr.bin/tcopy/tcopy.c
/freebsd-11-stable/usr.bin/tee/tee.c
/freebsd-11-stable/usr.bin/tftp/main.c
/freebsd-11-stable/usr.bin/tftp/tftp.c
/freebsd-11-stable/usr.bin/tftp/tftp.h
/freebsd-11-stable/usr.bin/time/time.c
/freebsd-11-stable/usr.bin/tip/libacu/biz22.c
/freebsd-11-stable/usr.bin/tip/libacu/biz31.c
/freebsd-11-stable/usr.bin/tip/libacu/courier.c
/freebsd-11-stable/usr.bin/tip/libacu/df.c
/freebsd-11-stable/usr.bin/tip/libacu/dn11.c
/freebsd-11-stable/usr.bin/tip/libacu/hayes.c
/freebsd-11-stable/usr.bin/tip/libacu/t3000.c
/freebsd-11-stable/usr.bin/tip/libacu/v3451.c
/freebsd-11-stable/usr.bin/tip/libacu/v831.c
/freebsd-11-stable/usr.bin/tip/libacu/ventel.c
/freebsd-11-stable/usr.bin/tip/tip/acu.c
/freebsd-11-stable/usr.bin/tip/tip/acutab.c
/freebsd-11-stable/usr.bin/tip/tip/cmds.c
/freebsd-11-stable/usr.bin/tip/tip/cmdtab.c
/freebsd-11-stable/usr.bin/tip/tip/cu.c
/freebsd-11-stable/usr.bin/tip/tip/hunt.c
/freebsd-11-stable/usr.bin/tip/tip/log.c
/freebsd-11-stable/usr.bin/tip/tip/partab.c
/freebsd-11-stable/usr.bin/tip/tip/pathnames.h
/freebsd-11-stable/usr.bin/tip/tip/remote.c
/freebsd-11-stable/usr.bin/tip/tip/tip.c
/freebsd-11-stable/usr.bin/tip/tip/tip.h
/freebsd-11-stable/usr.bin/tip/tip/tipout.c
/freebsd-11-stable/usr.bin/tip/tip/uucplock.c
/freebsd-11-stable/usr.bin/tip/tip/value.c
/freebsd-11-stable/usr.bin/tip/tip/vars.c
/freebsd-11-stable/usr.bin/touch/touch.c
/freebsd-11-stable/usr.bin/tput/clear.sh
/freebsd-11-stable/usr.bin/tput/tput.c
/freebsd-11-stable/usr.bin/tr/extern.h
/freebsd-11-stable/usr.bin/tr/str.c
/freebsd-11-stable/usr.bin/tr/tr.c
/freebsd-11-stable/usr.bin/true/true.c
/freebsd-11-stable/usr.bin/truss/amd64-freebsd.c
/freebsd-11-stable/usr.bin/truss/amd64-freebsd32.c
/freebsd-11-stable/usr.bin/truss/amd64-linux.c
/freebsd-11-stable/usr.bin/truss/amd64-linux32.c
/freebsd-11-stable/usr.bin/truss/arm-freebsd.c
/freebsd-11-stable/usr.bin/truss/extern.h
/freebsd-11-stable/usr.bin/truss/i386-freebsd.c
/freebsd-11-stable/usr.bin/truss/i386-linux.c
/freebsd-11-stable/usr.bin/truss/main.c
/freebsd-11-stable/usr.bin/truss/mips-freebsd.c
/freebsd-11-stable/usr.bin/truss/setup.c
/freebsd-11-stable/usr.bin/truss/sparc64-freebsd.c
/freebsd-11-stable/usr.bin/truss/syscalls.c
/freebsd-11-stable/usr.bin/tset/extern.h
/freebsd-11-stable/usr.bin/tset/map.c
/freebsd-11-stable/usr.bin/tset/misc.c
/freebsd-11-stable/usr.bin/tset/set.c
/freebsd-11-stable/usr.bin/tset/term.c
/freebsd-11-stable/usr.bin/tset/tset.c
/freebsd-11-stable/usr.bin/tset/wrterm.c
/freebsd-11-stable/usr.bin/tsort/tsort.c
/freebsd-11-stable/usr.bin/tty/tty.c
/freebsd-11-stable/usr.bin/ul/ul.c
/freebsd-11-stable/usr.bin/uname/uname.c
/freebsd-11-stable/usr.bin/unexpand/unexpand.c
/freebsd-11-stable/usr.bin/uniq/uniq.c
/freebsd-11-stable/usr.bin/uudecode/uudecode.c
/freebsd-11-stable/usr.bin/uuencode/uuencode.c
/freebsd-11-stable/usr.bin/vgrind/extern.h
/freebsd-11-stable/usr.bin/vgrind/pathnames.h
/freebsd-11-stable/usr.bin/vgrind/regexp.c
/freebsd-11-stable/usr.bin/vgrind/vfontedpr.c
/freebsd-11-stable/usr.bin/vgrind/vgrind.sh
/freebsd-11-stable/usr.bin/vmstat/vmstat.c
/freebsd-11-stable/usr.bin/w/extern.h
/freebsd-11-stable/usr.bin/w/pr_time.c
/freebsd-11-stable/usr.bin/w/proc_compare.c
/freebsd-11-stable/usr.bin/w/w.c
/freebsd-11-stable/usr.bin/wall/ttymsg.c
/freebsd-11-stable/usr.bin/wall/wall.c
/freebsd-11-stable/usr.bin/wc/wc.c
/freebsd-11-stable/usr.bin/what/what.c
/freebsd-11-stable/usr.bin/whois/whois.c
/freebsd-11-stable/usr.bin/write/write.c
/freebsd-11-stable/usr.bin/xargs/pathnames.h
/freebsd-11-stable/usr.bin/xargs/xargs.c
/freebsd-11-stable/usr.bin/xinstall/xinstall.c
/freebsd-11-stable/usr.bin/xstr/pathnames.h
/freebsd-11-stable/usr.bin/xstr/xstr.c
/freebsd-11-stable/usr.bin/yes/yes.c
/freebsd-11-stable/usr.sbin/accton/accton.c
/freebsd-11-stable/usr.sbin/ancontrol/ancontrol.c
/freebsd-11-stable/usr.sbin/arp/arp.c
/freebsd-11-stable/usr.sbin/chown/chown.c
/freebsd-11-stable/usr.sbin/chroot/chroot.c
/freebsd-11-stable/usr.sbin/config/config.h
/freebsd-11-stable/usr.sbin/config/config.y
/freebsd-11-stable/usr.sbin/config/lang.l
/freebsd-11-stable/usr.sbin/config/main.c
/freebsd-11-stable/usr.sbin/config/mkheaders.c
/freebsd-11-stable/usr.sbin/config/mkmakefile.c
/freebsd-11-stable/usr.sbin/config/mkoptions.c
/freebsd-11-stable/usr.sbin/crashinfo/crashinfo.sh
/freebsd-11-stable/usr.sbin/dconschat/dconschat.c
/freebsd-11-stable/usr.sbin/edquota/edquota.c
/freebsd-11-stable/usr.sbin/edquota/pathnames.h
/freebsd-11-stable/usr.sbin/fwcontrol/fwcontrol.c
/freebsd-11-stable/usr.sbin/fwcontrol/fwdv.c
/freebsd-11-stable/usr.sbin/fwcontrol/fwmpegts.c
/freebsd-11-stable/usr.sbin/ifmcstat/ifmcstat.c
/freebsd-11-stable/usr.sbin/ifmcstat/printb.c
/freebsd-11-stable/usr.sbin/inetd/inetd.c
/freebsd-11-stable/usr.sbin/inetd/inetd.h
/freebsd-11-stable/usr.sbin/inetd/pathnames.h
/freebsd-11-stable/usr.sbin/iostat/iostat.c
/freebsd-11-stable/usr.sbin/ip6addrctl/ip6addrctl.c
/freebsd-11-stable/usr.sbin/kgmon/kgmon.c
/freebsd-11-stable/usr.sbin/kldxref/ef.c
/freebsd-11-stable/usr.sbin/kldxref/ef_obj.c
/freebsd-11-stable/usr.sbin/kldxref/kldxref.c
/freebsd-11-stable/usr.sbin/lpr/common_source/common.c
/freebsd-11-stable/usr.sbin/lpr/common_source/displayq.c
/freebsd-11-stable/usr.sbin/lpr/common_source/lp.h
/freebsd-11-stable/usr.sbin/lpr/common_source/lp.local.h
/freebsd-11-stable/usr.sbin/lpr/common_source/net.c
/freebsd-11-stable/usr.sbin/lpr/common_source/pathnames.h
/freebsd-11-stable/usr.sbin/lpr/common_source/printcap.c
/freebsd-11-stable/usr.sbin/lpr/common_source/rmjob.c
/freebsd-11-stable/usr.sbin/lpr/common_source/startdaemon.c
/freebsd-11-stable/usr.sbin/lpr/filters/lpf.c
/freebsd-11-stable/usr.sbin/lpr/lpc/cmds.c
/freebsd-11-stable/usr.sbin/lpr/lpc/cmdtab.c
/freebsd-11-stable/usr.sbin/lpr/lpc/extern.h
/freebsd-11-stable/usr.sbin/lpr/lpc/lpc.c
/freebsd-11-stable/usr.sbin/lpr/lpc/lpc.h
/freebsd-11-stable/usr.sbin/lpr/lpd/extern.h
/freebsd-11-stable/usr.sbin/lpr/lpd/lpd.c
/freebsd-11-stable/usr.sbin/lpr/lpd/lpdchar.c
/freebsd-11-stable/usr.sbin/lpr/lpd/modes.c
/freebsd-11-stable/usr.sbin/lpr/lpd/printjob.c
/freebsd-11-stable/usr.sbin/lpr/lpd/recvjob.c
/freebsd-11-stable/usr.sbin/lpr/lpq/lpq.c
/freebsd-11-stable/usr.sbin/lpr/lpr/lpr.c
/freebsd-11-stable/usr.sbin/lpr/lprm/lprm.c
/freebsd-11-stable/usr.sbin/lpr/lptest/lptest.c
/freebsd-11-stable/usr.sbin/lpr/pac/pac.c
/freebsd-11-stable/usr.sbin/makefs/ffs.c
/freebsd-11-stable/usr.sbin/makefs/ffs/ffs_alloc.c
/freebsd-11-stable/usr.sbin/makefs/ffs/ffs_balloc.c
/freebsd-11-stable/usr.sbin/makefs/ffs/ffs_extern.h
/freebsd-11-stable/usr.sbin/makefs/ffs/ffs_subr.c
/freebsd-11-stable/usr.sbin/makefs/ffs/mkfs.c
/freebsd-11-stable/usr.sbin/makefs/ffs/ufs_bmap.c
/freebsd-11-stable/usr.sbin/makefs/ffs/ufs_inode.h
/freebsd-11-stable/usr.sbin/manctl/manctl.sh
/freebsd-11-stable/usr.sbin/mld6query/mld6.c
/freebsd-11-stable/usr.sbin/mountd/mountd.c
/freebsd-11-stable/usr.sbin/mountd/pathnames.h
/freebsd-11-stable/usr.sbin/mptutil/mpt_cam.c
/freebsd-11-stable/usr.sbin/mptutil/mpt_cmd.c
/freebsd-11-stable/usr.sbin/mptutil/mpt_config.c
/freebsd-11-stable/usr.sbin/mptutil/mpt_drive.c
/freebsd-11-stable/usr.sbin/mptutil/mpt_evt.c
/freebsd-11-stable/usr.sbin/mptutil/mpt_show.c
/freebsd-11-stable/usr.sbin/mptutil/mpt_volume.c
/freebsd-11-stable/usr.sbin/mptutil/mptutil.c
/freebsd-11-stable/usr.sbin/mptutil/mptutil.h
/freebsd-11-stable/usr.sbin/nandsim/nandsim_rcfile.c
/freebsd-11-stable/usr.sbin/nandsim/nandsim_rcfile.h
/freebsd-11-stable/usr.sbin/ndiscvt/inf-parse.y
/freebsd-11-stable/usr.sbin/ndiscvt/inf-token.l
/freebsd-11-stable/usr.sbin/ndiscvt/inf.c
/freebsd-11-stable/usr.sbin/ndiscvt/ndiscvt.c
/freebsd-11-stable/usr.sbin/ndiscvt/ndisgen.sh
/freebsd-11-stable/usr.sbin/ndiscvt/windrv_stub.c
/freebsd-11-stable/usr.sbin/ndp/ndp.c
/freebsd-11-stable/usr.sbin/nfsd/nfsd.c
/freebsd-11-stable/usr.sbin/pciconf/cap.c
/freebsd-11-stable/usr.sbin/pciconf/pciconf.h
/freebsd-11-stable/usr.sbin/ppp/slcompress.c
/freebsd-11-stable/usr.sbin/ppp/slcompress.h
/freebsd-11-stable/usr.sbin/pstat/pstat.c
/freebsd-11-stable/usr.sbin/pwd_mkdb/pwd_mkdb.c
/freebsd-11-stable/usr.sbin/quotaon/quotaon.c
/freebsd-11-stable/usr.sbin/repquota/repquota.c
/freebsd-11-stable/usr.sbin/rip6query/rip6query.c
/freebsd-11-stable/usr.sbin/rmt/rmt.c
/freebsd-11-stable/usr.sbin/route6d/misc/cksum.c
/freebsd-11-stable/usr.sbin/route6d/route6d.c
/freebsd-11-stable/usr.sbin/route6d/route6d.h
/freebsd-11-stable/usr.sbin/rpc.lockd/lock_proc.c
/freebsd-11-stable/usr.sbin/rpc.lockd/lockd.c
/freebsd-11-stable/usr.sbin/rpc.lockd/lockd.h
/freebsd-11-stable/usr.sbin/rpc.lockd/lockd_lock.c
/freebsd-11-stable/usr.sbin/rpc.statd/file.c
/freebsd-11-stable/usr.sbin/rpc.statd/procs.c
/freebsd-11-stable/usr.sbin/rpc.statd/statd.c
/freebsd-11-stable/usr.sbin/rpc.statd/statd.h
/freebsd-11-stable/usr.sbin/rpc.yppasswdd/yppasswdd_extern.h
/freebsd-11-stable/usr.sbin/rpc.yppasswdd/yppasswdd_main.c
/freebsd-11-stable/usr.sbin/rpc.yppasswdd/yppasswdd_server.c
/freebsd-11-stable/usr.sbin/rpc.ypupdated/yp_dbdelete.c
/freebsd-11-stable/usr.sbin/rpc.ypupdated/yp_dbupdate.c
/freebsd-11-stable/usr.sbin/rpc.ypupdated/ypupdated_main.c
/freebsd-11-stable/usr.sbin/rpc.ypupdated/ypupdated_server.c
/freebsd-11-stable/usr.sbin/rpc.ypxfrd/ypxfrd_extern.h
/freebsd-11-stable/usr.sbin/rpc.ypxfrd/ypxfrd_main.c
/freebsd-11-stable/usr.sbin/rpc.ypxfrd/ypxfrd_server.c
/freebsd-11-stable/usr.sbin/rpcbind/check_bound.c
/freebsd-11-stable/usr.sbin/rpcbind/pmap_svc.c
/freebsd-11-stable/usr.sbin/rpcbind/rpcb_stat.c
/freebsd-11-stable/usr.sbin/rpcbind/rpcb_svc.c
/freebsd-11-stable/usr.sbin/rpcbind/rpcb_svc_4.c
/freebsd-11-stable/usr.sbin/rpcbind/rpcb_svc_com.c
/freebsd-11-stable/usr.sbin/rpcbind/rpcbind.c
/freebsd-11-stable/usr.sbin/rpcbind/rpcbind.h
/freebsd-11-stable/usr.sbin/rpcbind/warmstart.c
/freebsd-11-stable/usr.sbin/rrenumd/lexer.l
/freebsd-11-stable/usr.sbin/rrenumd/parser.y
/freebsd-11-stable/usr.sbin/rrenumd/rrenumd.c
/freebsd-11-stable/usr.sbin/rrenumd/rrenumd.h
/freebsd-11-stable/usr.sbin/rtadvd/advcap.c
/freebsd-11-stable/usr.sbin/rtadvd/config.c
/freebsd-11-stable/usr.sbin/rtadvd/config.h
/freebsd-11-stable/usr.sbin/rtadvd/if.c
/freebsd-11-stable/usr.sbin/rtadvd/if.h
/freebsd-11-stable/usr.sbin/rtadvd/rrenum.c
/freebsd-11-stable/usr.sbin/rtadvd/rrenum.h
/freebsd-11-stable/usr.sbin/rtadvd/rtadvd.c
/freebsd-11-stable/usr.sbin/rtadvd/rtadvd.h
/freebsd-11-stable/usr.sbin/rtadvd/timer.c
/freebsd-11-stable/usr.sbin/rtadvd/timer.h
/freebsd-11-stable/usr.sbin/rtadvd/timer_subr.c
/freebsd-11-stable/usr.sbin/rtadvd/timer_subr.h
/freebsd-11-stable/usr.sbin/rtsold/dump.c
/freebsd-11-stable/usr.sbin/rtsold/if.c
/freebsd-11-stable/usr.sbin/rtsold/probe.c
/freebsd-11-stable/usr.sbin/rtsold/rtsock.c
/freebsd-11-stable/usr.sbin/rtsold/rtsol.c
/freebsd-11-stable/usr.sbin/rtsold/rtsold.c
/freebsd-11-stable/usr.sbin/rtsold/rtsold.h
/freebsd-11-stable/usr.sbin/rwhod/rwhod.c
/freebsd-11-stable/usr.sbin/setfib/setfib.c
/freebsd-11-stable/usr.sbin/syslogd/pathnames.h
/freebsd-11-stable/usr.sbin/syslogd/syslogd.c
/freebsd-11-stable/usr.sbin/timed/timed/acksend.c
/freebsd-11-stable/usr.sbin/timed/timed/byteorder.c
/freebsd-11-stable/usr.sbin/timed/timed/candidate.c
/freebsd-11-stable/usr.sbin/timed/timed/cksum.c
/freebsd-11-stable/usr.sbin/timed/timed/correct.c
/freebsd-11-stable/usr.sbin/timed/timed/extern.h
/freebsd-11-stable/usr.sbin/timed/timed/globals.h
/freebsd-11-stable/usr.sbin/timed/timed/master.c
/freebsd-11-stable/usr.sbin/timed/timed/measure.c
/freebsd-11-stable/usr.sbin/timed/timed/networkdelta.c
/freebsd-11-stable/usr.sbin/timed/timed/pathnames.h
/freebsd-11-stable/usr.sbin/timed/timed/readmsg.c
/freebsd-11-stable/usr.sbin/timed/timed/slave.c
/freebsd-11-stable/usr.sbin/timed/timed/timed.c
/freebsd-11-stable/usr.sbin/timed/timedc/cmds.c
/freebsd-11-stable/usr.sbin/timed/timedc/cmdtab.c
/freebsd-11-stable/usr.sbin/timed/timedc/extern.h
/freebsd-11-stable/usr.sbin/timed/timedc/timedc.c
/freebsd-11-stable/usr.sbin/timed/timedc/timedc.h
/freebsd-11-stable/usr.sbin/traceroute6/traceroute6.c
/freebsd-11-stable/usr.sbin/trpt/trpt.c
/freebsd-11-stable/usr.sbin/vipw/vipw.c
/freebsd-11-stable/usr.sbin/wpa/ndis_events/ndis_events.c
/freebsd-11-stable/usr.sbin/wpa/wpa_supplicant/Packet32.c
/freebsd-11-stable/usr.sbin/wpa/wpa_supplicant/Packet32.h
/freebsd-11-stable/usr.sbin/yp_mkdb/yp_mkdb.c
/freebsd-11-stable/usr.sbin/ypbind/yp_ping.c
/freebsd-11-stable/usr.sbin/yppush/yppush_main.c
/freebsd-11-stable/usr.sbin/ypserv/yp_access.c
/freebsd-11-stable/usr.sbin/ypserv/yp_dblookup.c
/freebsd-11-stable/usr.sbin/ypserv/yp_dnslookup.c
/freebsd-11-stable/usr.sbin/ypserv/yp_error.c
/freebsd-11-stable/usr.sbin/ypserv/yp_extern.h
/freebsd-11-stable/usr.sbin/ypserv/yp_main.c
/freebsd-11-stable/usr.sbin/ypserv/yp_server.c
/freebsd-11-stable/usr.sbin/ypserv/yp_svc_udp.c
328837 04-Feb-2018 jhibbits

MFC r327911:

Replace the PMC class struct copy with an explicit memcpy()

323799 20-Sep-2017 kib

MFC r323230:
Skylake server core PMC support for hwpmc(4).

323798 20-Sep-2017 kib

MFC r323229:
Minor style changes to make forthcoming code stand out less.

321224 19-Jul-2017 ngie

MFC r316601:

pmc.atomsilvermont(3): fix manlint warnings

Start new sentences on new lines.

Sentences affected by the change are wrapped at <80 columns. Other
potentially offending lines have been left alone to reduce churn.

321221 19-Jul-2017 ngie

MFC r316600:

pmc(3): add additional references for libpmc functions in the SEE ALSO section

These functions are already referenced throughout the manpage -- this makes their
presence more apparent.

321219 19-Jul-2017 ngie

MFC r316602:

pmc_read(3): fix manlint error

Remove spurious trailing comma from last .Nm entry in NAME section.

319618 06-Jun-2017 trasz

MFC r318816:

Don't end up manpage titles with a full stop.

Approved by: re (marius)

317328 23-Apr-2017 trasz

MFC r316468:

Fix typo.

Sponsored by: DARPA, AFRL

302408 08-Jul-2016 gjb

Copy head@r302406 to stable/11 as part of the 11.0-RELEASE cycle.
Prune svn:mergeinfo from the new branch, as nothing has been merged
here.

Additional commits post-branch will follow.

Approved by: re (implicit)
Sponsored by: The FreeBSD Foundation


/freebsd-11-stable/MAINTAINERS
/freebsd-11-stable/cddl
/freebsd-11-stable/cddl/contrib/opensolaris
/freebsd-11-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/print
/freebsd-11-stable/cddl/contrib/opensolaris/cmd/zfs
/freebsd-11-stable/cddl/contrib/opensolaris/lib/libzfs
/freebsd-11-stable/contrib/amd
/freebsd-11-stable/contrib/apr
/freebsd-11-stable/contrib/apr-util
/freebsd-11-stable/contrib/atf
/freebsd-11-stable/contrib/binutils
/freebsd-11-stable/contrib/bmake
/freebsd-11-stable/contrib/byacc
/freebsd-11-stable/contrib/bzip2
/freebsd-11-stable/contrib/com_err
/freebsd-11-stable/contrib/compiler-rt
/freebsd-11-stable/contrib/dialog
/freebsd-11-stable/contrib/dma
/freebsd-11-stable/contrib/dtc
/freebsd-11-stable/contrib/ee
/freebsd-11-stable/contrib/elftoolchain
/freebsd-11-stable/contrib/elftoolchain/ar
/freebsd-11-stable/contrib/elftoolchain/brandelf
/freebsd-11-stable/contrib/elftoolchain/elfdump
/freebsd-11-stable/contrib/expat
/freebsd-11-stable/contrib/file
/freebsd-11-stable/contrib/gcc
/freebsd-11-stable/contrib/gcclibs/libgomp
/freebsd-11-stable/contrib/gdb
/freebsd-11-stable/contrib/gdtoa
/freebsd-11-stable/contrib/groff
/freebsd-11-stable/contrib/ipfilter
/freebsd-11-stable/contrib/ldns
/freebsd-11-stable/contrib/ldns-host
/freebsd-11-stable/contrib/less
/freebsd-11-stable/contrib/libarchive
/freebsd-11-stable/contrib/libarchive/cpio
/freebsd-11-stable/contrib/libarchive/libarchive
/freebsd-11-stable/contrib/libarchive/libarchive_fe
/freebsd-11-stable/contrib/libarchive/tar
/freebsd-11-stable/contrib/libc++
/freebsd-11-stable/contrib/libc-vis
/freebsd-11-stable/contrib/libcxxrt
/freebsd-11-stable/contrib/libexecinfo
/freebsd-11-stable/contrib/libpcap
/freebsd-11-stable/contrib/libstdc++
/freebsd-11-stable/contrib/libucl
/freebsd-11-stable/contrib/libxo
/freebsd-11-stable/contrib/llvm
/freebsd-11-stable/contrib/llvm/projects/libunwind
/freebsd-11-stable/contrib/llvm/tools/clang
/freebsd-11-stable/contrib/llvm/tools/lldb
/freebsd-11-stable/contrib/llvm/tools/llvm-dwarfdump
/freebsd-11-stable/contrib/llvm/tools/llvm-lto
/freebsd-11-stable/contrib/mdocml
/freebsd-11-stable/contrib/mtree
/freebsd-11-stable/contrib/ncurses
/freebsd-11-stable/contrib/netcat
/freebsd-11-stable/contrib/ntp
/freebsd-11-stable/contrib/nvi
/freebsd-11-stable/contrib/one-true-awk
/freebsd-11-stable/contrib/openbsm
/freebsd-11-stable/contrib/openpam
/freebsd-11-stable/contrib/openresolv
/freebsd-11-stable/contrib/pf
/freebsd-11-stable/contrib/sendmail
/freebsd-11-stable/contrib/serf
/freebsd-11-stable/contrib/sqlite3
/freebsd-11-stable/contrib/subversion
/freebsd-11-stable/contrib/tcpdump
/freebsd-11-stable/contrib/tcsh
/freebsd-11-stable/contrib/tnftp
/freebsd-11-stable/contrib/top
/freebsd-11-stable/contrib/top/install-sh
/freebsd-11-stable/contrib/tzcode/stdtime
/freebsd-11-stable/contrib/tzcode/zic
/freebsd-11-stable/contrib/tzdata
/freebsd-11-stable/contrib/unbound
/freebsd-11-stable/contrib/vis
/freebsd-11-stable/contrib/wpa
/freebsd-11-stable/contrib/xz
/freebsd-11-stable/crypto/heimdal
/freebsd-11-stable/crypto/openssh
/freebsd-11-stable/crypto/openssl
/freebsd-11-stable/gnu/lib
/freebsd-11-stable/gnu/usr.bin/binutils
/freebsd-11-stable/gnu/usr.bin/cc/cc_tools
/freebsd-11-stable/gnu/usr.bin/gdb
/freebsd-11-stable/lib/libc/locale/ascii.c
/freebsd-11-stable/sys/cddl/contrib/opensolaris
/freebsd-11-stable/sys/contrib/dev/acpica
/freebsd-11-stable/sys/contrib/ipfilter
/freebsd-11-stable/sys/contrib/libfdt
/freebsd-11-stable/sys/contrib/octeon-sdk
/freebsd-11-stable/sys/contrib/x86emu
/freebsd-11-stable/sys/contrib/xz-embedded
/freebsd-11-stable/usr.sbin/bhyve/atkbdc.h
/freebsd-11-stable/usr.sbin/bhyve/bhyvegc.c
/freebsd-11-stable/usr.sbin/bhyve/bhyvegc.h
/freebsd-11-stable/usr.sbin/bhyve/console.c
/freebsd-11-stable/usr.sbin/bhyve/console.h
/freebsd-11-stable/usr.sbin/bhyve/pci_fbuf.c
/freebsd-11-stable/usr.sbin/bhyve/pci_xhci.c
/freebsd-11-stable/usr.sbin/bhyve/pci_xhci.h
/freebsd-11-stable/usr.sbin/bhyve/ps2kbd.c
/freebsd-11-stable/usr.sbin/bhyve/ps2kbd.h
/freebsd-11-stable/usr.sbin/bhyve/ps2mouse.c
/freebsd-11-stable/usr.sbin/bhyve/ps2mouse.h
/freebsd-11-stable/usr.sbin/bhyve/rfb.c
/freebsd-11-stable/usr.sbin/bhyve/rfb.h
/freebsd-11-stable/usr.sbin/bhyve/sockstream.c
/freebsd-11-stable/usr.sbin/bhyve/sockstream.h
/freebsd-11-stable/usr.sbin/bhyve/usb_emul.c
/freebsd-11-stable/usr.sbin/bhyve/usb_emul.h
/freebsd-11-stable/usr.sbin/bhyve/usb_mouse.c
/freebsd-11-stable/usr.sbin/bhyve/vga.c
/freebsd-11-stable/usr.sbin/bhyve/vga.h
298896 01-May-2016 pfg

lib: minor spelling fixes in comments.

No functional change.


298107 16-Apr-2016 gjb

Merge the projects/release-pkg branch to head.

This allows packaging the base system with pkg(8), including
but not limited to providing the ability to provide upstream
binary update possibilities for non-tier-1 architectures.

This merge is a requirement of the 11.0-RELEASE, and as such,
thank you to everyone that has tested the project branch.

Documentation in build(7) etc. is still somewhat sparse, but
updates to those parts will follow.

Sponsored by: The FreeBSD Foundation


296263 01-Mar-2016 trasz

Connect pmc.haswellxeon(3) to the build; looks like it was missed in r279829.

MFC after: 1 month
Sponsored by: The FreeBSD Foundation


291494 30-Nov-2015 rrs

Add support for Intel Skylake and Intel Broadwell PMC's. The Broadwell PMC's have been
tested on the Broadwell-Xeon with a hacked up version of pmcstudy -T. I still need
to circle back and add in to pmcstudy all the new tests from the Broadwell Vtune
guide (for the hacked up version I just made it so I could run the -T option). The
Skylake CPU is not yet available (even though Intel is advertising it .. imagine that).
The Skylake PMC's will need to be tested once we can get a sample skylake CPU :-)

Sponsored by: Netflix Inc.


291307 25-Nov-2015 bdrewery

META MODE: Prefer INSTALL=tools/install.sh to lessen the need for xinstall.host.

This both avoids some dependencies on xinstall.host and allows
bootstrapping on older releases to work due to lack of at least 'install -l'
support.

Sponsored by: EMC / Isilon Storage Division


290929 16-Nov-2015 jtl

Change the driver stats to what they really are: unsigned values.

When pmcstat exits after some samples were dropped, give the user an
idea of how many were lost. (Granted, these are global numbers, but
they may still help quantify the scope of the loss.)

Differential Revision: https://reviews.freebsd.org/D4123
Approved by: gnn (mentor)
MFC after: 1 month
Sponsored by: Juniper Networks


289317 14-Oct-2015 bz

For the Cortex-A8 use the a8 and not the a9 events table.

MFC after: 2 weeks
Sponsored by: DARPA/AFRL
Differential Revision: https://reviews.freebsd.org/D3882


284345 13-Jun-2015 sjg

Add META_MODE support.

Off by default, build behaves normally.
WITH_META_MODE we get auto objdir creation, the ability to
start build from anywhere in the tree.

Still need to add real targets under targets/ to build packages.

Differential Revision: D2796
Reviewed by: brooks imp


284218 10-Jun-2015 br

o Rework ARMv7 events list using aliases - same way as we have for arm64.
o Extend it with Cortex A9-specific events.


283120 19-May-2015 jhb

Use fixed enum values for PMC_CLASSES().

This removes one of the frequent causes of ABI breakage when new CPU
types are added to hwpmc(4).

Differential Revision: https://reviews.freebsd.org/D2586
Reviewed by: davide, emaste, gnn (earlier version)
MFC after: 2 weeks


283112 19-May-2015 br

Add Performance Monitoring Counters support for AArch64.
Family-common and CPU-specific counters implemented.

Supported CPUs: ARM Cortex A53/57/72.

Reviewed by: andrew, bz, emaste, gnn, jhb
Sponsored by: ARM Limited
Differential Revision: https://reviews.freebsd.org/D2555


281793 20-Apr-2015 joel

Minor mdoc fixes.


281713 18-Apr-2015 jhibbits

Implement hwpmc(4) for Freescale e500 core.

This supports e500v1, e500v2, and e500mc. Tested only on e500v2, but the
performance counters are identical across all, with e500mc having some
additional events.

Relnotes: Yes


281098 05-Apr-2015 adrian

Add support for the MIPS74K SoC family performance counters events.

These are similar to the mips24k performance counters - some are
available on perfcnt0/3, some are available on perfcnt1/4.
However, the events aren't all the same.

* Add the events, named the same as from Linux oprofile.
* Verify they're the same as "MIPS32(R) 74KTM Processor Core Family
Software User's Manual"; Document Number: MD00519; Revision 01.05.
* Rename INSTRUCTIONS to something else, so it doesn't clash with
the alias INSTRUCTIONS. I'll try to tidy this up later; there
are a few other aliases to add and shuffle around.

Tested:

* QCA9558 SoC (AP135 board) - MIPS74Kc core (no FPU.)
* make universe; where it didn't fail for other reasons.

TODO:

* It'd be nice to support the four performance counters
in at least this hardware, rather than just two.

Reviewed by: bsdimp ("looks good; don't break world".)


279835 10-Mar-2015 rstone

Fix Ivy Bridge+ MEM_UOPS_RETIRED counters

The MEM_UOPS_RETIRED actually work the same way as the Sandy
Bridge counters, but the counters were documented in a different
way and that seemed to cause the Ivy Bridge counters to be
implemented incorrectly. Use the same counter definitions as
Sandy Bridge. While I'm here, rename the counters to match
what's documented in the datasheet.

Differential Revision: https://reviews.freebsd.org/D1590
MFC after: 1 month
Sponsored by: Sandvine Inc.


279833 10-Mar-2015 rstone

Use the correct event table for Haswell Xeon events

Differential Revision: https://reviews.freebsd.org/D1588
MFC after: 1 month
Sponsored by: Sandvine Inc.


279832 10-Mar-2015 rstone

Fix Sandy Bridge+ hwpmc branch counters

On Sandy Bridge and later, to count branch-related events you
have to or together a mask indicating the type of branch
instruction to count (e.g. direct jump, branch, etc) and a bits
indicating whether to count taken and not-taken branches. The
current counter definitions where defining this bits individually,
so the counters never worked and always just counted 0.

Fix the counter definitions to instead contain the proper
combination of masks. Also update the man pages to reflect the
new counters.

Differential Revision: https://reviews.freebsd.org/D1587
MFC after: 1 month
Sponsored by: Sandvine Inc.


279829 10-Mar-2015 rstone

Add manpage for Haswell Xeon pmc implementation

Differential Revision: https://reviews.freebsd.org/D1584
Reviewed by: gnn
MFC After: 1 month
Sponsored by: Sandvine Inc


277835 28-Jan-2015 br

Add ARMv7 performance monitoring counters.

Differential Revision: https://reviews.freebsd.org/D1687
Reviewed by: rpaulo
Sponsored by: DARPA, AFRL


277177 14-Jan-2015 rrs

Update the hwpmc driver to have the new type HASWELL_XEON. Also
go back through HASWELL, IVY_BRIDGE, IVY_BRIDGE_XEON and SANDY_BRIDGE
to straighten out all the missing PMCs. We also add a new pmc tool
pmcstudy, this allows one to run the various formulas from
the documents "Using Intel Vtune Amplifier XE on XXX Generation platforms" for
IB/SB and Haswell. The tool also allows one to postulate your own
formulas with any of the various PMC's. At some point I will enahance
this to work with Brendan Gregg's flame-graphs so we can flamegraph
various PMC interactions. Note the manual page also needs some
work (lots of work) but gnn has committed to help me with that ;-)
Reviewed by: gnn
MFC after:1 month
Sponsored by: Netflix Inc.


276657 04-Jan-2015 joel

mdoc: sort SEE ALSO.


269182 28-Jul-2014 gnn

Update the list of cross references to include the more modern set of
processors that we now support.


267803 23-Jun-2014 joel

mdoc: remove superfluous paragraph macros.


267773 23-Jun-2014 bapt

use .Mt to mark up email addresses consistently (part3)

PR: 191174
Submitted by: Franco Fichtner <franco at lastsummer.de>


267062 04-Jun-2014 kib

For Xeon 7500 and 48XX (Nehalem EX and Westmere EX) variants of the
Core i7 and Westmere processors, the uncore PMC subsystem is
completely different from the uncore PMC on smaller versions of CPUs.
Disable existing uncore hwpmc code for EX, otherwise non-existing MSRs
are accessed.

The cores PMCs seems to be identical for non-EX and EX, according to
the SDM.

Reviewed by: davide, fabient
Sponsored by: The FreeBSD Foundation
MFC after: 2 weeks


263446 20-Mar-2014 hiren

Update hwpmc to support core events for Atom Silvermont microarchitecture.
(Model 0x4D as per Intel document 330061-001 01/2014)

Tested by: Olivier Cochard-Labbe <olivier@cochatrd.me>
MFC after: 4 weeks


261342 01-Feb-2014 jhibbits

Add hwpmc(4) support for the PowerPC 970 class processors, direct events.
This also fixes asserts on removal of the module for the mpc74xx.

The PowerPC 970 processors have two different types of events: direct events
and indirect events. Thus far only direct events are supported. I included
some documentation in the driver on how indirect events work, but support is
for the future.

MFC after: 1 month


258572 25-Nov-2013 rstone

pmc(3) does not document a dependency on <sys/types.h> but <pmc.h>
requires it, so include it explicitly from <pmc.h>.

MFC after: 1 month


250203 03-May-2013 uqs

Always install pmc.foo(3) manpages.

There is no point in hiding, e.g. pmc.xscale(3) from a developer running
on amd64, when the target arch in question will probably never have
manual pages installed at all.

Reviewed by: sbruno, hiren


248871 29-Mar-2013 joel

Remove EOL whitespace.


248842 28-Mar-2013 sbruno

Update hwpmc to support Haswell class processors.
0x3C: /* Per Intel document 325462-045US 01/2013. */

Add manpage to document all the goodness that is available in this
processor model.

Submitted by: hiren panchasara <hiren.panchasara@gmail.com>
Reviewed by: jimharris, sbruno
Obtained from: Yahoo! Inc.
MFC after: 2 weeks


248783 27-Mar-2013 bryanv

Add missing space

MFC after: 3 days


247329 26-Feb-2013 mav

Add support for good old 8192Hz profiling clock to software PMC.

Reviewed by: fabient


246166 31-Jan-2013 sbruno

Update hwpmc to support the Xeon class of Ivybridge processors.
case 0x3E: /* Per Intel document 325462-045US 01/2013. */

Add manpage to document all the goodness that is available in this
processor model.

No support for uncore events at this time.

Submitted by: hiren panchasara <hiren.panchasara@gmail.com>
Reviewed by: davide, jimharris, sbruno
Obtained from: Yahoo! Inc.
MFC after: 2 weeks


242622 05-Nov-2012 dim

Fix a few warnings from newer clang 3.2 in libpmc, about comparing enum
pmc_event values against integer constants which fall outside the enum
range.

Reviewed by: fabient, sbruno
MFC after: 3 days


241974 24-Oct-2012 sbruno

Cleanup and rename some variables in libpmc and hwpmc.

Submitted by: hiren panchasara <hiren.panchasara@gmail.com>
Reviewed by: jimharris@ sbruno@
Obtained from: Yahoo! Inc.
MFC after: 2 weeks


241745 19-Oct-2012 joel

Remove trailing whitespace.


241741 19-Oct-2012 sbruno

Update man page crossreferences to sandybridge xeon class

MFC after: 2 weeks


241738 19-Oct-2012 sbruno

Update hwpmc to support the Xeon class of Sandybridge processors.
(Model 0x2D /* Per Intel document 253669-044US 08/2012. */)

Add manpage to document all the goodness that is available in this
processor model.

No support for uncore events at this time.

Submitted by: hiren panchasara <hiren.panchasara@gmail.com>
Reviewed by: jimharris@ fabient@
Obtained from: Yahoo! Inc.
MFC after: 2 weeks


241255 06-Oct-2012 kientzle

Fix "make install"

Also make arm the same as other platforms: Install man
pages for all CPUs in the family.


240174 06-Sep-2012 joel

Remove trailing whitespace.


240173 06-Sep-2012 joel

Minor mdoc fix.


240164 06-Sep-2012 fabient

Add Intel Ivy Bridge support to hwpmc(9).
Update offcore RSP token for Sandy Bridge.
Note: No uncore support.

Will works on Family 6 Model 3a.

MFC after: 1 month
Tested by: bapt, grehan


236438 02-Jun-2012 joel

mdoc: minor Bl improvements.


233650 29-Mar-2012 joel

mdoc: sort prologue macros.


233648 29-Mar-2012 eadler

Remove trailing whitespace per mdoc lint warning

Disussed with: gavin
No objection from: doc
Approved by: joel
MFC after: 3 days


233628 28-Mar-2012 fabient

Add software PMC support.

New kernel events can be added at various location for sampling or counting.
This will for example allow easy system profiling whatever the processor is
with known tools like pmcstat(8).

Simultaneous usage of software PMC and hardware PMC is possible, for example
looking at the lock acquire failure, page fault while sampling on
instructions.

Sponsored by: NETASQ
MFC after: 1 month


233565 27-Mar-2012 joel

Remove useless Ta macro.


233462 25-Mar-2012 joel

Remove superfluous paragraph macro.


233451 25-Mar-2012 gonzo

Update manual pages for MIPS-related CPUs:

- Rename pmc.mips to pmc.mips24k since it covers just one CPU,
no whole architecture
- Add documetnations for Octeon's PMC counters
- Remove CAVEATS section from pmc.mips24k page: PMC for MIPS supports
sampling now.


233335 23-Mar-2012 gonzo

Add Octeon-related parts to libpmc


233321 22-Mar-2012 jkoshy

Correct a function prototype.

Submitted by: "Anders Magnusson" <ragge at ludd.ltu.se>, via joel


233320 22-Mar-2012 gonzo

Make reusable part of code have mips prefix, not mips24


232377 02-Mar-2012 pluknet

Kill EoL whitespaces, and minor lint.


232366 01-Mar-2012 davide

- Add support for the Intel Sandy Bridge microarchitecture (both core and uncore counting events)
- New manpages with event lists.
- Add MSRs for the Intel Sandy Bridge microarchitecture

Reviewed by: attilio, brueffer, fabient
Approved by: gnn (mentor)
MFC after: 3 weeks


232159 25-Feb-2012 gjb

Whitespace cleanup:
o Wrap sentences on to new lines
o Rewrap lines where possible while trying to keep the diff to a
minimum

Found with: textproc/igor
MFC after: 1 week
X-MFC-With: r232157


232158 25-Feb-2012 gjb

Whitespace cleanup:
o Wrap sentences on to new lines
o Cleanup trailing whitespace

Found with: textproc/igor
MFC after: 1 week
X-MFC-With: r232157


232157 25-Feb-2012 gjb

Fix various typos in manual pages.

Submitted by: amdmi3
PR: 165431
MFC after: 1 week


231871 17-Feb-2012 brueffer

Switch the license boilerplates to our standard one.

Advantages:
- Reduces the number of different license versions in the tree
- Eliminates a typo
- Removes some incorrect author attributions due to c/p
- Removes c/p error potential for future pmc manpages

Approved by: jkoshy, gnn, rpaulo, fabient (copyright holders)
MFC after: 1 week


229470 04-Jan-2012 fabient

Update PMC events from October 2011 Intel documentation.

Submitted by: Davide Italiano <davide.italiano@gmail.com>
MFC after: 3 days


228869 24-Dec-2011 jhibbits

Implement hwpmc counting PMC support for PowerPC G4+ (MPC745x/MPC744x).
Sampling is in progress.

Approved by: nwhitehorn (mentor)
MFC after: 9.0-RELEASE


228557 16-Dec-2011 dim

In lib/libpmc/libpmc.c, struct pmc_cputype_map's pm_cputype field should
be of type 'enum pmc_cputype', not 'enum pmc_class'.

MFC after: 1 week


226514 18-Oct-2011 fabient

Add a flush of the current PMC log buffer before displaying the next top.

As the underlying block is 4KB if the PMC throughput is low the measurement
will be reported on the next tick. pmcstat(8) use the modified flush API to
reclaim current buffer before displaying next top.

MFC after: 1 month


226436 16-Oct-2011 eadler

- change "is is" to "is" or "it is"
- change "the the" to "the"

Approved by: lstewart
Approved by: sahil (mentor)
MFC after: 3 days


218532 11-Feb-2011 imp

Revert last commit: CPUTYPE will be defined here


218531 11-Feb-2011 imp

Don't require CPUTYPE to be defined for ARM, but use it if it is.


214867 06-Nov-2010 uqs

Fix manpage markup.


213573 08-Oct-2010 uqs

mdoc: drop redundant .Pp and .LP calls

They have no effect when coming in pairs, or before .Bl/.Bd


213402 04-Oct-2010 gnn

Fix punctuation and grammar, mostly by ending sentences with a period.

MFC after: 1 day


212224 05-Sep-2010 fabient

Fix invalid class removal when IAF is not the last class.
Keep IAF class with 0 PMC and change the alias in libpmc to IAP.

MFC after: 1 week


211725 23-Aug-2010 imp

MFtbemd:

Prefer MACHNE_CPUARCH to MACHINE_ARCH in most contexts where you want
to test of all the CPUs of a given family conform.


211397 16-Aug-2010 joel

Fix typos, spelling, formatting and mdoc mistakes found by Nobuyuki while
translating these manual pages. Minor corrections by me.

Submitted by: Nobuyuki Koganemaru <n-kogane@syd.odn.ne.jp>


210933 06-Aug-2010 joel

Fix typos and spelling mistakes.


210823 03-Aug-2010 joel

Spelling fixes.


208914 08-Jun-2010 uqs

mdoc: remove literal tabs where they don't belong


208860 05-Jun-2010 fabient

Fix memory leak on error.

Found with: Coverity Prevent(tm)
MFC after: 1 month


208732 02-Jun-2010 uqs

mdoc cleanup

Garbage collect unused sections, macros and arguments. Fix prologue and
remove empty lines.

Found by: mdocml


208595 27-May-2010 uqs

mdoc: Use mdoc macro for the (R) symbol

While here, also drop the unneeded quotes


208027 13-May-2010 uqs

mdoc: move CAVEATS, BUGS and SECURITY CONSIDERATIONS sections to the
bottom of the manpages and order them consistently.

GNU groff doesn't care about the ordering, and doesn't even mention
CAVEATS and SECURITY CONSIDERATIONS as common sections and where to put
them.

Found by: mdocml lint run
Reviewed by: ru


207482 01-May-2010 rstone

When configuring hwpmc to use the EXT_SNOOP event, only send a default cachestate qualifier on the Atom processor. Other Intel processors do not accept a cachestate qualifier and currently hwpmc will return EINVAL if you try to use the EXT_SNOOP event on those processors

Approved by: jkoshy (mentor)
MFC after: 2 weeks


206622 14-Apr-2010 uqs

mdoc: order prologue macros consistently by Dd/Dt/Os

Although groff_mdoc(7) gives another impression, this is the ordering
most widely used and also required by mdocml/mandoc.

Reviewed by: ru
Approved by: philip, ed (mentors)


206089 02-Apr-2010 fabient

- Support for uncore counting events: one fixed PMC with the uncore
domain clock, 8 programmable PMC.
- Westmere based CPU (Xeon 5600, Corei7 980X) support.
- New man pages with events list for core and uncore.
- Updated Corei7 events with Intel 253669-033US December 2009 doc.
There is some removed events in the documentation, they have been
kept in the code but documented in the man page as obsolete.
- Offcore response events can be setup with rsp token.

Sponsored by: NETASQ


205512 23-Mar-2010 rpaulo

Finish the much belated Intel XScale hwpmc(4) man page.


204635 03-Mar-2010 gnn

Add support for hwpmc(4) on the MIPS 24K, 32 bit, embedded processor.

Add macros for properly accessing coprocessor 0 registers that
support performance counters.

Reviewed by: jkoshy rpaulo fabien imp
MFC after: 1 month


202157 12-Jan-2010 jkoshy

Bug fix: add a missing initializer.

Submitted by: Luca Pizzamiglio <luca.pizzamiglio at gmail dot com>
PR: i386/142742


201381 02-Jan-2010 ed

Build lib/ with WARNS=6 by default.

Similar to libexec/, do the same with lib/. Make WARNS=6 the norm and
lower it when needed.

I'm setting WARNS?=0 for secure/. It seems secure/ includes the
Makefile.inc provided by lib/. I'm not going to touch that directory.
Most of the code there is contributed anyway.


200928 23-Dec-2009 rpaulo

Intel XScale hwpmc(4) support.

This brings hwpmc(4) support for 2nd and 3rd generation XScale cores.
Right now it's enabled by default to make sure we test this a bit.
When the time comes it can be disabled by default.
Tested on Gateworks boards.

A man page is coming.

Obtained from: //depot/user/rpaulo/xscalepmc/...


198788 02-Nov-2009 brueffer

Use our canonical .Dd format.

Submitted by: Ulrich Spoerlein


198433 24-Oct-2009 jkoshy

Not all Intel Core (TM) CPUs implement PMC_CLASS_IAF fixed-function
counters. For such CPUs, use an alternate mapping of convenience
names to events supported by PMC_CLASS_IAP programmable counters.

Testing and review by: fabient


197741 04-Oct-2009 rpaulo

Install x86 related man pages on x86 systems only.

Reviewed by: jkoshy


196469 23-Aug-2009 jkoshy

Use a more appropriate choice of words.

Submitted by: danfe


196449 23-Aug-2009 jkoshy

Use US spellings, fix typos.


196448 23-Aug-2009 jkoshy

Fix typos.


196447 23-Aug-2009 jkoshy

Fix a typo.


196446 23-Aug-2009 jkoshy

Fix typos, use American English spellings.


196445 23-Aug-2009 jkoshy

Fix typos.


196441 23-Aug-2009 jkoshy

Correct typos.


196440 23-Aug-2009 jkoshy

Correct grammar.


196438 23-Aug-2009 jkoshy

Fix a typo.

Reported by: John McCullough <jmccullo at cs.ucsd.edu>


196437 23-Aug-2009 jkoshy

Fix typos.

Reported by: Harald Servat <redcrash at gmail dot com>


193810 09-Jun-2009 jkoshy

Document the fact that some Core2 family CPUs lack fixed-function counters.


193809 09-Jun-2009 jkoshy

Fix parsing of Core2 event qualifiers.

Submitted by: Nikola K <laladelausanne at gmail dot com>


190395 24-Mar-2009 fabient

Allow compile from c++ for libpmc

Approved by: jkoshy (mentor)
MFC after: 3 days


187761 27-Jan-2009 jeff

- Add support for nehalem/corei7 cpus. This supports all of the core
counters defined in the reference manual. It does not support the
'uncore' events.

Reviewed by: jkoshy
Sponsored by: Nokia


185763 08-Dec-2008 jkoshy

Document processor errata that affect performance measurement.


185585 03-Dec-2008 jkoshy

Fixes for Core2 Extreme support.

Submitted by: "Artem Belevich" <artemb at gmail dot com>


185364 27-Nov-2008 jkoshy

Update description of an event.

Submitted by: "Verplanke, Edwin" <edwin dot verplanke at intel dot com>


185363 27-Nov-2008 jkoshy

- Add support for PMCs in Intel CPUs of Family 6, model 0xE (Core Solo
and Core Duo), models 0xF (Core2), model 0x17 (Core2Extreme) and
model 0x1C (Atom).

In these CPUs, the actual numbers, kinds and widths of PMCs present
need to queried at run time. Support for specific "architectural"
events also needs to be queried at run time.

Model 0xE CPUs support programmable PMCs, subsequent CPUs
additionally support "fixed-function" counters.

- Use event names that are close to vendor documentation, taking in
account that:
- events with identical semantics on two or more CPUs in this family
can have differing names in vendor documentation,
- identical vendor event names may map to differing events across
CPUs,
- each type of CPU supports a different subset of measurable
events.

Fixed-function and programmable counters both use the same vendor
names for events. The use of a class name prefix ("iaf-" or
"iap-" respectively) permits these to be distinguished.

- In libpmc, refactor pmc_name_of_event() into a public interface
and an internal helper function, for use by log handling code.

- Minor code tweaks: staticize a global, freshen a few comments.

Tested by: gnn


185326 26-Nov-2008 jkoshy

Fix buglets.


185247 24-Nov-2008 jkoshy

Correction: these PMCs do not support a "umask" modifier.


185246 24-Nov-2008 jkoshy

- Document the rules used to determine when spellings of events
are equivalent.
- Reorder text to make the manual page more coherent.


184995 15-Nov-2008 jkoshy

- Document the class name prefix for these PMCs.
- Document the "anythread" qualifier, available on Atom CPUs.
- Add examples.


184932 13-Nov-2008 jkoshy

Tweak -mdoc usage.


184917 13-Nov-2008 jkoshy

Document UMASK values, fix errors.


184916 13-Nov-2008 jkoshy

Fix typos, document UMASK values.


184914 13-Nov-2008 jkoshy

Remove duplicates, fix errors and document UMASK values.


184892 12-Nov-2008 jkoshy

Document the alternate event names supported for "architectural" PMC events.


184891 12-Nov-2008 jkoshy

Use spellings that are close to vendor documentation.


183725 09-Oct-2008 jkoshy

- Sparsely number enumerations 'pmc_cputype' and 'pmc_event' in order to
reduce ABI disruptions when new cpu types and new PMC events are added
in the future.
- Support alternate spellings for PMC events. Derive the canonical
spelling of an event name from its enumeration name in 'enum pmc_event'.
- Provide a way for users to disambiguate between identically named events
supported by multiple classes of PMCs in a CPU.
- Change libpmc's machine-dependent event specifier parsing code to
better support CPUs containing two or more classes of PMC resources.


183641 06-Oct-2008 jkoshy

Correct a typo.


183597 04-Oct-2008 jkoshy

- Add cross-references.
- Tweak -mdoc use.


183596 04-Oct-2008 jkoshy

Add cross-references.


183595 04-Oct-2008 jkoshy

Cross-reference new manual pages.


183594 04-Oct-2008 jkoshy

- Cross-reference new manual pages.
- Spell new PMC class names correctly.


183593 04-Oct-2008 jkoshy

Add manual pages for performance measurement counters present in
Intel Atom(tm), Core(tm) and Core2(tm) CPUs.


183543 02-Oct-2008 jkoshy

- Document event numbers associated with event names.
- Document an event that was missed out earlier.
- Sort event names alphabetically.


183540 02-Oct-2008 jkoshy

- Document event numbers.
- Sort event names.


183537 02-Oct-2008 jkoshy

-mdoc tweaks.


183534 02-Oct-2008 jkoshy

- Document event numbers.
- Correct misspellings of two event names.


183533 02-Oct-2008 jkoshy

Document event numbers alongside event names.

Requested by: Arun Sharma <arun at sharma-home dot net>


183267 22-Sep-2008 jkoshy

Document changes in behaviour due to sparse CPU numbering support.


183184 19-Sep-2008 jkoshy

Keep symbols in sorted order.


183139 18-Sep-2008 jkoshy

Improve grammar.


183138 18-Sep-2008 jkoshy

Document new PMC classes, capabilities and CPU kinds.
Improve typography.


183107 17-Sep-2008 jkoshy

Whitespace fixes.


183105 17-Sep-2008 jkoshy

Add event name aliases for Pentium PMCs.


183087 16-Sep-2008 jkoshy

Replace PMC-dependent content with references to
the appropriate manual pages.


183086 16-Sep-2008 jkoshy

Build and install PMC-dependent manual pages.


183085 16-Sep-2008 jkoshy

Fix a typo.


183084 16-Sep-2008 jkoshy

Move PMC documentation to separate manual pages, one per PMC class.


183082 16-Sep-2008 jkoshy

Move TSC specific PMC information to its own manual page.


183075 16-Sep-2008 jkoshy

Correct an event name alias: event "k7-dc-misses" does not support
a unitmask.


177162 14-Mar-2008 jkoshy

- Document Pentium and Pentium MMX events.
- Update (c) years and the manual page's date.


177107 12-Mar-2008 jkoshy

Bring the behaviour of pmc_capabilities() and pmc_width() in line with
documentation: set 'errno' and return -1 in case of an error.

Update (c) years.


177106 12-Mar-2008 jkoshy

Describe return values from pmc_ncpu() and pmc_npmc() better.


175914 03-Feb-2008 jkoshy

Correct a typo.


174406 07-Dec-2007 jkoshy

Improve style(9) compliance and trim a long text line.


174215 03-Dec-2007 jkoshy

Add callchain parsing to -lpmc.

Sponsored by: FreeBSD Foundation and Google Inc.


174212 03-Dec-2007 jkoshy

Replace a spurious cross-reference to hwpmc(4) with correct text.


173900 25-Nov-2007 jkoshy

- Add an overview of the pmc(3) API.
- Defer detailed descriptions of individual functions in the API to
function-specific manual pages.


173899 25-Nov-2007 jkoshy

Move the following functions into their own manual pages:
- pmc_attach(), pmc_detach().
- pmc_capabilities(), pmc_cpuinfo(), pmc_ncpu(), pmc_npmc(), pmc_pmcinfo(),
pmc_width().
- pmc_get_driver_stats().
- pmc_get_msr().
- pmc_read(), pmc_rw(), pmc_write().
- pmc_set().
- pmc_start(), pmc_stop().


173889 25-Nov-2007 jkoshy

- Describe function pmc_init() in its own manual page.
- Describe functions pmc_configure_logfile(), pmc_flush_logfile() and
pmc_writelog() in their own manual page.


173880 24-Nov-2007 jkoshy

Describe convenience functions `pmc_name_of_{capability,class,cputype,
disposition,event,mode,state}' in their own manual page.


173872 23-Nov-2007 jkoshy

Describe pmc_event_names_of_class() in its own manual page.


173871 23-Nov-2007 jkoshy

Describe pmc_enable() and pmc_disable() in their own manual page.


173870 23-Nov-2007 jkoshy

Describe pmc_allocate() and pmc_release() in their own manual page.


168660 12-Apr-2007 jkoshy

Fix a bug in the description of the "p6-div" event. [1]

Update the description of the "p6-div" and "p6-mul" events according
to the "Intel(r) 64 and IA-32 Architectures Software Developers
Manual Volume 3B: System Programming Guide, Part 2, November 2006".

Reported by: Harald Servat <redcrash at gmail dot com> [1]


168612 11-Apr-2007 jkoshy

Correct a typo in an event name alias.

Reported by: Harald Servat <redcrash at gmail dot com>


167903 26-Mar-2007 jkoshy

Clarify memory management rules for pmc_cpuinfo().

Suggested by: "Harald Servat" <redcrash at gmail dot com>


162385 17-Sep-2006 ru

Markup fixes.


157144 26-Mar-2006 jkoshy

MFP4: Support for profiling dynamically loaded objects.

Kernel changes:

Inform hwpmc of executable objects brought into the system by
kldload() and mmap(), and of their removal by kldunload() and
munmap(). A helper function linker_hwpmc_list_objects() has been
added to "sys/kern/kern_linker.c" and is used by hwpmc to retrieve
the list of currently loaded kernel modules.

The unused `MAPPINGCHANGE' event has been deprecated in favour
of separate `MAP_IN' and `MAP_OUT' events; this change reduces
space wastage in the log.

Bump the hwpmc's ABI version to "2.0.00". Teach hwpmc(4) to
handle the map change callbacks.

Change the default per-cpu sample buffer size to hold
32 samples (up from 16).

Increment __FreeBSD_version.

libpmc(3) changes:

Update libpmc(3) to deal with the new events in the log file; bring
the pmclog(3) manual page in sync with the code.

pmcstat(8) changes:

Introduce new options to pmcstat(8): "-r" (root fs path), "-M"
(mapfile name), "-q"/"-v" (verbosity control). Option "-k" now
takes a kernel directory as its argument but will also work with
the older invocation syntax.

Rework string handling in pmcstat(8) to use an opaque type for
interned strings. Clean up ELF parsing code and add support for
tracking dynamic object mappings reported by a v2.0.00 hwpmc(4).

Report statistics at the end of a log conversion run depending
on the requested verbosity level.

Reviewed by: jhb, dds (kernel parts of an earlier patch)
Tested by: gallatin (earlier patch)


156907 20-Mar-2006 jkoshy

Update the pmc(3) manual page's date string and freshen the year in the (c) line for
pmc.3 and libpmc.c.


155998 25-Feb-2006 jkoshy

Add an alias 'unhalted-cycles' denoting cycles where the CPU is
not in a halt or sleep state.


152761 24-Nov-2005 ru

Fix prototypes.


152551 17-Nov-2005 ru

-mdoc sweep.


148223 21-Jul-2005 jkoshy

Add COMPATIBILITY and HISTORY sections.

MFC after: 3 days


148222 21-Jul-2005 jkoshy

Catch with the source code. Sort a list alphabetically. Add a
HISTORY section.

MFC after: 3 days


148011 14-Jul-2005 brueffer

- Remove MLINKS to nonexistant manpages
- Change some section numbers to match reality
- For MLINKS to manpages from ports, mention which port installs them

MFC after: 3 days


147864 09-Jul-2005 jkoshy

Fix a bug in pmclog_read() that causes it to return with a false
error when a log record crosses an internal buffer boundary.

Approved by: re (scottl)


147759 03-Jul-2005 jkoshy

- Update the CPU version check to recognize P4/EMT64 CPUs. [1]
- Allow libpmc(3) to support P4/EMT64 PMCs on the amd64 architecture
and AMD K8 PMCs on the i386. [2]

Submitted by: ps [1]
Pointy hat: myself [2]
Approved by: re (scottl)


147708 30-Jun-2005 jkoshy

MFP4:

- pmcstat(8) gprof output mode fixes:

lib/libpmc/pmclog.{c,h}, sys/sys/pmclog.h:
+ Add a 'is_usermode' field to the PMCLOG_PCSAMPLE event
+ Add an 'entryaddr' field to the PMCLOG_PROCEXEC event,
so that pmcstat(8) can determine where the runtime loader
/libexec/ld-elf.so.1 is getting loaded.

sys/kern/kern_exec.c:
+ Use a local struct to group the entry address of the image being
exec()'ed and the process credential changed flag to the exec
handling hook inside hwpmc(4).

usr.sbin/pmcstat/*:
+ Support "-k kernelpath", "-D sampledir".
+ Implement the ELF bits of 'gmon.out' profile generation in a new
file "pmcstat_log.c". Move all log related functions to this
file.
+ Move local definitions and prototypes to "pmcstat.h"

- Other bug fixes:
+ lib/libpmc/pmclog.c: correctly handle EOF in pmclog_read().
+ sys/dev/hwpmc_mod.c: unconditionally log a PROCEXIT event to all
attached PMCs when a process exits.
+ sys/sys/pmc.h: correct a function prototype.
+ Improve usage checks in pmcstat(8).

Approved by: re (blanket hwpmc)


147586 24-Jun-2005 ru

- Tidy up the markup.
- Clarify the sections on "Cascading P4 PMCs" and
"Precise Event Based Sampling" (1)
- Bump document date.

Reviewed by: jkoshy
Submitted by: jkoshy (1)
Approved by: re (blanket)


147584 24-Jun-2005 ru

Tidy up the markup.

Reviewed by: jkoshy
Approved by: re (blanket)


147219 10-Jun-2005 jkoshy

Fix tinderbox breakage.


147191 09-Jun-2005 jkoshy

MFP4:

- Implement sampling modes and logging support in hwpmc(4).

- Separate MI and MD parts of hwpmc(4) and allow sharing of
PMC implementations across different architectures.
Add support for P4 (EMT64) style PMCs to the amd64 code.

- New pmcstat(8) options: -E (exit time counts) -W (counts
every context switch), -R (print log file).

- pmc(3) API changes, improve our ability to keep ABI compatibility
in the future. Add more 'alias' names for commonly used events.

- bug fixes & documentation.


145774 01-May-2005 jkoshy

Add convenience APIs pmc_width() and pmc_capabilities() to -lpmc.
Have pmcstat(8) and pmccontrol(8) use these APIs.

Return PMC class-related constants (PMC widths and capabilities)
with the OP GETCPUINFO call leaving OP PMCINFO to return only the
dynamic information associated with a PMC (i.e., whether enabled,
owner pid, reload count etc.).

Allow pmc_read() (i.e., OPS PMCRW) on active self-attached PMCs to
get upto-date values from hardware since we can guarantee that the
hardware is running the correct PMC at the time of the call.

Bug fixes:
- (x86 class processors) Fix a bug that prevented an RDPMC
instruction from being recognized as permitted till after the
attached process had context switched out and back in again after
a pmc_start() call.

Tighten the rules for using RDPMC class instructions: a GETMSR
OP is now allowed only after an OP ATTACH has been done by the
PMC's owner to itself. OP GETMSR is not allowed for PMCs that
track descendants, for PMCs attached to processes other than
their owner processes.

- (P4/HTT processors only) Fix a bug that caused the MI and MD
layers to get out of sync. Add a new MD operation 'get_config()'
as part of this fix.

- Allow multiple system-mode PMCs at the same row-index but on
different CPUs to be allocated.

- Reject allocation of an administratively disabled PMC.

Misc. code cleanups and refactoring. Improve a few comments.


145440 23-Apr-2005 jkoshy

Note events affected by processor errata.


145351 21-Apr-2005 jkoshy

Add event aliases for P6 and K8 PMCs.


145340 20-Apr-2005 marcel

o Do not include <machine/pmc_mdep.h>. It's automaticly included for
us when <sys/pmc.h> is included.
o Replace "#if __i386__" and "#if __amd64__" with the equivalent of
"#ifdef __i386__" and "#ifdef __amd64__" (resp.) These tokens are
not defined on all platforms.
o Conditionally compile pmc_parse_mask() on i386 and amd64 only. It's
only referenced there. This will change when support for other
platforms is added, of course.

Ok'd by: jkoshy@


145315 20-Apr-2005 jkoshy

Remove extra Id keyword.


145280 19-Apr-2005 jkoshy

Remove superfluous CFLAGS lines. Use the conditional '?=' construct
for WARNS lines.

Submitted by: ru


145256 19-Apr-2005 jkoshy

Bring a working snapshot of hwpmc(4), its associated libraries, userland utilities
and documentation into -CURRENT.

Bump FreeBSD_version.

Reviewed by: alc, jhb (kernel changes)