| /freebsd/share/doc/smm/05.fastfs/ |
| H A D | 3.t | 35 A file system is described by its super-block, 37 Because the super-block contains critical data, 40 since the super-block data does not change, 42 or other hard disk error causes the default super-block 49 the minimum size of a file system block is 4096 bytes. 50 The size of file system blocks can be any power of two 52 The block size of a file system is recorded in the 53 file system's super-block 56 The block size must be decided at the time that 66 that includes a redundant copy of the super-block, [all …]
|
| /freebsd/contrib/xz/src/liblzma/lz/ |
| H A D | lz_decoder.h | 1 // SPDX-License-Identifier: 0BSD 24 // 0 = Byte-by-byte copying only. 25 // 1 = Use memcpy() for non-overlapping copies. 26 // 2 = Use x86 SSE2 for non-overlapping copies. 38 /// Byte-by-byte and memcpy() copy exactly the amount needed. Other methods 51 /// larger than the actual dictionary size: 66 /// of lzma_dict.size. 89 /// Indicates how full the dictionary is. This is used by 92 size_t full; member 97 /// Allocated size of buf. This is 2 * LZ_DICT_REPEAT_MAX bytes [all …]
|
| H A D | lz_decoder.c | 1 // SPDX-License-Identifier: 0BSD 13 // liblzma supports multiple LZ77-based filters. The LZ part is shared 15 // and passing the data between filters in the chain. The filter-specific 26 /// The actual LZ-based decoder e.g. LZMA 30 /// only allowed as the last filter, but the long-range filter in 41 /// Temporary buffer needed when the LZ-based filter is not the last 44 /// LZ-based decoder. 47 size_t size; member 56 coder->dict.pos = LZ_DICT_INIT_POS; in lz_decoder_reset() 57 coder->dict.full = 0; in lz_decoder_reset() [all …]
|
| /freebsd/contrib/jemalloc/include/jemalloc/internal/ |
| H A D | bin.h | 26 * Current slab being used to service allocations of this bin's size 27 * class. slabcur is independent of slabs_{nonfull,full}; whenever 29 * inserted into slabs_{nonfull,full}. 34 * Heap of non-full slabs. This heap is used to assure that new 35 * allocations come from the non-full slab that is oldest/lowest in 40 /* List used to track full slabs. */ 44 /* A set of sharded bins of the same size class. */ 66 malloc_mutex_lock(tsdn, &bin->loc [all...] |
| /freebsd/sys/contrib/device-tree/src/arm/nxp/vf/ |
| H A D | vf610-zii-dev-rev-b.dts | 1 // SPDX-License-Identifier: (GPL-2.0 OR MIT) 6 /dts-v1/; 7 #include "vf610-zii-dev.dtsi" 11 compatible = "zii,vf610dev-b", "zii,vf610dev", "fsl,vf610"; 13 mdio-mux { 14 compatible = "mdio-mux-gpi [all...] |
| H A D | vf610-zii-scu4-aib.dts | 1 // SPDX-License-Identifier: (GPL-2.0+ OR MIT) 3 // Copyright (C) 2016-2018 Zodiac Inflight Innovations 5 /dts-v1/; 10 compatible = "zii,vf610scu4-aib", "zii,vf610dev", "fsl,vf610"; 13 stdout-path = &uart0; 21 gpio-leds { 22 compatible = "gpio-leds"; 23 pinctrl- [all...] |
| /freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/refreserv/ |
| H A D | refreserv_002_pos.ksh | 1 #!/bin/ksh -p 2 # SPDX-License-Identifier: CDDL-1.0 11 # or https://opensource.org/licenses/CDDL-1.0. 38 # Setting full size as refreservation, verify no snapshot can be created. 41 # 1. Setting full size as refreservation on pool 43 # 3. Setting full size as refreservation on filesystem 54 datasetexists $TESTPOOL@snap && destroy_dataset $TESTPOOL@snap -f 56 destroy_dataset $TESTPOOL/$TESTFS -rf 67 typeset -i incsize=131072 68 typeset -i rr=$(get_prop available $ds) [all …]
|
| /freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/no_space/ |
| H A D | enospc_df.ksh | 1 #!/bin/ksh -p 2 # SPDX-License-Identifier: CDDL-1.0 11 # A full copy of the text of the CDDL should have accompanied this 32 # 1. Write a file until the child file system is full. 35 # 4. Issue df -h command. 37 # 6. Issue df -h <filesystem>. 38 # 7. Ensure size and used are non-zero. 45 log_assert "Correct df output is returned when file system is full." 51 file_write -o create -f $TESTDIR/$TESTFILE0 -b $BLOCKSZ \ 52 -c $NUM_WRITES -d $DATA [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
| H A D | CallingConvLower.cpp | 1 //===-- CallingConvLower.cpp - Calling Conventions ------------------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 12 //===----------------------------------------------------------------------===// 43 /// The size and alignment information of the argument is encoded in 49 unsigned Size = ArgFlags.getByValSize(); in HandleByVal() local 50 if (MinSize > (int)Size) in HandleByVal() 51 Size = MinSize; in HandleByVal() 55 MF.getSubtarget().getTargetLowering()->HandleByVal(this, Size, Alignment); in HandleByVal() 56 Size = unsigned(alignTo(Size, MinAlign)); in HandleByVal() [all …]
|
| /freebsd/tests/sys/cddl/zfs/tests/refreserv/ |
| H A D | refreserv_002_pos.ksh | 1 #!/usr/local/bin/ksh93 -p 36 # Setting full size as refreservation, verify no snapshot can be created. 39 # 1. Setting full size as refreservation on pool 41 # 3. Setting full size as refreservation on filesystem 48 # CODING_STATUS: COMPLETED (2007-11-05) 62 log_must $ZFS destroy -f $TESTPOOL@snap 65 log_must $ZFS destroy -rf $TESTPOOL/$TESTFS 76 typeset -i incsize=131072 77 typeset -i rr=$(get_prop available $ds) 93 log_assert "Setting full size as refreservation, verify no snapshot " \ [all …]
|
| /freebsd/contrib/llvm-project/lldb/source/Utility/ |
| H A D | FileSpecList.cpp | 1 //===-- FileSpecList.cpp -------- 92 const bool full = !file_spec.GetDirectory().IsEmpty(); FindCompatibleIndex() local [all...] |
| /freebsd/sys/contrib/device-tree/src/arm64/freescale/ |
| H A D | fsl-lx2160a-bluebox3.dts | 1 // SPDX-License-Identifier: (GPL-2.0 OR MIT) 5 // Copyright 2020-2021 NXP 7 /dts-v1/; 9 #include "fsl-lx2160a.dtsi" 13 compatible = "fsl,lx2160a-bluebox3", "fsl,lx2160a"; 23 stdout-path = "serial0:115200n8"; 26 sb_3v3: regulator-sb3v3 { 27 compatible = "regulator-fixed"; 28 regulator-name = "MC34717-3.3VSB"; 29 regulator-min-microvolt = <3300000>; [all …]
|
| /freebsd/sys/dev/isci/scil/ |
| H A D | sci_pool.h | 1 /*- 2 * SPDX-License-Identifier: BSD-2-Clause OR GPL-2.0 9 * Copyright(c) 2008 - 2011 Intel Corporation. All rights reserved. 22 * Foundation, Inc., 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA. 23 * The full GNU General Public License is included in this distribution 28 * Copyright(c) 2008 - 2011 Intel Corporation. All rights reserved. 61 * operation and pool condition full before a put operation. 63 * - sci_pool_create() 64 * - sci_pool_initialize() 65 * - sci_pool_empty() [all …]
|
| /freebsd/sys/contrib/device-tree/Bindings/net/ |
| H A D | qcom,qca807x.yaml | 1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 3 --- 5 $schema: http://devicetree.org/meta-schemas/core.yaml# 10 - Christian Marangi <ansuelsmth@gmail.com> 11 - Robert Marko <robert.marko@sartura.hr> 15 IEEE 802.3 clause 22 compliant 10BASE-Te, 100BASE-TX and 16 1000BASE-T PHY-s. 21 Both models have a combo port that supports 1000BASE-X and 22 100BASE-FX fiber. 25 output only pins that natively drive LED-s for up to 2 attached [all …]
|
| /freebsd/sys/contrib/device-tree/Bindings/fpga/ |
| H A D | fpga-region.txt | 6 - Introduction 7 - Terminology 8 - Sequence 9 - FPGA Region 10 - Supported Use Models 11 - Device Tree Examples 12 - Constraints 31 Full Reconfiguration 44 * The size and specific location of each PRR is fixed. 62 * During Full Reconfiguratio [all...] |
| /freebsd/sys/contrib/device-tree/src/arm/broadcom/ |
| H A D | bcm958625-meraki-alamo.dtsi | 1 // SPDX-License-Identifier: GPL-2.0-or-later OR MIT 5 * Copyright (C) 2020-2021 Matthew Hagan <mnhagan88@gmail.com> 8 #include "bcm958625-meraki-mx6x-common.dtsi" 12 compatible = "gpio-keys-polled"; 14 poll-interval = <20>; 16 button-reset { 24 compatible = "gpio-leds"; 26 led-0 { 27 /* green:wan1-left */ 29 function-enumerator = <0>; [all …]
|
| /freebsd/sys/contrib/device-tree/Bindings/net/dsa/ |
| H A D | qca8k.txt | 5 - compatible: should be one of: 10 - #size-cells: must be 0 11 - #address-cells: must be 1 15 - reset-gpios: GPIO to be used to reset the whole device 21 mdio-bus each subnode describing a port needs to have a valid phandle 24 To declare the internal mdio-bus configuration, declare a mdio node in the 26 PHY is connected to. In this config a internal mdio-bus is registered and 29 Don't use mixed external and internal mdio-bus configurations, as this is 36 - fixed-link : Fixed-link subnode describing a link to a non-MDIO 38 Documentation/devicetree/bindings/net/fixed-link.txt [all …]
|
| H A D | mt7530.txt | 6 - compatible: may be compatible = "mediatek,mt7530" 9 - #address-cells: Must be 1. 10 - #size-cells: Must be 0. 11 - mediatek,mcm: Boolean; if defined, indicates that either MT7530 is the part 12 on multi-chip module belong to MT7623A has or the remotely standalone 17 - core-supply: Phandle to the regulator node necessary for the core power. 18 - io-supply: Phandle to the regulator node necessary for the I/O power. 19 See Documentation/devicetree/bindings/regulator/mt6323-regulator.txt 24 - reset-gpios: Should be a gpio specifier for a reset line. 28 - resets : Phandle pointing to the system reset controller with [all …]
|
| /freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zfs_receive/ |
| H A D | zfs_receive_010_pos.ksh | 1 #!/bin/ksh -p 2 # SPDX-License-Identifier: CDDL-1.0 11 # or https://opensource.org/licenses/CDDL-1.0. 32 # Test that receiving a full send as a clone works correctly. 37 # 3. Verify that nop-write saves space. 80 zfs destroy -Rf $TESTPOOL/$TESTFS/base 84 log_assert "zfs receive of full send as clone should work" 86 log_must zfs create -o checksum=sha256 -o compression=gzip -o recordsize=512 \ 97 # create a situation where, when you receive the full send of each as 132 # Receive a file with a different record size onto a file (and vice versa). [all …]
|
| /freebsd/sys/contrib/xz-embedded/linux/lib/xz/ |
| H A D | xz_dec_lzma2.c | 5 * Igor Pavlov <https://7-zip.org/> 32 * start <= pos <= full <= end 35 * In multi-call mode, also these are true: 36 * end == size 37 * size <= size_max 38 * allocated <= size 40 * Most of these variables are size_t to support single-call mode, 55 * How full dictionary is. This is used to detect corrupt input that 58 size_t full; member 64 * End of the dictionary buffer. In multi-call mode, this is [all …]
|
| /freebsd/contrib/xz/src/liblzma/simple/ |
| H A D | arm64.c | 1 // SPDX-License-Identifier: 0BSD 12 /// A majority of the jumps for the B instruction are very small (+/- 0xFF). 13 /// These are typical for loops and if-statements. Encoding them to their 29 uint8_t *buffer, size_t size) in arm64_code() argument 31 size &= ~(size_t)3; in arm64_code() 35 // Clang 14.0.6 on x86-64 makes this four times bigger and 40 % slower in arm64_code() 36 // with auto-vectorization that is enabled by default with -O2. in arm64_code() 37 // Such vectorization bloat happens with -O2 when targeting ARM64 too in arm64_code() 42 for (i = 0; i < size; i += 4) { in arm64_code() 48 // The full 26-bit immediate is converted. in arm64_code() [all …]
|
| /freebsd/contrib/libarchive/libarchive/ |
| H A D | tar.5 | 1 .\" Copyright (c) 2003-2009 Tim Kientzle 39 tape drives that operate with fixed-size blocks, but is widely used as 44 archive consists of a series of 512-byte records. 56 are always a multiple of the record size. 57 The maximum block size supported by early 61 commonly used with modern high-speed tape drives. 69 .Ss Old-Style Archive Format 76 which seems to be the earliest widely-used version of the tar program. 78 The header record for an old-styl [all...] |
| /freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/LogicalView/Core/ |
| H A D | LVScope.h | 1 //===-- LVScope.h -----------------------------------------------*- C++ -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 12 //===----------------------------------------------------------------------===// 28 // Name address, Code size. 107 // only-globals, only-locals, a-pattern. 129 // - Preserve the order the logical elements are read in. 130 // - To have a single container with all the logical elements, when 136 void printEncodedArgs(raw_ostream &OS, bool Full) const; 138 void printActiveRanges(raw_ostream &OS, bool Full = true) const; [all …]
|
| /freebsd/sys/contrib/device-tree/Bindings/dma/stm32/ |
| H A D | st,stm32-dma.yaml | 1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 3 --- 4 $id: http://devicetree.org/schemas/dma/stm32/st,stm32-dma.yaml# 5 $schema: http://devicetree.org/meta-schemas/core.yaml# 10 The STM32 DMA is a general-purpose direct memory access controller capable of 13 described in the dma.txt file, using a four-cell specifier for each 19 -bit 9: Peripheral Increment Address 22 -bit 10: Memory Increment Address 25 -bit 15: Peripheral Increment Offset Size 26 0x0: offset size is linked to the peripheral bus width [all …]
|
| /freebsd/sys/contrib/device-tree/Bindings/dma/ |
| H A D | st,stm32-dma.yaml | 1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 3 --- 4 $id: http://devicetree.org/schemas/dma/st,stm32-dma.yaml# 5 $schema: http://devicetree.org/meta-schemas/core.yaml# 10 The STM32 DMA is a general-purpose direct memory access controller capable of 13 described in the dma.txt file, using a four-cell specifier for each 19 -bit 9: Peripheral Increment Address 22 -bit 10: Memory Increment Address 25 -bit 15: Peripheral Increment Offset Size 26 0x0: offset size is linked to the peripheral bus width [all …]
|