/freebsd/sys/contrib/device-tree/Bindings/mtd/partitions/ |
H A D | fixed-partitions.yaml | 1 # SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause 3 --- 4 $id: http://devicetree.org/schemas/mtd/partitions/fixed [all...] |
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/ |
H A D | OptimizedStructLayout.h | 1 //===-- OptimizedStructLayout.h - Struct layout algorithm ---------*- C++ -*-=// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 17 /// Fields may be pre-assigned fixed offsets. They may also be given sizes 24 /// - First, it does not guarantee that the result is minimal in size. 28 /// - Second, there are other ways that a struct layout could be optimized 33 //===----------------------------------------------------------------------===// 50 OptimizedStructLayoutField(const void *Id, uint64_t Size, Align Alignment, 52 : Offset(FixedOffset), Size(Size), Id(Id), Alignment(Alignment) { in Offset() 53 assert(Size > 0 && "adding an empty field to the layout"); in Offset() [all …]
|
H A D | TypeSize.h | 1 //===- TypeSize.h - Wrapper around type sizes -------------------*- C++ -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 9 // This file provides a struct that can be used to query the size of IR types 13 //===----------------------------------------------------------------------===// 28 /// Reports a diagnostic message to indicate an invalid size request has been 32 /// StackOffset holds a fixed and a scalable offset in bytes. 34 int64_t Fixed = 0; variable 37 StackOffset(int64_t Fixed, int64_t Scalable) in StackOffset() argument 38 : Fixed(Fixed), Scalable(Scalable) {} in StackOffset() [all …]
|
/freebsd/sys/contrib/dev/acpica/ |
H A D | changes.txt | 1 ---------------------------------------- 6 Fixed a problem with the ASL/AML Timer() operator. Discovered by UBSAN: ?array-index-out-of-bounds … 8 Added a define for size of acpi_srat_generic_affinity DeviceHandle. Replaced a magic number with a … 12 1) ACPICA kernel-resident subsystem: 16 Fixed misspelled CDAT DSMAS define: ACPI_CEDT_DSMAS_NON_VOLATILE -> ACPI_CDAT_DSMAS_NON_VOLATILE. R… 18 1) ACPICA kernel-resident subsystem: 20 Fix GCC 12 dangling-pointer warning. We're storing a persistent pointer to an ephemeral local vari… 22 Also, some C run-times (like MUSL) aren't including <stdint.h> indirectly so we must include it exp… 31 ---------------------------------------- 41 Add OS-specific support for Zephyr RTOS. [all …]
|
/freebsd/sys/dev/bhnd/bhndb/ |
H A D | bhndb_pcireg.h | 1 /*- 36 * - PCI (cid=0x804, revision <= 12) 37 * BAR0 size: 8KB 39 * [offset+ size] type description 41 * [0x1000+0x0800] fixed SPROM shadow 42 * [0x1800+0x0E00] fixed pci core device registers 43 * [0x1E00+0x0200] fixed pci core siba config registers 47 * - PCI (cid=0x804, revision >= 13) 48 * - PCIE (cid=0x820) with ChipCommon (revision <= 31) 49 * BAR0 size: 16KB [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Support/ |
H A D | OptimizedStructLayout.cpp | 1 //===--- OptimizedStructLayout.cpp - Optimal data layout algorithm ----------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 11 //===----------------------------------------------------------------------===// 21 static void checkValidLayout(ArrayRef<Field> Fields, uint64_t Size, in checkValidLayout() argument 27 "didn't assign a fixed offset to field"); in checkValidLayout() 29 "didn't assign a correctly-aligned offset to field"); in checkValidLayout() 37 assert(LastEnd == Size && "didn't compute LastEnd correctly"); in checkValidLayout() 50 assert(Field.Size > 0 && "field of zero size"); in performOptimizedStructLayout() 53 "fixed-offset fields are not a strict prefix of array"); in performOptimizedStructLayout() [all …]
|
/freebsd/sys/contrib/device-tree/src/arm/broadcom/ |
H A D | bcm23550.dtsi | 34 #include <dt-bindings/clock/bcm21664.h> 35 #include <dt-bindings/interrupt-controller/arm-gic.h> 36 #include <dt-bindings/interrupt-controller/irq.h> 39 #address-cells = <1>; 40 #size-cells = <1>; 43 interrupt-paren [all...] |
H A D | bcm11351.dtsi | 1 // SPDX-License-Identifier: GPL-2.0-only 2 // Copyright (C) 2012-2013 Broadcom Corporation 4 #include <dt-bindings/clock/bcm281xx.h> 5 #include <dt-bindings/interrupt-controller/arm-gic.h> 6 #include <dt-binding [all...] |
H A D | bcm21664.dtsi | 1 // SPDX-License-Identifier: GPL-2.0-only 4 #include <dt-bindings/clock/bcm21664.h> 5 #include <dt-bindings/interrupt-controller/arm-gic.h> 6 #include <dt-bindings/interrupt-controlle [all...] |
/freebsd/lib/libc/db/man/ |
H A D | recno.3 | 48 The record number data structure is either variable or fixed-length 49 records stored in a flat-file format, accessed by the logical record 64 .Bd -literal 77 .Bl -tag -width indent 82 .Bl -tag -width indent 84 The records are fixed-length, not byte delimited. 112 A suggested maximum size, in bytes, of the memory cache. 118 is 0 (no size is specified) a default cache is used. 122 access method stores the in-memory copies of its records 124 This value is the size (in bytes) of the pages used for nodes in that tree. [all …]
|
/freebsd/sys/contrib/dev/athk/ath11k/ |
H A D | dbring.c | 1 // SPDX-License-Identifier: BSD-3-Clause-Clear 3 * Copyright (c) 2019-2020 The Linux Foundation. All rights reserved. 11 int ath11k_dbring_validate_buffer(struct ath11k *ar, void *buffer, u32 size) in ath11k_dbring_validate_buffer() argument 16 size = size >> 2; in ath11k_dbring_validate_buffer() 18 for (idx = 0, temp = buffer; idx < size; idx++, temp++) { in ath11k_dbring_validate_buffer() 20 return -EINVAL; in ath11k_dbring_validate_buffer() 27 void *buffer, u32 size) in ath11k_dbring_fill_magic_value() argument 30 * and the variable size is expected to be the number of u32 values in ath11k_dbring_fill_magic_value() 33 size = size / sizeof(u32); in ath11k_dbring_fill_magic_value() 35 memset32(buffer, ATH11K_DB_MAGIC_VALUE, size); in ath11k_dbring_fill_magic_value() [all …]
|
/freebsd/sys/contrib/device-tree/src/riscv/starfive/ |
H A D | jh7110.dtsi | 1 // SPDX-License-Identifier: GPL-2.0 OR MIT 7 /dts-v1/; 8 #include <dt-bindings/clock/starfive,jh7110-crg.h> 9 #include <dt-bindings/power/starfive,jh7110-pmu.h> 10 #include <dt-bindings/reset/starfive,jh7110-cr [all...] |
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/ |
H A D | DWARFAbbreviationDeclaration.h | 1 //===- DWARFAbbreviationDeclaration.h ---------------------------*- C++ -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 38 this->ByteSize.HasByteSize = ByteSize.has_value(); in AttributeSpec() 39 if (this->ByteSize.HasByteSize) in AttributeSpec() 40 this->ByteSize.ByteSize = *ByteSize; in AttributeSpec() 54 /// The following field is used for ByteSize for non-implicit_const 59 /// ByteSize contains the fixed size in bytes for the Form in this 62 /// byte size of Form either varies according to the DWARFUnit 63 /// that it is contained in or the value size varies and must be [all …]
|
/freebsd/share/man/man9/ |
H A D | alq.9 | 3 .\" Copyright (c) 2009-2010 The FreeBSD Foundation 56 .Fa "int size" 65 .Fa "int size" 87 facility provides an asynchronous fixed or variable length recording 105 .Bd -literal -offset indent 115 can be created in either fixed or variable length mode. 122 A fixed length 124 accommodates a fixed number of writes using 128 each of fixed size (set at queue creation time). 129 Fixed length mode is deprecated in favour of variable length mode. [all …]
|
/freebsd/sys/contrib/device-tree/Bindings/nvmem/layouts/ |
H A D | fixed-layout.yaml | 1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 3 --- 4 $id: http://devicetree.org/schemas/nvmem/layouts/fixed [all...] |
/freebsd/sys/contrib/device-tree/src/arm/arm/ |
H A D | mps2.dtsi | 6 * This file is dual-licensed: you can use it either under the terms 45 #include "../armv7-m.dtsi" 48 #address-cells = <1>; 49 #size-cells = <1>; 51 oscclk0: clk-osc0 { 52 compatible = "fixed-clock"; 53 #clock-cells = <0>; 54 clock-frequency = <50000000>; 57 oscclk1: clk-osc1 { 58 compatible = "fixed-clock"; [all …]
|
/freebsd/sys/contrib/zstd/ |
H A D | CHANGELOG | 2 perf: Regain Minimal memset()-ing During Reuse of Compression Contexts (@Cyan4973, #2969) 10 perf: improved binary size and faster compilation times, by @terrelln 12 perf: faster mid-level compression speed in presence of highly repetitive patterns, by @senhuang42 16 perf: on-demand reduced ZSTD_DCtx state size, using build macro ZSTD_DECODER_INTERNAL_BUFFER, at a … 20 build: improved meson unofficial build, by @eli-schwartz 22 …t advanced parameters information when compressing in very verbose mode (``-vv`), by @Svetlitski-FB 25 api: Various functions promoted from experimental to stable API: (#2579-2581, @senhuang42) 39 api: ZSTDMT_NBWORKERS_MAX reduced to 64 for 32-bit environments (@Cyan4973) 42 perf: Decompression loop refactor, speed improvements on `clang` and for `--long` modes (#2614 #263… 45 bug: Fix large dictionary non-determinism (#2607, @terrelln) [all …]
|
/freebsd/sys/contrib/device-tree/src/arc/ |
H A D | hsdk.dts | 1 // SPDX-License-Identifier: GPL-2.0-only 9 /dts-v1/; 11 #include <dt-bindings/gpio/gpio.h> 12 #include <dt-bindings/reset/snps,hsdk-reset.h> 18 #address-cells = <2>; 19 #size-cells = <2>; 22 … "earlycon=uart8250,mmio32,0xf0005000,115200n8 console=ttyS0,115200n8 debug print-fatal-signals=1"; 30 #address-cells = <1>; 31 #size-cells = <0>; 62 input_clk: input-clk { [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 …]
|
/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...] |
/freebsd/sys/contrib/device-tree/src/nios2/ |
H A D | 10m50_devboard.dts | 1 // SPDX-License-Identifier: GPL-2.0-only 6 /dts-v1/; 10 compatible = "altr,niosii-max10"; 11 #address-cells = <1>; 12 #size-cells = <1>; 15 #address-cells = <1>; 16 #size-cells = <0>; 20 compatible = "altr,nios2-1.1"; 22 interrupt-controller; 23 #interrupt-cells = <1>; [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/contrib/device-tree/Bindings/net/ |
H A D | samsung-sxgbe.txt | 4 - compatible: Should be "samsung,sxgbe-v2.0a" 5 - reg: Address and length of the register set for the device 6 - interrupts: Should contain the SXGBE interrupts 7 These interrupts are ordered by fixed and follows variable 9 index 0 - this is fixed common interrupt of SXGBE and it is always 11 index 1 to 25 - 8 variable transmit interrupts, variable 16 receive interrupts 13 - phy-mod [all...] |
/freebsd/sys/contrib/device-tree/src/arm/ti/omap/ |
H A D | omap44xx-clocks.dtsi | 1 // SPDX-License-Identifier: GPL-2.0-only 9 #clock-cells = <0>; 10 compatible = "fixed-clock"; 11 clock-output-names = "extalt_clkin_ck"; 12 clock-frequency = <59000000>; 16 #clock-cells = <0>; 17 compatible = "fixed-clock"; 18 clock-output-names = "pad_clks_src_ck"; 19 clock-frequency = <12000000>; 23 #clock-cells = <0>; [all …]
|
H A D | omap54xx-clocks.dtsi | 1 // SPDX-License-Identifier: GPL-2.0-only 9 #clock-cells = <0>; 10 compatible = "fixed-clock"; 11 clock-output-names = "pad_clks_src_ck"; 12 clock-frequency = <12000000>; 16 #clock-cells = <0>; 17 compatible = "ti,gate-clock"; 18 clock-output-names = "pad_clks_ck"; 20 ti,bit-shift = <8>; 25 #clock-cells = <0>; [all …]
|