Home
last modified time | relevance | path

Searched +full:cpu +full:- +full:viewed (Results 1 – 24 of 24) sorted by relevance

/freebsd/sys/contrib/device-tree/Bindings/bus/
H A Dsocionext,uniphier-system-bus.yaml1 # SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause
3 ---
4 $id: http://devicetree.org/schemas/bus/socionext,uniphier-system-bus.yaml#
5 $schema: http://devicetree.org/meta-schemas/core.yaml#
10 The UniPhier System Bus is an external bus that connects on-board devices to
11 the UniPhier SoC. It is a simple (semi-)parallel bus with address, data, and
16 within each bank to the CPU-viewed address. The needed setup includes the
21 - Masahiro Yamada <yamada.masahiro@socionext.com>
25 const: socionext,uniphier-system-bus
30 "#address-cells":
[all …]
/freebsd/sys/dev/etherswitch/ar40xx/
H A Dar40xx_hw_port.c1 /*-
2 * SPDX-License-Identifier: BSD-2-Clause
95 * The ar40xx code in linux/u-boot instead has a whole workaround in ar40xx_hw_port_init()
97 * NOTABLY - they do NOT enable the TX/RX MAC here or autoneg - in ar40xx_hw_port_init()
100 * SO - for now the port is left off until the PHY state changes. in ar40xx_hw_port_init()
126 * Call when the link for a non-CPU port is down.
143 * Call when the link for a non-CPU port is up.
145 * This will turn on the default auto-link checking and
156 /* Auto-link enable */ in ar40xx_hw_port_link_up()
167 * Setup the CPU facing port. For this device it'll only
[all …]
/freebsd/sys/contrib/device-tree/src/arm64/rockchip/
H A Drk3328-a1.dts1 // SPDX-License-Identifier: (GPL-2.0-only OR MIT)
2 // Copyright (c) 2017-2019 Arm Ltd.
4 /dts-v1/;
9 compatible = "azw,beelink-a1", "rockchip,rk3328";
18 * UART pins, as viewed with bottom of case removed:
21 * /-------
22 * L / o <- Gnd
23 * e / o <-- Rx
24 * f / o <--- Tx
25 * t / o <---- +3.3v
[all …]
/freebsd/sys/contrib/zlib/doc/
H A Drfc1950.txt9 Category: Informational J-L. Gailly
10 Info-ZIP
29 Copyright (c) 1996 L. Peter Deutsch and Jean-Loup Gailly
40 <ftp://ftp.uu.net/graphics/png/documents/zlib/zdoc-index.html>.
50 not covered by patents. This specification also defines the ADLER-32
91 * Is independent of CPU type, operating system, file system,
132 used for in-memory compression of a sequence of arbitrary bytes.
152 In version 3.2, some terminology was changed and the Adler-32
163 +---+
164 | | <-- the vertical bars might be missing
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/MCTargetDesc/
H A DX86MCTargetDesc.cpp1 //===-- X86MCTargetDesc.cpp - X86 Target Descriptions ---------------------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
11 //===----------------------------------------------------------------------===//
49 // SSE2 should default to enabled in 64-bit mode, but can be turned off in ParseX86Triple()
52 FS = "+64bit-mode,-32bit-mode,-16bit-mode,+sse2"; in ParseX86Triple()
54 FS = "-64bit-mode,+32bit-mode,-16bit-mode"; in ParseX86Triple()
56 FS = "-64bit-mode,-32bit-mode,+16bit-mode"; in ParseX86Triple()
101 assert(Index.isReg() && Index.getReg() == 0 && "Invalid eip-based address"); in is32BitMemOperand()
171 unsigned SEH = MRI->getEncodingValue(Reg); in initLLVMToSEHAndCVRegMapping()
[all …]
/freebsd/sys/dev/nvme/
H A Dnvme_qpair.c1 /*-
2 * SPDX-License-Identifier: BSD-2-Clause
4 * Copyright (C) 2012-2014 Intel Corporation
65 nvme_printf(qpair->ctrlr, "%s sqid:%d cid:%d nsid:%x " in nvme_admin_qpair_print_command()
67 get_opcode_string(true, cmd->opc, buf, sizeof(buf)), qpair->id, in nvme_admin_qpair_print_command()
68 cmd->cid, le32toh(cmd->nsid), le32toh(cmd->cdw10), in nvme_admin_qpair_print_command()
69 le32toh(cmd->cdw11)); in nvme_admin_qpair_print_command()
78 switch (cmd->opc) { in nvme_io_qpair_print_command()
85 nvme_printf(qpair->ctrlr, "%s sqid:%d cid:%d nsid:%d " in nvme_io_qpair_print_command()
87 get_opcode_string(false, cmd->opc, buf, sizeof(buf)), in nvme_io_qpair_print_command()
[all …]
H A Dnvme_ctrlr.c1 /*-
2 * SPDX-License-Identifier: BSD-2-Clause
4 * Copyright (C) 2012-2016 Intel Corporation
59 bus_barrier(ctrlr->resource, 0, rman_get_size(ctrlr->resource), flags); in nvme_ctrlr_barrier()
71 sbuf_printf(&sb, "name=\"%s\" ", device_get_nameunit(ctrlr->dev)); in nvme_ctrlr_devctl_va()
98 sbuf_printf(&sb, "%s: ", device_get_nameunit(ctrlr->dev)); in nvme_ctrlr_devctl_log()
118 qpair = &ctrlr->adminq; in nvme_ctrlr_construct_admin_qpair()
119 qpair->id = 0; in nvme_ctrlr_construct_admin_qpair()
120 qpair->cpu = CPU_FFS(&cpuset_domain[ctrlr->domain]) - 1; in nvme_ctrlr_construct_admin_qpair()
121 qpair->domain = ctrlr->domain; in nvme_ctrlr_construct_admin_qpair()
[all …]
/freebsd/sys/contrib/zstd/
H A DCONTRIBUTING.md30 Zstd uses a branch-based workflow for making changes to the codebase. Typically, zstd
51 git checkout -b <branch-name>
52 git push origin <branch-name>
57 git add -u && git commit -m <message>
58 git push origin <branch-name>
113 executing it. It usually helps us find many simple bugs. Zstd uses clang's `scan-build` tool for
114 …install it by following the instructions for your OS on https://clang-analyzer.llvm.org/scan-build.
122 In general, you can use `scan-build` to static analyze any build script. For example, to static ana…
126 scan-build make -C contrib/largeNbDicts largeNbDicts
130 `scan-build` is part of our regular CI suite. Other static analyzers are not.
[all …]
/freebsd/contrib/unbound/doc/
H A Dunbound-control.81 .TH "unbound-control" "8" "Jul 16, 2025" "NLnet Labs" "unbound 1.23.1"
3 .\" unbound-control.8 -- unbound remote control manual
11 .B unbound\-control,
12 .B unbound\-control\-setup
13 \- Unbound remote server control utility.
15 .B unbound\-control
16 .RB [ \-hq ]
17 .RB [ \-c
19 .RB [ \-s
23 .B Unbound\-control
[all …]
H A Dunbound-control.8.in4 .nr rst2man-indent-level 0
7 \\$1 \\n[an-margin]
8 level \\n[rst2man-indent-level]
9 level margin: \\n[rst2man-indent\\n[rst2man-indent-level]]
10 -
11 \\n[rst2man-indent0]
12 \\n[rst2man-indent1]
13 \\n[rst2man-indent2]
18 . nr rst2man-indent\\n[rst2man-indent-level] \\n[an-margin]
19 . nr rst2man-indent-level +1
[all …]
H A Dunbound-control.rst37 .. program:: unbound-control
39 unbound-control(8)
43 --------
45 **unbound-control** [``-hq``] [``-c cfgfile``] [``-s server``] command
48 -----------
50 ``unbound-control`` performs remote administration on the
57 .. option:: -h
61 .. option:: -c <cfgfile>
67 .. option:: -s <server[@port]>
72 .. option:: -q
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DGCNSubtarget.h1 //=====-- GCNSubtarget.h - Define GCN Subtarget for AMDGPU ------*- C++ -*-===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //==-----------------------------------------------------------------------===//
12 //===----------------------------------------------------------------------===//
40 // - https://llvm.org/docs/AMDGPUUsage.html#trap-handler-abi
316 void ParseSubtargetFeatures(StringRef CPU, StringRef TuneCPU, StringRef FS);
325 // 18-bit field in units of 64-dword. in getMaxWaveScratchSize()
326 return (64 * 4) * ((1 << 18) - 1); in getMaxWaveScratchSize()
329 // 15-bit field in units of 64-dword. in getMaxWaveScratchSize()
330 return (64 * 4) * ((1 << 15) - 1); in getMaxWaveScratchSize()
[all …]
/freebsd/crypto/openssl/
H A DINSTALL.md11 - [Prerequisites](#prerequisites)
12 - [Notational Conventions](#notational-conventions)
13 - [Quick Installation Guide](#quick-installation-guide)
14 - [Building OpenSSL](#building-openssl)
15 - [Installing OpenSSL](#installing-openssl)
16 - [Configuration Options](#configuration-options)
17 - [API Level](#api-level)
18 - [Cross Compile Prefix](#cross-compile-prefix)
19 - [Build Type](#build-type)
20 - [Directories](#directories)
[all …]
H A DCHANGES.md4 This is a detailed breakdown of significant changes. For a high-level overview
13 ----------------
15 - [OpenSSL 3.5](#openssl-35)
16 - [OpenSSL 3.4](#openssl-34)
17 - [OpenSSL 3.3](#openssl-33)
18 - [OpenSSL 3.2](#openssl-32)
19 - [OpenSSL 3.1](#openssl-31)
20 - [OpenSSL 3.0](#openssl-30)
21 - [OpenSSL 1.1.1](#openssl-111)
22 - [OpenSSL 1.1.0](#openssl-110)
[all …]
/freebsd/sys/contrib/openzfs/man/man4/
H A Dzfs.41 .\" SPDX-License-Identifier: CDDL-1.0
11 .\" usr/src/OPENSOLARIS.LICENSE or https://opensource.org/licenses/CDDL-1.0.
31 .Bl -tag -width Ds
98 Turbo L2ARC warm-up.
175 Percent of ARC size allowed for L2ARC-only headers.
248 of a top-level vdev before moving on to the next top-level vdev.
251 Enable metaslab groups biasing based on their over- or under-utilization
260 Setting to 1 equals to 2 if the pool is write-bound or 0 otherwise.
313 if not page-aligned instead of silently falling back to uncached I/O.
316 When attempting to log an output nvlist of an ioctl in the on-disk history,
[all …]
/freebsd/bin/sh/
H A Dsh.11 .\"-
2 .\" SPDX-License-Identifier: BSD-3-Clause
68 .St -p1003.1
86 addition to data storage, along with built-in history and line
90 language is common to both interactive and non-interactive
110 .Pq Ql - ,
144 The first non-option argument specified on the command line
160 closes a well-known, and sometimes easily exploitable security
183 built-in command
185 .Sx Built-in Commands ) .
[all …]
/freebsd/sys/dev/mlx5/mlx5_en/
H A Dmlx5_en_main.c1 /*-
2 * Copyright (c) 2015-2021 Mellanox Technologies. All rights reserved.
370 struct mlx5_core_dev *mdev = priv->mdev; in mlx5e_update_carrier()
385 priv->media_status_last |= IFM_ACTIVE; in mlx5e_update_carrier()
387 priv->media_status_last &= ~IFM_ACTIVE; in mlx5e_update_carrier()
388 priv->media_active_last = IFM_ETHER; in mlx5e_update_carrier()
389 if_link_state_change(priv->ifp, LINK_STATE_DOWN); in mlx5e_update_carrier()
396 priv->media_active_last = IFM_ETHER; in mlx5e_update_carrier()
397 if_setbaudrate(priv->ifp, 1); in mlx5e_update_carrier()
398 mlx5_en_err(priv->ifp, "query port ptys failed: 0x%x\n", in mlx5e_update_carrier()
[all …]
/freebsd/contrib/one-true-awk/testdir/
H A Dfunstack.in2 %%% BibTeX-file{
23 %%% (incompletely) 1970 -- 1979.
50 %%% covering 1958--1996 became too large (about
65 %%% Algorithms 1--492. For Algorithms 493--686,
72 %%% cross-referenced in both directions, so
75 %%% Corrigenda. Cross-referenced entries are
77 %%% that each is completely self-contained.
83 %%% ftp://netlib.bell-labs.com/netlib/toms.
88 %%% http://ciir.cs.umass.edu/cgi-bin/web_query_form/public/cacm2.1.
90 %%% The initial draft of entries for 1981 --
[all …]
/freebsd/share/doc/IPv6/
H A DIMPLEMENTATION9 applicable to KAME-integrated *BSD releases, as we have certain amount
11 KAME-integrated *BSD releases.
23 1.4.1 Assignment of link-local, and special addresses
59 2.1 FreeBSD 2.2.x-RELEASE
62 2.4 FreeBSD 3.x-RELEASE
63 2.5 FreeBSD 4.x-RELEASE
68 3.2 IPv6-to-IPv4 header translator
79 4.8.2 draft-touch-ipsec-vpn approach
94 below (NOTE: this is not a complete list - this is too hard to maintain...).
99 at TAHI project. Results can be viewed at http://www.tahi.org/report/KAME/.
[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/contrib/file/magic/Magdir/
H A Dfilesystems1 #------------------------------------------------------------------------------
7 >0 ubyte 0x01 12-bit FAT
10 >0 ubyte 0x04 16-bit FAT, less than 32M
12 >0 ubyte 0x06 16-bit FAT, more than 32M
17 >0 ubyte 0x0b 32-bit FAT
18 >0 ubyte 0x0c 32-bit FAT, LBA-mapped
19 >0 ubyte 0x0d 7XXX, LBA-mapped
20 >0 ubyte 0x0e 16-bit FAT, LBA-mapped
21 >0 ubyte 0x0f extended partition, LBA-mapped
23 >0 ubyte 0x11 OS/2 DOS 12-bit FAT
[all …]
/freebsd/contrib/libpcap/
H A Dgencode.c45 #include "pcap-dos.h"
48 #include "pcap-int.h"
64 #include "diag-control.h"
75 #define offsetof(s, e) ((size_t)&((s *)0)->e)
152 #include "os-proto.h"
158 * "Push" the current value of the link-layer header type and link-layer
160 * full-blown stack; we keep only the top two items.)
164 (cs)->prevlinktype = (cs)->linktype; \
165 (cs)->off_prevlinkhdr = (cs)->off_linkhdr; \
166 (cs)->linktype = (new_linktype); \
[all …]
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DCodeGenPrepare.cpp1 //===- CodeGenPrepare.cpp - Prepare a function for code generation --------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
10 // SelectionDAG-based code generation. This works around limitations in it's
11 // basic-block-at-a-time approach. It should eventually be removed.
13 //===----------------------------------------------------------------------===//
43 #include "llvm/Config/llvm-config.h"
137 "disable-cgp-branch-opts", cl::Hidden, cl::init(false),
141 DisableGCOpts("disable-cgp-gc-opts", cl::Hidden, cl::init(false),
145 DisableSelectToBranch("disable-cgp-select2branch", cl::Hidden,
[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 …]