Home
last modified time | relevance | path

Searched +full:cpu +full:- +full:viewed (Results 1 – 21 of 21) 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 * /--
[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_ctrlr.c1 /*-
2 * SPDX-License-Identifier: BSD-2-Clause
4 * Copyright (C) 2012-2016 Intel Corporation
56 bus_barrier(ctrlr->resource, 0, rman_get_size(ctrlr->resource), flags); in nvme_ctrlr_barrier()
68 sbuf_printf(&sb, "name=\"%s\" ", device_get_nameunit(ctrlr->dev)); in nvme_ctrlr_devctl_va()
95 sbuf_printf(&sb, "%s: ", device_get_nameunit(ctrlr->dev)); in nvme_ctrlr_devctl_log()
115 qpair = &ctrlr->adminq; in nvme_ctrlr_construct_admin_qpair()
116 qpair->id = 0; in nvme_ctrlr_construct_admin_qpair()
117 qpair->cpu = CPU_FFS(&cpuset_domain[ctrlr->domain]) - 1; in nvme_ctrlr_construct_admin_qpair()
118 qpair->domain = ctrlr->domain; in nvme_ctrlr_construct_admin_qpair()
[all …]
H A Dnvme_qpair.c1 /*-
2 * SPDX-License-Identifier: BSD-2-Clause
4 * Copyright (C) 2012-2014 Intel Corporation
126 nvme_printf(qpair->ctrlr, "%s (%02x) sqid:%d cid:%d nsid:%x " in nvme_admin_qpair_print_command()
128 get_admin_opcode_string(cmd->opc), cmd->opc, qpair->id, cmd->cid, in nvme_admin_qpair_print_command()
129 le32toh(cmd->nsid), le32toh(cmd->cdw10), le32toh(cmd->cdw11)); in nvme_admin_qpair_print_command()
137 switch (cmd->opc) { in nvme_io_qpair_print_command()
144 nvme_printf(qpair->ctrlr, "%s sqid:%d cid:%d nsid:%d " in nvme_io_qpair_print_command()
146 get_io_opcode_string(cmd->opc), qpair->id, cmd->cid, le32toh(cmd->nsid), in nvme_io_qpair_print_command()
147 ((unsigned long long)le32toh(cmd->cdw11) << 32) + le32toh(cmd->cdw10), in nvme_io_qpair_print_command()
[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/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/sys/contrib/openzfs/man/man4/
H A Dzfs.41 .\" SPDX-License-Identifier: CDDL-1.0
10 .\" usr/src/OPENSOLARIS.LICENSE or https://opensource.org/licenses/CDDL-1.0.
32 .Bl -tag -width Ds
103 Turbo L2ARC warm-up.
180 Percent of ARC size allowed for L2ARC-only headers.
253 of a top-level vdev before moving on to the next top-level vdev.
256 Enable metaslab groups biasing based on their over- or under-utilization
265 Setting to 1 equals to 2 if the pool is write-bound or 0 otherwise.
316 When attempting to log an output nvlist of an ioctl in the on-disk history,
321 .Fn zfs_ioc_channel_program Pq cf. Xr zfs-program 8 .
[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 high-level summary of the most important changes.
11 ----------------
13 - [OpenSSL 3.0](#openssl-30)
14 - [OpenSSL 1.1.1](#openssl-111)
15 - [OpenSSL 1.1.0](#openssl-110)
16 - [OpenSSL 1.0.2](#openssl-102)
17 - [OpenSSL 1.0.1](#openssl-101)
18 - [OpenSSL 1.0.0](#openssl-100)
19 - [OpenSSL 0.9.x](#openssl-09x)
22 -----------
[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/share/man/man5/
H A Dpf.conf.510 .\" - Redistributions of source code must retain the above copyright
12 .\" - Redistributions in binary form must reproduce the above
45 .Bl -tag -width xxxx
47 User-defined variables may be defined and used later, simplifying
57 Ethernet filtering provides rule-based blocking or passing of Ethernet packets.
62 Queueing provides rule-based bandwidth control.
67 Packet filtering provides rule-based blocking or passing of packets.
81 .Ar set require-order
91 .Bd -literal -offset indent
105 .Bd -literal -offset indent
[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 Fix 2 critical CVE addressing memory leaks - Seunghun Han
17 ----------------------------------------
30 ----------------------------------------
35 …that the PHAT firmware health record offset works correctly, fix various sub-table offsets, preven…
37 Fix the optional table 4-byte signature. Contributed by: Daniil Tatianin <99danilt@gmail.com>
56 ----------------------------------------
71 Add new tables for various architectures/OS, mainly RISC-V and also update many more.
73 Add an option to either make the output deterministic or non-deterministic.
80 ----------------------------------------
[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 …]