/freebsd/sbin/mount_fusefs/ |
H A D | mount_fusefs.8 | 40 .Nd mount a Fuse file system daemon 56 Basic usage is to start a fuse daemon on the given 93 will look for a suitable free fuse device by itself. 98 of the file descriptor of an already open fuse device 99 (used when the Fuse library invokes 105 .Bl -tag -width indent 106 .It Fl A , Ic --reject-allow_other 113 .It Fl S , Ic --safe 114 Run in safe mode (i.e., reject invoking a filesystem daemon). 117 .It Fl D , Ic --daemon Ar daemon [all …]
|
/freebsd/sys/contrib/device-tree/Bindings/fuse/ |
H A D | renesas,rcar-efuse.yaml | 1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 3 --- 4 $id: http://devicetree.org/schemas/fuse/renesas,rcar-efuse.yaml# 5 $schema: http://devicetree.org/meta-schemas/core.yaml# 7 title: R-Car E-FUSE connected to PFC 10 - Geert Uytterhoeven <geert+renesas@glider.be> 13 The E-FUSE is a type of non-volatile memory, which is accessible through the 14 Pin Function Controller (PFC) on some R-Car Gen4 SoCs. 19 - renesas,r8a779a0-efuse # R-Car V3U 20 - renesas,r8a779f0-efuse # R-Car S4-8 [all …]
|
H A D | renesas,rcar-otp.yaml | 1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 3 --- 4 $id: http://devicetree.org/schemas/fuse/renesas,rcar-otp.yaml# 5 $schema: http://devicetree.org/meta-schemas/core.yaml# 7 title: R-Car E-FUSE connected to OTP_MEM 10 - Geert Uytterhoeven <geert+renesas@glider.be> 13 The E-FUSE is a type of non-volatile memory, which is accessible through the 14 One-Time Programmable Memory (OTP_MEM) module on some R-Car Gen4 SoCs. 19 - renesas,r8a779g0-otp # R-CarV4H 20 - renesas,r8a779h0-otp # R-CarV4M [all …]
|
/freebsd/sys/contrib/device-tree/Bindings/opp/ |
H A D | opp-v2-qcom-level.yaml | 1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 3 --- 4 $id: http://devicetree.org/schemas/opp/opp-v2-qcom-level.yaml# 5 $schema: http://devicetree.org/meta-schemas/core.yaml# 10 - Niklas Cassel <nks@flawful.org> 13 - $ref: opp-v2-base.yaml# 17 const: operating-points-v2-qcom-level 20 '^opp-?[0-9]+$': 25 opp-level: true 27 qcom,opp-fuse-level: [all …]
|
H A D | qcom-opp.txt | 3 The bindings are based on top of the operating-points-v2 bindings 4 described in Documentation/devicetree/bindings/opp/opp-v2-base.yaml 10 - compatible: Allow OPPs to express their compatibility. It should be: 11 "operating-points-v2-qcom-level" 16 - qcom,opp-fuse-level: A positive value representing the fuse corner/level 18 a certain fuse corner/level. A fuse corner/level contains e.g. ref uV,
|
/freebsd/contrib/llvm-project/llvm/lib/Target/PowerPC/ |
H A D | PPC.td | 1 //===-- PPC.td - Describe the PowerPC Target Machine -------*- tablegen -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 11 //===----------------------------------------------------------------------===// 13 // Get the target-independent interfaces which we are implementing. 17 //===----------------------------------------------------------------------===// 21 //===----------------------------------------------------------------------===// 23 //===----------------------------------------------------------------------===// 59 // Specifies that the selected CPU supports 64-bit instructions, regardless of 60 // whether we are in 32-bit or 64-bit mode. [all …]
|
/freebsd/contrib/lib9p/pytest/ |
H A D | numalloc.py | 11 available after provided value". Note that next-after will 14 The free lists are thread-locked so that this code can be used 74 >>> r = NumAlloc(0, -1) 76 NumAlloc(0, -1) 95 range's minimum, provide the minimum (e.g., r.min_val) as an 117 would not be thread-safe. 162 block by itself. E.g., suppose val is 17, and there is a 165 (Afterward, we will want to fuse all three blocks to make 166 [14,18]. However, if we insert as block 0, e.g., if the 173 high = len(self.avail) - 1 [all …]
|
/freebsd/contrib/llvm-project/clang/lib/Basic/ |
H A D | LangOptions.cpp | 1 //===- LangOptions.cpp - C Language Family Language Options ---------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 11 //===----------------------------------------------------------------------===// 34 // invocations that cannot be round-tripped to arguments. in resetNonModularOptions() 50 for (unsigned i = 0, e = NoBuiltinFuncs.size(); i != e; ++i) in isNoBuiltinFunc() local 176 Includes.push_back("opencl-c-base.h"); in setLangDefaults() 178 Includes.push_back("opencl-c.h"); in setLangDefaults() 189 // certain math functions, e.g. tan(-1e20) becomes -0.933 instead of 0.8446. in setLangDefaults() 191 // FPOpFusion options in backends is needed. Therefore 'fast-honor-pragmas' in setLangDefaults() [all …]
|
/freebsd/sys/fs/fuse/ |
H A D | fuse_vnops.c | 1 /*- 2 * SPDX-License-Identifier: BSD-3-Clause 4 * Copyright (c) 2007-2009 Google Inc. and Amit Singh 104 #include "fuse.h" 113 /* Maximum number of hardlinks to a single FUSE file */ 118 * Fuse trace probe: 236 int default_permissions = data->dataflags & FSESS_DEFAULT_PERMISSIONS; in fuse_extattr_check_cred() 239 * Kernel-invoked always succeeds. in fuse_extattr_check_cred() 295 ffi->fh = fufh->fh_id; in fuse_flush() 301 ffi->lock_owner = td->td_proc->p_pid; in fuse_flush() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
H A D | LoopFuse.cpp | 1 //===- LoopFuse.cpp - Loop Fusion Pass ------------------------------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 29 /// If all of these conditions are satisfied, it is safe to fuse the loops. 36 /// traversed, attempting to fuse pairs of candidates in the set. If all 45 //===----------------------------------------------------------------------===// 71 #define DEBUG_TYPE "loop-fusion" 92 "Loop has a non-empty preheader with instructions that cannot be moved"); 95 STATISTIC(NonEmptyExitBlock, "Candidate has a non-empty exit block with " 97 STATISTIC(NonEmptyGuardBlock, "Candidate has a non-empty guard block with " [all …]
|
/freebsd/sys/contrib/zstd/ |
H A D | Makefile | 2 # Copyright (c) 2015-2021, Yann Collet, Facebook, Inc. 5 # This source code is licensed under both the BSD-style license (found in the 8 # You may select, at your option, one of the above-listed licenses. 24 # When cross-compiling from linux to windows, you might 28 # Note: mingw-w64 build from linux to windows does not 40 ## default: Build lib-release and zstd-release 42 default: lib-release zstd-release 53 $(Q)$(MAKE) -C $(PRGDIR) all 54 $(Q)$(MAKE) -C $(TESTDIR) all 58 $(MAKE) -C $(PRGDIR) zstd32 [all …]
|
/freebsd/share/mk/ |
H A D | bsd.sys.mk | 6 # overridden (e.g. if using a non-gcc compiler) by defining MK_WARNS=no. 8 # for GCC: https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html 17 CFLAGS+= -std=iso9899:1990 19 CFLAGS+= -std=iso9899:199409 21 CFLAGS+= -std=iso9899:1999 23 CFLAGS+= -std=${CSTD} 27 CXXFLAGS+= -std=${CXXSTD} 30 # This gives the Makefile we're evaluating at the top-level a chance to set 38 # -pedantic is problematic because it also imposes namespace restrictions 39 #CFLAGS+= -pedantic [all …]
|
H A D | sys.mk | 50 # Disable MK_META_MODE with make -B 51 .if ${MK_META_MODE} == "yes" && defined(.MAKEFLAGS) && ${.MAKEFLAGS:M-B} 56 .-include <sys.dirdeps.mk> 62 .-include <meta.sys.mk> 70 # buildworld -> installworld -> buildworld to rebuild everything. 71 # Since the build is self-reliant and bootstraps everything it needs, 75 # This is mitigated by Makefile.inc1 for known-ABI-breaking revisions. 94 # We do not want everything out-of-date just because 100 # This needs to be done early - before .PATH is computed 103 .if !make(showconfig) && !make(print-dir) && !make(test-system-*) && \ [all …]
|
/freebsd/sys/conf/ |
H A D | kern.mk | 5 CWARNFLAGS?= -Wall -Wstrict-prototypes \ 6 -Wmissing-prototypes -Wpointer-arith -Wcast-qual \ 7 -Wundef -Wno-pointer-sign ${FORMAT_EXTENSIONS} \ 8 -Wmissing-include-dirs -fdiagnostics-show-option \ 9 -Wno-unknown-pragmas -Wswitch \ 13 # -Wextra 19 NO_WCONSTANT_CONVERSION= -Wno-error=constant-conversion 20 NO_WSHIFT_COUNT_NEGATIVE= -Wno-shift-count-negative 21 NO_WSHIFT_COUNT_OVERFLOW= -Wno-shift-count-overflow 22 NO_WSELF_ASSIGN= -Wno-self-assign [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/ |
H A D | AArch64Features.td | 1 //=- AArch64Features.td - Describe AArch64 SubtargetFeatures -*- tablegen -*-=// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 10 //===----------------------------------------------------------------------===// 17 string TargetFeatureName, // String used for -target-feature, unless overridden. 28 // The user visible name used by -march/-mcpu modifiers and target attribute 37 // An Extension that can be toggled via a '-march'/'-mcpu' modifier or a target 38 // attribute, e.g. '+sm4". 40 …string TargetFeatureName, // String used for -target-feature and -march, unless overrid… 47 // used for -target-feature. However, there are exceptions. Therefore we [all …]
|
/freebsd/sys/contrib/device-tree/Bindings/thermal/ |
H A D | imx-thermal.yaml | 1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 3 --- 4 $id: http://devicetree.org/schemas/thermal/imx-thermal.yaml# 5 $schema: http://devicetree.org/meta-schemas/core.yaml# 10 - Shawn Guo <shawnguo@kernel.org> 15 - enum: 16 - fsl,imx6q-tempmon 17 - fsl,imx6sx-tempmon 18 - fsl,imx7d-tempmon 19 - items: [all …]
|
/freebsd/contrib/file/magic/Magdir/ |
H A D | spectrum | 2 #------------------------------------------------------------------------------ 12 >15 byte 0 - BASIC program 13 >15 byte 1 - number array 14 >15 byte 2 - character array 15 >15 byte 3 - memory block 17 >15 byte 4 - Tasword document 18 >15 string TAPEFILE - ZXT tapefile 20 # Tape file. This assumes the .TAP starts with a Spectrum-format header, 23 # Update: Sanity-check string contents to be printable. 24 # -Adam Buchbinder <adam.buchbinder@gmail.com> [all …]
|
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/symbolizer/scripts/ |
H A D | build_symbolizer.sh | 7 # Script compiles self-contained object file with symbolization code. 10 # libraries to symbolize code/data in-process. 14 # want to be doing "ld -r" followed by "objcopy -G" to create a relocatable 16 # present, see https://github.com/llvm/llvm-project/issues/30098. 18 set -x 19 set -e 20 set -u 23 SRC_DIR=$(readlink -f $SCRIPT_DIR/..) 25 if [[ $# -ne 1 ]]; then 30 OUTPUT=$(readlink -f $1) [all …]
|
/freebsd/sys/contrib/device-tree/src/arm/marvell/ |
H A D | orion5x-lacie-d2-network.dts | 1 // SPDX-License-Identifier: GPL-2.0-only 3 * Copyright (C) 2014 Thomas Petazzoni <thomas.petazzoni@free-electrons.com> 7 /dts-v1/; 9 #include <dt-bindings/gpio/gpio.h> 10 #include <dt-bindings/input/input.h> 11 #include <dt-bindings/interrupt-controller/irq.h> 12 #include "orion5x-mv88f5182.dtsi" 16 compatible = "lacie,d2-network", "marvell,orion5x-88f5182", "marvell,orion5x"; 25 stdout-path = &uart0; 34 gpio-keys { [all …]
|
/freebsd/sys/contrib/zstd/lib/ |
H A D | README.md | 4 The __lib__ directory is split into several sub-directories, 10 …ventions](https://www.gnu.org/prep/standards/html_node/Makefile-Conventions.html#Makefile-Conventi… 12 - `make` : generates both static and dynamic libraries 13 - `make install` : install libraries and headers in target system directories 22 …by default the dynamic library is multithreaded and static library is single-threaded (for compati… 25 - set build macro `ZSTD_MULTITHREAD` (`-DZSTD_MULTITHREAD` for `gcc`) 26 - for POSIX systems : compile with pthread (`-pthread` compilation flag for `gcc`) 29 - Force enable multithreading on both dynamic and static libraries by appending `-mt` to the target… 30 - Force disable multithreading on both dynamic and static libraries by appending `-nomt` to the tar… 31 - By default, as mentioned before, dynamic library is multithreaded, and static library is single-t… [all …]
|
/freebsd/contrib/llvm-project/clang/lib/Driver/ |
H A D | ToolChain.cpp | 1 //===- ToolChain.cpp - Collections of tools for one platform --------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 32 #include "llvm/Config/llvm-config.h" 67 // Explicit rtti/no-rtti args in CalculateRTTIMode() 69 if (CachedRTTIArg->getOption().matches(options::OPT_frtti)) in CalculateRTTIMode() 75 // -frtti is default, except for the PS4/PS5 and DriverKit. in CalculateRTTIMode() 110 llvm::sys::fs::createTemporaryFile("toolchain-program", "txt", OutputFile); in executeToolChainProgram() 155 "(Non-)integrated backend set incorrectly!"); in useIntegratedBackend() 161 // Diagnose when integrated-objemitter options are not supported by this in useIntegratedBackend() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Target/ARM/ |
H A D | ARMFeatures.td | 1 //===----------------------------------------------------------------------===// 6 def ModeThumb : SubtargetFeature<"thumb-mode", "IsThumb", 10 def ModeSoftFloat : SubtargetFeature<"soft-float","UseSoftFloat", 14 //===----------------------------------------------------------------------===// 21 string TargetFeatureName, // String used for -target-feature. 32 // FP loads/stores/moves, shared between VFP and MVE (even in the integer-only 37 // 16-bit FP loads/stores/moves, shared between VFP (with the v8.2A FP16 38 // extension) and MVE (even in the integer-only version). 40 "Enable 16-bit FP registers", 44 "Enable 64-bit FP registers", [all …]
|
/freebsd/sys/contrib/device-tree/src/arm/nvidia/ |
H A D | tegra114.dtsi | 1 // SPDX-License-Identifier: GPL-2.0 2 #include <dt-bindings/clock/tegra114-car.h> 3 #include <dt-bindings/gpio/tegra-gpio.h> 4 #include <dt-bindings/memory/tegra114-mc.h> 5 #include <dt-binding [all...] |
H A D | tegra30-asus-tf201.dts | 1 // SPDX-License-Identifier: GPL-2.0 2 /dts-v1/; 4 #include "tegra30-asus-transformer-common.dtsi" 5 #include "tegra30-asus-lvds-display.dtsi" 19 nvidia,enable-input = <TEGRA_PIN_ENABLE>; 27 nvidia,enable-input = <TEGRA_PIN_ENABLE>; 35 nvidia,enable-input = <TEGRA_PIN_ENABLE>; 43 nvidia,enable-input = <TEGRA_PIN_ENABLE>; 51 nvidia,enable-input = <TEGRA_PIN_ENABLE>; 57 /* Azurewave AW-NH615 BCM4329B1 */ [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
H A D | CommandFlags.cpp | 1 //===-- CommandFlags.cpp - Command Line Flags Interface ---------*- C++ -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 9 // This file contains codegen-specific flags that are shared between different 13 //===----------------------------------------------------------------------===// 50 if (NAME##View->getNumOccurrences()) { \ 121 "march", cl::desc("Architecture to generate code for (see --version)")); in CGOPT() 125 "mcpu", cl::desc("Target a specific cpu type (-mcpu=help for details)"), in CGOPT() 126 cl::value_desc("cpu-name"), cl::init("")); in CGOPT() 131 cl::desc("Target specific attributes (-mattr=help for details)"), in CGOPT() [all …]
|