| /freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/renameat2/ |
| H A D | renameat2_whiteout.ksh | 1 #!/bin/ksh -p 2 # SPDX-License-Identifier: CDDL-1.0 11 # or https://opensource.org/licenses/CDDL-1.0. 35 log_must rm -rf $TESTDIR/* 44 # Straight-forward rename-with-whiteout. 45 log_must renameat2 -w whiteout new 49 log_must grep '^character special file:0:0$' <<<"$(stat -c '%F:%t:%T' whiteout)"
|
| /freebsd/sys/contrib/device-tree/Bindings/iio/ |
| H A D | st-sensors.txt | 3 The STMicroelectronics sensor devices are pretty straight-forward I2C or 8 - compatible: see the list of valid compatible strings below 9 - reg: the I2C or SPI address the device will respond to 12 - vdd-supply: an optional regulator that needs to be on to provide VDD 14 - vddio-supply: an optional regulator that needs to be on to provide the 16 - st,drdy-int-pin: the pin on the package that will be used to signal 19 - drive-open-drain: the interrupt/data ready line will be configured 21 interrupt line. (This binding is taken from pinctrl/pinctrl-bindings.txt) 25 standard bindings from pinctrl/pinctrl-bindings.txt. 30 - st,lis3lv02d (deprecated, use st,lis3lv02dl-accel) [all …]
|
| H A D | st,st-sensors.yaml | 1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 3 --- 4 $id: http://devicetree.org/schemas/iio/st,st-sensors.yaml# 5 $schema: http://devicetree.org/meta-schemas/core.yaml# 9 description: The STMicroelectronics sensor devices are pretty straight-forward 16 - Denis Ciocca <denis.ciocca@st.com> 17 - Linus Walleij <linus.walleij@linaro.org> 22 - description: STMicroelectronics Accelerometers 24 - st,h3lis331dl-accel 25 - st,lis2de12 [all …]
|
| /freebsd/sys/contrib/openzfs/config/ |
| H A D | kernel-kmem.m4 | 8 AC_ARG_ENABLE([debug-kmem], 9 [AS_HELP_STRING([--enable-debug-kmem], 16 KERNELCPPFLAGS="${KERNELCPPFLAGS} -DDEBUG_KMEM" 31 dnl # feature also requires --enable-debug-kmem to be set. When enabled 36 dnl # makes finding memory leaks pretty straight forward. 39 AC_ARG_ENABLE([debug-kmem-tracking], 40 [AS_HELP_STRING([--enable-debug-kmem-tracking], 47 KERNELCPPFLAGS="${KERNELCPPFLAGS} -DDEBUG_KMEM_TRACKING" 84 -
|
| /freebsd/sys/contrib/device-tree/Bindings/iio/adc/ |
| H A D | adi,ad7476.yaml | 1 # SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause) 4 --- 6 $schema: http://devicetree.org/meta-schemas/core.yaml# 11 - Michael Hennerich <michael.hennerich@analog.com> 14 A lot of simple SPI ADCs have very straight forward interfaces. 21 - adi,ad7091 22 - adi,ad7091r 23 - adi,ad7273 24 - adi,ad7274 25 - adi,ad7276 [all …]
|
| /freebsd/share/doc/papers/diskperf/ |
| H A D | methodology.ms | 92 The apparently straight-forward activity of reading or writing a logical file 98 however this restriction is moderated by the use of read-ahead.
|
| /freebsd/crypto/krb5/src/lib/crypto/builtin/des/ |
| H A D | f_cksum.c | 1 /* -*- mode: c; c-basic-offset: 4; indent-tabs-mode: nil -*- */ 30 * des_cbc_cksum.c - compute an 8 byte checksum using DES in CBC mode 39 * This routine performs DES cipher-block-chaining checksum operation, 46 * NOTE-- the output is ALWAYS 8 bytes long. If not enough space was 81 * greater than or equal to 8 this is straight in mit_des_cbc_cksum() 82 * forward. Otherwise we have to fart around. in mit_des_cbc_cksum() 90 len -= 8; in mit_des_cbc_cksum() 100 right ^= (*(--ip) & FF_UINT32) << 8; in mit_des_cbc_cksum() 102 right ^= (*(--ip) & FF_UINT32) << 16; in mit_des_cbc_cksum() 104 right ^= (*(--ip) & FF_UINT32) << 24; in mit_des_cbc_cksum() [all …]
|
| H A D | f_cbc.c | 1 /* -*- mode: c; c-basic-offset: 4; indent-tabs-mode: nil -*- */ 33 * des_cbc_encrypt.c - an implementation of the DES cipher function in cbc mode 39 * des_cbc_encrypt - {en,de}crypt a stream in CBC mode 43 * This routine performs DES cipher-block-chaining operation, either 50 * NOTE-- the output is ALWAYS an multiple of 8 bytes long. If not 95 * greater than or equal to 8 this is straight in des_cbc_encrypt() 96 * forward. Otherwise we have to fart around. in des_cbc_encrypt() 104 length -= 8; in des_cbc_encrypt() 114 right ^= (*(--ip) & FF_UINT32) << 8; in des_cbc_encrypt() 116 right ^= (*(--ip) & FF_UINT32) << 16; in des_cbc_encrypt() [all …]
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/Support/ |
| H A D | DOTGraphTraits.h | 1 //===-- llvm/Support/DOTGraphTraits.h - Customize .dot output ---*- C++ -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 14 //===----------------------------------------------------------------------===// 23 /// DefaultDOTGraphTraits - This class provides the default implementations of 40 /// getGraphName - Return the label for the graph as a whole. Printed at the 46 /// getGraphProperties - Return any custom properties that should be included 54 /// renderGraphFromBottomUp - If this function returns true, the graph is 55 /// emitted bottom-up instead of top-down. This requires graphviz 2.0 to work 61 /// isNodeHidden - If the function returns true, the given node is not [all …]
|
| /freebsd/contrib/llvm-project/llvm/tools/llvm-bcanalyzer/ |
| H A D | llvm-bcanalyzer.cpp | 1 //===-- llvm-bcanalyzer.cpp - Bitcode Analyzer --------------------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 10 // llvm-bcanalyzer [options] - Read LLVM bitcode from stdin 11 // llvm-bcanalyzer [options] x.bc - Read LLVM bitcode from the x.bc file 14 // --help - Output information about command line switches 15 // --dump - Dump low-level bitcode structure in readable format 16 // --dump-blockinfo - Dump the BLOCKINFO_BLOCK, when used with --dump 24 // The tool is also able to print a bitcode file in a straight forward text 26 // the bitcode file (-dump option). [all …]
|
| /freebsd/contrib/tcsh/ |
| H A D | tw.help.c | 7 /*- 40 static int f = -1; 113 * now make the full path name - try first /bar/foo.help, then in do_help() 126 if ((f = xopen(short2str(full.s), O_RDONLY|O_LARGEFILE)) != -1) in do_help() 129 if (f != -1) { in do_help() 149 if (len == -1) in do_help() 164 if (f != -1) in cleanf() 166 f = -1; in cleanf() 170 * paths. they are prety straight forward. */
|
| /freebsd/contrib/llvm-project/lldb/source/Target/ |
| H A D | ThreadPlanStepOverRange.cpp | 1 //===-- ThreadPlanStepOverRange.cpp ---------------------------------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 51 s->Printf(" failed (%s)", m_status.AsCString()); in GetDescription() 55 s->Printf("step over"); in GetDescription() 60 s->Printf("Stepping over"); in GetDescription() 63 s->Printf(" line "); in GetDescription() 69 s->Printf(" using ranges: "); in GetDescription() 75 s->PutChar('.'); in GetDescription() 96 // Step Over plans should always avoid no-debug on step in. Seems like you in SetupAvoidNoDebug() [all …]
|
| /freebsd/share/examples/ppp/ |
| H A D | ppp.conf.span-isp | 5 # ------------- ------------- ------------- 7 # ------------- ------------- ------------- 9 # |---------------------- LAN ----------------------| 11 # ------------- 13 # ------------- 15 # ----------------------------------- 19 # ----------------------------------- 21 # ------------ 23 # ------------ 31 # There is a working example in ppp.*.span-isp.working that can be tested [all …]
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/Architecture/Mips/ |
| H A D | ArchitectureMips.cpp | 1 //===-- ArchitectureMips.cpp ----------------------------------------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 29 "Mips-specific algorithms", in LLDB_PLUGIN_DEFINE() 96 temp_addr_module_sp->ResolveSymbolContextForAddress(resolved_addr, in GetBreakableLoadAddress() 100 sym_addr = sc.function->GetAddressRange().GetBaseAddress(); in GetBreakableLoadAddress() 102 sym_addr = sc.symbol->GetAddress(); in GetBreakableLoadAddress() 109 current_offset = addr - function_start; in GetBreakableLoadAddress() 119 if (nullptr == insn || !insn->HasDelaySlot()) in GetBreakableLoadAddress() 123 uint64_t breakable_addr = addr - insn->GetOpcode().GetByteSize(); in GetBreakableLoadAddress() [all …]
|
| /freebsd/contrib/lyaml/ |
| H A D | README.md | 4 Copyright (C) 2013-2022 Gary V. Vaughan 6 [](https://mit-license.org) 7 …thub.com/gvvaughan/lyaml/actions/workflows/spec.yml/badge.svg?branch=release-v6.2.8)](https://gith… 8 …gvvaughan/lyaml/coverage.svg?branch=release-v6.2.8)](https://codecov.io/github/gvvaughan/lyaml?bra… 12 and a low-level [YAML] event parser for implementing more 16 ----- 25 local t = lyaml.load (YAML-STRING, [OPTS-TABLE]) 26 local yamlstr = lyaml.dump (LUA-TABLE, [OPTS-TABLE]) 35 argument OPTS-TABLE. 39 --> { foo = "bar" } [all …]
|
| /freebsd/secure/lib/libcrypto/man/man3/ |
| H A D | EVP_PKEY_keygen.3 | 1 .\" -*- mode: troff; coding: utf-8 -*- 58 .TH EVP_PKEY_KEYGEN 3ossl 2025-09-30 3.5.4 OpenSSL 71 \&\- key and parameter generation and check functions 98 Generating keys is sometimes straight forward, just generate the key's 139 with the generation operation. If \fIidx\fR is \-1 the total number of 168 \&\f(CW\*(C`ML\-DSA\-44\*(C'\fR, 169 \&\f(CW\*(C`ML\-DSA\-65\*(C'\fR, 170 \&\f(CW\*(C`ML\-DSA\-87\*(C'\fR, 171 \&\f(CW\*(C`ML\-KEM\-512\*(C'\fR, 172 \&\f(CW\*(C`ML\-KEM\-768\*(C'\fR, or [all …]
|
| /freebsd/crypto/openssl/doc/man3/ |
| H A D | EVP_PKEY_keygen.pod | 12 - key and parameter generation and check functions 39 Generating keys is sometimes straight forward, just generate the key's 80 with the generation operation. If I<idx> is -1 the total number of 109 C<ML-DSA-44>, 110 C<ML-DSA-65>, 111 C<ML-DSA-87>, 112 C<ML-KEM-512>, 113 C<ML-KEM-768>, or 114 C<ML-KEM-1024> 123 In particular a return value of -2 indicates the operation is not supported by [all …]
|
| /freebsd/contrib/llvm-project/compiler-rt/lib/builtins/ |
| H A D | gcc_personality_v0.c | 1 //===-- gcc_personality_v0.c - Implement __gcc_personality_v0 -------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 15 * - libcompiler_rt 16 * - libgcc_eh 17 * - libgcc_s 19 * In the former, the include path points to the contrib/libcxxrt/unwind-arm.h 24 * provided in the "helpful" header below, and libcxxrt's unwind-arm.h provides 33 // order to provide forward compatibility for such compilers, we re-declare the 36 #include "unwind-ehabi-helpers.h" [all …]
|
| /freebsd/share/man/man4/ |
| H A D | ahc.4 | 2 .\" SPDX-License-Identifier: BSD-3-Clause 39 .Bd -ragged -offset indent 50 .Bd -literal -offset indent 66 .Tn SCSI-Select 74 For systems that store non-volatile settings in a system specific manner 80 many chip-down motherboard configurations. 90 .Bd -ragged -offset indent 91 .Bl -column "aic7895CX" "MIPSX" "PCI/64X" "MaxSyncX" "MaxWidthX" "SCBsX" "2 3 4 5 6 7 8X" 108 .Bl -enum -compact 110 Multiplexed Twin Channel Device - One controller servicing two busses. [all …]
|
| /freebsd/contrib/ntp/html/ |
| H A D | parsenew.html | 1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> 6 <meta http-equiv="content-type" content="text/html;charset=iso-8859-1"> 13 …clock to the parse driver: Currently the implementation is being cleaned up - so not all informati… 15 <!-- #BeginDate format:En2m -->13-Oct-2010 00:33<!-- #EndDate --> 42 …<p>Conversion is usually simple and straight forward. For the flags following values can be OR'ed … 45 PARSEB_POWERUP no synchronisation - clock confused (must set then) 52 … PARSEB_LEAPADD LEAP addition warning (prior to leap happening - must set when imminent) 55 … PARSEB_LEAPDEL LEAP deletion warning (prior to leap happening - must set when imminent) 59 second - informational only) 63 PARSEB_S_LEAP supports LEAP - might set PARSEB_LEAP [all …]
|
| /freebsd/sys/dev/etherswitch/ar40xx/ |
| H A D | ar40xx_hw.c | 1 /*- 2 * SPDX-License-Identifier: BSD-2-Clause 91 ret = hwreset_assert(sc->sc_ess_rst); in ar40xx_hw_ess_reset() 93 device_printf(sc->sc_dev, "ERROR: failed to assert reset\n"); in ar40xx_hw_ess_reset() 98 ret = hwreset_deassert(sc->sc_ess_rst); in ar40xx_hw_ess_reset() 100 device_printf(sc->sc_dev, in ar40xx_hw_ess_reset() 122 /* forward multicast and broadcast frames to CPU */ in ar40xx_hw_init_globals() 160 sc->sc_vlan.vlan = 1; in ar40xx_hw_vlan_init() 163 sc->sc_vlan.vlan_id[AR40XX_LAN_VLAN] = AR40XX_LAN_VLAN in ar40xx_hw_vlan_init() 165 sc->sc_vlan.vlan_id[AR40XX_WAN_VLAN] = AR40XX_WAN_VLAN in ar40xx_hw_vlan_init() [all …]
|
| /freebsd/sys/net/altq/ |
| H A D | altq_rmclass.h | 1 /*- 2 * Copyright (c) 1991-1997 Regents of the University of California. 66 * straight forward to add but we don't want to pay the extra memory 68 * accidentally builds a workstation with a decent clock - e.g., Sun & HP).) 73 #define TV_LT(a, b) (((a)->tv_sec < (b)->tv_sec) || \ 74 (((a)->tv_usec < (b)->tv_usec) && ((a)->tv_sec <= (b)->tv_sec))) 79 delta = (a)->tv_usec - (b)->tv_usec; \ 80 if ((xxs = (a)->tv_sec - (b)->tv_sec)) { \ 98 int xxus = (a)->tv_usec + (delta); \ 100 (res)->tv_sec = (a)->tv_sec; \ [all …]
|
| /freebsd/share/doc/smm/05.fastfs/ |
| H A D | 5.t | 101 the solutions are not straight forward, 201 systems, nor does it support inter-machine linkage.
|
| /freebsd/contrib/bmake/unit-tests/ |
| H A D | varmod-loop.mk | 1 # $NetBSD: varmod-loop.mk,v 1.26 2024/06/02 15:31:26 rillig Exp $ 10 # characters 'A-Za-z0-9'. 15 # other '$' is left as-is during parsing. Later, when the body is expanded 24 all: varname-overwriting-target 25 all: mod-loop-dollar 27 varname-overwriting-target: 42 mod-loop-dollar: 53 # As of 2020-10-18, the :@ modifier is implemented by actually setting a 88 .MAKEFLAGS: -dcp 97 # preserved, but not all. The dollar signs in the top-level expression and in [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
| H A D | MachineSink.cpp | 1 //===- MachineSink.cpp - Sinking for machine instructions -----------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 13 // for an LLVM-IR-level sinking pass. It is only designed to sink simple 16 //===----------------------------------------------------------------------===// 65 #define DEBUG_TYPE "machine-sink" 68 SplitEdges("machine-sink-split", 73 UseBlockFreqInfo("machine-sink-bfi", 78 "machine-sink-split-probability-threshold", 80 "Percentage threshold for splitting single-instruction critical edge. " [all …]
|