Home
last modified time | relevance | path

Searched +full:os +full:- +full:manifest +full:- +full:offset (Results 1 – 25 of 30) sorted by relevance

12

/freebsd/sys/contrib/device-tree/Bindings/gpu/host1x/
H A Dnvidia,tegra234-nvdec.yaml1 # SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
3 ---
4 $id: http://devicetree.org/schemas/gpu/host1x/nvidia,tegra234-nvdec.yaml#
5 $schema: http://devicetree.org/meta-schemas/core.yaml#
15 - Thierry Reding <treding@gmail.com>
16 - Mikko Perttunen <mperttunen@nvidia.com>
20 pattern: "^nvdec@[0-9a-f]*$"
24 - nvidia,tegra234-nvdec
32 clock-names:
34 - const: nvdec
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Object/
H A DWindowsResource.cpp1 //===-- WindowsResource.cpp -------------------------------------*- C++ -*-===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
11 //===----------------------------------------------------------------------===//
47 // 8-byte because it makes everyone happy.
106 Reader.getOffset() - in readStringOrId()
107 sizeof(uint16_t)); // Re-read the bytes which we used to check the flag. in readStringOrId()
119 if (Prefix->HeaderSize < MIN_HEADER_SIZE) in loadNext()
120 return make_error<GenericBinaryError>(Owner->getFileName() + in loadNext()
132 RETURN_IF_ERROR(Reader.readArray(Data, Prefix->DataSize)); in loadNext()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DAttributorAttributes.cpp1 //===- AttributorAttributes.cpp - Attributes for Attributor deduction -----===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
12 //===----------------------------------------------------------------------===//
84 "attributor-manifest-internal", cl::Hidden,
85 cl::desc("Manifest Attributor internal string attributes."),
88 static cl::opt<int> MaxHeapToStackSize("max-heap-to-stack-size", cl::init(128),
94 template <> unsigned llvm::PotentialLLVMValuesState::MaxPotentialValues = -1;
97 "attributor-max-potential-values", cl::Hidden,
104 "attributor-max-potential-values-iterations", cl::Hidden,
[all …]
H A DAttributor.cpp1 //===- Attributor.cpp - Module-wide attribute deduction -------------------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
14 //===----------------------------------------------------------------------===//
67 #define VERBOSE_DEBUG_TYPE DEBUG_TYPE "-verbose"
69 DEBUG_COUNTER(ManifestDBGCounter, "attributor-manifest",
87 // In the LLVM-TS and SPEC2006, 32 seems to not induce compile time overheads
92 // iterations: bottom-up and top-down.
94 SetFixpointIterations("attributor-max-iterations", cl::Hidden,
99 MaxSpecializationPerCB("attributor-max-specializations-per-call-base",
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/IPO/
H A DAttributor.h1 //===- Attributor.h --- Module-wide attribute deduction ---------*- C++ -*-===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
13 // well as information exchange between abstract attributes in-flight.
17 // all abstract attributes in-flight, or until it will enforce a pessimistic fix
21 // describe properties of the code. They can correspond to actual LLVM-IR
22 // attributes, or they can be more general, ultimately unrelated to LLVM-IR
24 // information to other abstract attributes in-flight but we might not want to
25 // manifest the information. The Attributor allows to query in-flight abstract
44 // in-flight. Since the IR is given and assumed to be valid, the information
[all …]
/freebsd/usr.sbin/makefs/zfs/
H A Dfs.c1 /*-
2 * SPDX-License-Identifier: BSD-2-Clause
54 zfs_objset_t *os; member
56 /* Offset table for system attributes, indexed by a zpl_attr_t. */
63 * The order of the attributes doesn't matter, this is simply the one hard-coded
124 * layout and just hard-codes attribute offsets.
178 return (strcmp(cur->name, ".") == 0); in fsnode_isroot()
184 return (cur->type == S_IFREG || cur->type == S_IFDIR || in fsnode_valid()
185 cur->type == S_IFLNK); in fsnode_valid()
189 * Visit each node in a directory hierarchy, in pre-order depth-first order.
[all …]
/freebsd/contrib/file/magic/Magdir/
H A Darchive1 #------------------------------------------------------------------------------
3 # archive: file(1) magic for archive formats (see also "msdos" for self-
7 # pre-POSIX "tar" archives are also handled in the C code ../../src/is_tar.c.
11 # Reference: https://www.freebsd.org/cgi/man.cgi?query=tar&sektion=5&manpath=FreeBSD+8-current
18 # last 4 header bytes often null but tar\0 in gtarfail2.tar gtarfail.tar-bad
19 # at https://sourceforge.net/projects/s-tar/files/testscripts/
21 # nul, space or ascii digit 0-7 at start of mode
32 >>>>>>>>>0 use tar-nvram
34 #>>>>>>>>0 regex \^[0-9]{2,4}[.](png|jpg|jpeg|tif|tiff|gif|bmp) NAME "%s"
37 >>>>>>>>0 regex \^[0-9]{2,4}[.](png|jpg|jpeg|tif|tiff|gif|bmp)
[all …]
H A Dmsdos2 #------------------------------------------------------------------------------
4 # msdos: file(1) magic for MS-DOS files
11 !:mime text/x-msdos-batch
14 !:mime text/x-msdos-batch
17 !:mime text/x-msdos-batch
20 !:mime text/x-msdos-batch
24 # OS/2 batch files are REXX. the second regex is a bit generic, oh well
27 >100 regex/c =^[\ \t]{0,10}call[\ \t]{1,10}rxfunc OS/2 REXX batch file text
29 >100 regex/c =^[\ \t]{0,10}say\ ['"] OS/2 REXX batch file text
40 # FMX64:FileMaker Pro 64-bit plug-in https://en.wikipedia.org/wiki/FileMaker
[all …]
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldELF.cpp1 //===-- RuntimeDyldELF.cpp - Run-time dynamic linker for MC-JIT -*- C++ -*-===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 // Implementation of ELF support for the MC-JIT runtime dynamic linker.
11 //===----------------------------------------------------------------------===//
52 uint64_t Mask = ((uint64_t)1 << (End + 1 - Start)) - 1; in getBits()
79 return v->isDyldType(); in classof()
91 this->isDyldELFObject = true; in DyldELFObject()
113 // The template-based type cast handles everything else. in updateSectionAddress()
114 shdr->sh_addr = static_cast<addr_type>(Addr); in updateSectionAddress()
[all …]
/freebsd/sys/dev/smartpqi/
H A Dsmartpqi_structures.h1 /*-
2 * Copyright 2016-2023 Microchip Technology, Inc. and/or its subsidiaries.
61 /* As per PQI Spec pqi-2r00a , 6.2.2. */
229 /* lock-free stack used to push and pop the tag used for IO request */
255 uint64_t addr; /* !< Bytes 0-7. The starting 64-bit memory byte address of the data block. */
256 …uint32_t length; /* !< Bytes 8-11. The length in bytes of the data block. Set to 0x00000000 spec…
257 uint8_t res[3]; /* !< Bytes 12-14. */
258 uint8_t zero : 4; /* !< Byte 15, Bits 0-3. */
259 uint8_t type : 4; /* !< Byte 15, Bits 4-7. sgl descriptor type */
273 iu_header_t header; /* !< Bytes 0-3. */
[all …]
/freebsd/contrib/jemalloc/
H A DChangeLog13 workloads. The release has gone through large-scale production testing.
16 - Add the thread.idle mallctl which hints that the calling thread will be
18 - Allow small size classes to be the maximum size class to cache in the
19 thread-specific cache, through the opt.[lg_]tcache_max option. (@interwq,
21 - Make the behavior of realloc(ptr, 0) configurable with opt.zero_realloc.
23 - Add 'make uninstall' support. (@sangshuduo, @Lapenkov)
24 - Support C++17 over-aligned allocation. (@marksantaniello)
25 - Add the thread.peak mallctl for approximate per-threa
[all...]
/freebsd/sys/contrib/openzfs/module/zfs/
H A Ddsl_dataset.c1 // SPDX-License-Identifier: CDDL-1.0
10 * or https://opensource.org/licenses/CDDL-1.0.
127 if (ds->ds_reserved == 0) in parent_delta()
131 old_bytes = MAX(ds_phys->ds_unique_bytes, ds->ds_reserved); in parent_delta()
132 new_bytes = MAX(ds_phys->ds_unique_bytes + delta, ds->ds_reserved); in parent_delta()
134 ASSERT3U(ABS((int64_t)(new_bytes - old_bytes)), <=, ABS(delta)); in parent_delta()
135 return (new_bytes - old_bytes); in parent_delta()
141 spa_t *spa = dmu_tx_pool(tx)->dp_spa; in dsl_dataset_block_born()
157 dsl_pool_mos_diduse_space(tx->tx_pool, in dsl_dataset_block_born()
163 dsl_dataset_phys(ds)->ds_prev_snap_txg); in dsl_dataset_block_born()
[all …]
/freebsd/sys/contrib/zlib/
H A DChangeLog5 - Reject overflows of zip header fields in minizip
6 - Fix bug in inflateSync() for data held in bit buffer
7 - Add LIT_MEM define to use more memory for a small deflate speedup
8 - Fix decision on the emission of Zip64 end records in minizip
9 - Add bounds checking to ERR_MSG() macro, used by zError()
10 - Neutralize zip file traversal attacks in miniunz
11 - Fix a bug in ZLIB_DEBUG compiles in check_match()
12 - Various portability and appearance improvements
15 - Remove K&R function definitions and zlib2ansi
16 - Fix bug in deflateBound() for level 0 and memLevel 9
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCAsmPrinter.cpp1 //===-- PPCAsmPrinter.cpp - Print machine instrs to PowerPC assembly ------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
10 // of machine-dependent LLVM code to PowerPC assembly language. This printer is
16 //===----------------------------------------------------------------------===//
99 "aix-ssp-tb-bit", cl::init(false),
161 // non-TOC-based local-exec variables.
209 int64_t Offset);
218 /// PPCLinuxAsmPrinter - PowerPC assembly printer, customized for Linux
252 // This is used for AIX's extra-label-at-definition aliasing strategy.
[all …]
/freebsd/sys/contrib/dev/acpica/
H A Dchanges.txt1 ----------------------------------------
6 Added option to skip the global lock for SMM - Huacai Chen
8 Fixed non-NUL terminated string implementations - Ahmed Salem
10 Fixed CCEL and CDAT templates - Ahmed Salem
12 …ethod parameters (definition) vs arguments (invocation) in different places - Peter Williams, Hans…
14 Define distinct D3 states (D3Hot and D3Cold) that help clarify the device behavior support - Aymeri…
19 ----------------------------------------
26 Add complete support for 3 new ACPI tables - MRRM,ERDT and RIMT (Tony Luck & V L Sunil)
32 A few fixes including local cache allocation, FFixedHW Region, attribute packing, string vs. non-st…
35 ----------------------------------------
[all …]
/freebsd/
H A DMakefile.inc14 # -DNO_CLEANDIR run ${MAKE} clean, instead of ${MAKE} cleandir
5 # -DNO_CLEAN do not clean at all
6 # -DDB_FROM_SRC use the user/group databases in src/etc instead of
8 # -DNO_SHARE do not go into share subdir
9 # -DKERNFAST define NO_KERNEL{CONFIG,CLEAN,OBJ}
10 # -DNO_KERNELCONFIG do not run config in ${MAKE} buildkernel
11 # -DNO_KERNELCLEAN do not run ${MAKE} clean in ${MAKE} buildkernel
12 # -DNO_KERNELOBJ do not run ${MAKE} obj in ${MAKE} buildkernel
13 # -DNO_ROOT install without using root privilege
14 # -DWITHOUT_CTF do not run the DTrace CTF conversion tools on built objects
[all …]
/freebsd/sys/contrib/device-tree/src/arm64/nvidia/
H A Dtegra234.dtsi1 // SPDX-License-Identifier: GPL-2.0
3 #include <dt-bindings/clock/tegra234-clock.h>
4 #include <dt-bindings/gpio/tegra234-gpio.h>
5 #include <dt-bindings/interrupt-controller/arm-gic.h>
6 #include <dt-bindings/mailbox/tegra186-hsp.h>
7 #include <dt-bindings/memory/tegra234-mc.h>
8 #include <dt-bindings/pinctrl/pinctrl-tegra-io-pad.h>
9 #include <dt-bindings/power/tegra234-powergate.h>
10 #include <dt-bindings/reset/tegra234-reset.h>
11 #include <dt-bindings/thermal/tegra234-bpmp-thermal.h>
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Bitcode/Writer/
H A DBitcodeWriter.cpp1 //===- Bitcode/Writer/BitcodeWriter.cpp - Bitcode Writer ------------------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
11 //===----------------------------------------------------------------------===//
31 #include "llvm/Config/llvm-config.h"
88 IndexThreshold("bitcode-mdindex-threshold", cl::Hidden, cl::init(25),
90 "to enable lazy-loading"));
92 "bitcode-flush-threshold", cl::Hidden, cl::init(512),
96 "write-relbf-to-summary", cl::Hidden, cl::init(false),
108 /// These are manifest constants used by the bitcode writer. They do not need to
[all …]
/freebsd/contrib/ncurses/
H A DNEWS1 -------------------------------------------------------------------------------
2 -- Copyright 2018-2023,2024 Thomas E. Dickey --
3 -- Copyright 1998-2017,2018 Free Software Foundation, Inc. --
4 -- --
5 -- Permission is hereby granted, free of charge, to any person obtaining a --
6 -- copy of this software and associated documentation files (the --
7 -- "Software"), to deal in the Software without restriction, including --
8 -- without limitation the rights to use, copy, modify, merge, publish, --
9 -- distribute, distribute with modifications, sublicense, and/or sell copies --
10 -- of the Software, and to permit persons to whom the Software is furnished --
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Frontend/OpenMP/
H A DOMPIRBuilder.cpp1 //===- OpenMPIRBuilder.cpp - Builder for LLVM-IR for OpenMP directives ----===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
13 //===----------------------------------------------------------------------===//
62 #define DEBUG_TYPE "openmp-ir-builder"
68 OptimisticAttributes("openmp-ir-builder-optimistic-attributes", cl::Hidden,
70 "'as-if' properties of runtime calls."),
74 "openmp-ir-builder-unroll-threshold-factor", cl::Hidden,
81 /// at position IP1 may change the meaning of IP2 or vice-versa. This is because
154 Kernel->getFnAttribute("target-features").getValueAsString(); in getGridValue()
[all …]
/freebsd/contrib/xz/
H A DChangeLog3 Date: 2025-04-03 14:34:43 +0300
7 src/liblzma/Makefile.am | 2 +-
8 src/liblzma/api/lzma/version.h | 2 +-
9 2 files changed, 2 insertions(+), 2 deletions(-)
13 Date: 2025-04-03 14:34:43 +0300
22 Date: 2025-04-03 14:34:43 +0300
32 for OSS-Fuzz.").
34 tests/ossfuzz/fuzz_common.h | 31 ++++++++++++++++++++++++-------
35 1 file changed, 24 insertions(+), 7 deletions(-)
39 Date: 2025-04-03 14:34:43 +0300
[all …]
/freebsd/contrib/ntp/
H A DCommitLog-4.1.01 2001-08-01 Harlan Stenn <stenn@whimsy.udel.edu>
5 2001-07-27 Harlan Stenn <stenn@whimsy.udel.edu>
19 2001-07-10 Harlan Stenn <stenn@whimsy.udel.edu>
21 * configure.in: 4.0.99m-rc3
23 2001-07-06 Harlan Stenn <stenn@whimsy.udel.edu>
28 2001-07-04 Harlan Stenn <stenn@whimsy.udel.edu>
33 * configure.in (rt library check): Don't look for -lrt under
34 Linux. Under glibc-2.1.2 and -2.2.2 (at least), the POSIX-
35 compatibility real-time library does strange things with threads
39 2001-06-30 Harlan Stenn <stenn@whimsy.udel.edu>
[all …]
H A Dconfigure2 # Guess values for system-dependent variables and create Makefiles.
8 # Copyright (C) 1992-1996, 1998-2017, 2020-2021 Free Software Foundation,
14 ## ------
[all...]
/freebsd/contrib/ntp/sntp/
H A Dconfigure2 # Guess values for system-dependent variables and create Makefiles.
8 # Copyright (C) 1992-1996, 1998-2017, 2020-2021 Free Software Foundation,
14 ## ------
[all...]
/freebsd/contrib/llvm-project/clang/include/clang/Driver/
H A DOptions.td1 //===--- Options.td - Options for clang -----------------------------------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
11 //===----------------------------------------------------------------------===//
38 // The option is a "driver"-only option, and should not be forwarded to other
39 // tools via `-Xarch` options.
42 // LinkerInput - The option is a linker input.
45 // NoArgumentUnused - Don't report argument unused warnings for this option; this
46 // is useful for options like -static or -dynamic which a user may always end up
50 // Unsupported - The option is unsupported, and the driver will reject command
[all …]

12