/freebsd/sys/contrib/device-tree/Bindings/gpio/ |
H A D | delta,tn48m-gpio.yaml | 1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 3 --- 4 $id: http://devicetree.org/schemas/gpio/delta,tn48m-gpio.yaml# 5 $schema: http://devicetree.org/meta-schemas/core.yaml# 10 - Robert Marko <robert.marko@sartura.hr> 13 This module is part of the Delta TN48M multi-function device. For more 14 details see ../mfd/delta,tn48m-cpld.yaml. 17 It provides 12 pins in total, they are input-only or ouput-only type. 22 - delta,tn48m-gpo 23 - delta,tn48m-gpi [all …]
|
/freebsd/contrib/llvm-project/llvm/utils/TableGen/ |
H A D | CompressInstEmitter.cpp | 1 //===-------- CompressInstEmitter.cpp - Generator for Compression ---------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 // CompressInstEmitter implements a tablegen-driven CompressPat based 10 //===----------------------------------------------------------------------===// 12 // CompressInstEmitter implements a tablegen-driven CompressPat Instruction 43 // The <TargetName>GenCompressInstEmitter.inc is an auto-generated header 59 // The clients that include this auto-generated header file and 61 // it in the target-specific ASM or ELF streamer or can uncompress 65 //===----------------------------------------------------------------------===// 82 #define DEBUG_TYPE "compress-inst-emitter" [all …]
|
/freebsd/contrib/opencsd/decoder/source/ptm/ |
H A D | trc_pkt_decode_ptm.cpp | 68 // no sync - output a no sync packet then transition to wait sync. in processPacket() 72 m_curr_state = (m_curr_packet_in->getType() == PTM_PKT_A_SYNC) ? WAIT_ISYNC : WAIT_SYNC; in processPacket() 77 if(m_curr_packet_in->getType() == PTM_PKT_A_SYNC) in processPacket() 83 if(m_curr_packet_in->getType() == PTM_PKT_I_SYNC) in processPacket() 95 // should only see these after a _WAIT resp - in flush handler in processPacket() 109 // shouldn't be any packets left to be processed - flush shoudl have done this. in onEOT() 132 // atom and isync packets can have multiple ouput packets that can be _WAITed mid stream. 158 …m_curr_state = DECODE_PKTS; // continue packet processing - assuming we have not degraded into an … in contProcess() 169 // static config - copy of CSID for easy reference in onProtocolConfig() 170 m_CSID = m_config->getTraceID(); in onProtocolConfig() [all …]
|
/freebsd/bin/ps/ |
H A D | ps.1 | 1 .\"- 2 .\" SPDX-License-Identifier: BSD-3-Clause 44 .Op Fl -libxo 57 .Op Fl -libxo 66 .Pq one per lightweight-process . 68 .Fl -libxo . 70 By default, only the processes of the calling user, determined by matching their 85 the calling user's processes are shown only on request. 94 option can be independently used to further filter the listed processes to only 150 to rebuild variants from scratch, e.g., using only [all …]
|
/freebsd/contrib/ntp/ntpd/ |
H A D | ntp_ppsdev.c | 2 * ntp_ppsdev.c - PPS-device support 6 * --------------------------------------------------------------------- 19 * --------------------------------------------------------------------- 40 /* -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- */ 43 /* -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- */ 67 /* ------------------------------------------------------------------ */ 79 if (NULL != pxdir->dir) in xdirClose() 80 closedir(pxdir->dir); /* closes the internal FD, too! */ in xdirClose() 81 else if (-1 != pxdir->dfd) in xdirClose() 82 close(pxdir->dfd); /* otherwise _we_ have to do it */ in xdirClose() [all …]
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Interpreter/ |
H A D | CommandInterpreter.h | 1 //===-- CommandInterpreter.h ------------------------------------*- C++ -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 26 #include "lldb/lldb-forward.h" 27 #include "lldb/lldb-private.h" 85 /// \b false, print no ouput in this case. This setting has an effect only 98 /// interpreter is non-interactive. 298 /// Determine whether a root level, built-in command with this name exists. 304 /// Determine whether a root-level user command with this name exists. 307 /// Determine whether a root-level user multiword command with this name [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Support/BLAKE3/ |
H A D | blake3.c | 1 /*===-- blake3.c - BLAKE3 C Implementation ------------------------*- C -*-===*\ 5 |* SPDX-License-Identifier: CC0-1.0 *| 7 \*===----------------------------------------------------------------------===*/ 19 memcpy(self->cv, key, BLAKE3_KEY_LEN); in chunk_state_init() 20 self->chunk_counter = 0; in chunk_state_init() 21 memset(self->buf, 0, BLAKE3_BLOCK_LEN); in chunk_state_init() 22 self->buf_len = 0; in chunk_state_init() 23 self->blocks_compressed = 0; in chunk_state_init() 24 self->flags = flags; in chunk_state_init() 29 memcpy(self->cv, key, BLAKE3_KEY_LEN); in chunk_state_reset() [all …]
|
/freebsd/sys/contrib/openzfs/module/icp/algs/blake3/ |
H A D | blake3.c | 1 // SPDX-License-Identifier: CDDL-1.0 10 * or https://opensource.org/licenses/CDDL-1.0. 24 * Based on BLAKE3 v1.3.1, https://github.com/BLAKE3-team/BLAKE3 25 * Copyright (c) 2019-2020 Samuel Neves and Jack O'Connor 26 * Copyright (c) 2021-2022 Tino Reichardt <milky-zfs@mcmilk.de> 37 * - we define this pragma to make gcc happy 40 #pragma GCC diagnostic ignored "-Wframe-larger-than=" 67 memcpy(ctx->cv, key, BLAKE3_KEY_LEN); in chunk_state_init() 68 ctx->chunk_counter = 0; in chunk_state_init() 69 memset(ctx->buf, 0, BLAKE3_BLOCK_LEN); in chunk_state_init() [all …]
|
/freebsd/contrib/llvm-project/llvm/tools/llvm-debuginfo-analyzer/ |
H A D | Options.cpp | 1 //===-- options.cpp - Command line options for llvm-debuginfo-analyzer----===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 9 // This handles the command line options for llvm-debuginfo-analyzer. 11 //===----------------------------------------------------------------------===// 42 //===----------------------------------------------------------------------===// 44 //===----------------------------------------------------------------------===// 49 //===----------------------------------------------------------------------===// 50 // '--attribute' options 51 //===----------------------------------------------------------------------===// [all …]
|
/freebsd/sys/contrib/xen/ |
H A D | sysctl.h | 24 * Copyright (c) 2002-2006, K Fraser 31 #error "sysctl operations are intended for use by node control tools only" 45 /* IN: Non-zero -> clear after reading. */ 47 /* IN: Non-zero -> start index specified by @index field. */ 142 /* Sub-operations: */ 204 int32_t node; /* NUMA node of interest (-1 for all nodes). */ 240 * Indexing is 1-biased (PC1/CC1 being at index 0). 278 * every non-primary sibling thread (those with a thread id which is not 375 * cpuidle max C-state and max C-sub-state access command: 376 * Set cpuid to 0 for max C-state. [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Core/ |
H A D | LVScope.cpp | 1 //===-- LVScope.cpp -------- [all...] |
/freebsd/contrib/netbsd-tests/fs/vfs/ |
H A D | t_vnops.c | 3 /*- 34 #include <atf-c.h> 74 if (rump_sys_stat(pb, &sb1) == -1) in lookup_simple() 78 if (rump_sys_stat(pb, &sb2) == -1) in lookup_simple() 94 if (rump_sys_mkdir(pb, 0777) == -1) in lookup_complex() 96 if (rump_sys_stat(pb, &sb1) == -1) in lookup_complex() 100 if (rump_sys_stat(pb, &sb2) == -1) in lookup_complex() 105 * any directories searched - such a directory is the in lookup_complex() 151 atf_tc_fail("stat results differ, see ouput for more details"); in lookup_complex() 165 if (rump_sys_mkdir(pb, 0777) == -1) in dir_simple() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/ |
H A D | RISCVAsmPrinter.cpp | 1 //===-- RISCVAsmPrinter.cpp - RISC-V LLVM assembly writer -----------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 10 // of machine-dependent LLVM code to the RISC-V assembly language. 12 //===----------------------------------------------------------------------===// 47 #define DEBUG_TYPE "asm-printer" 50 "Number of RISC-V Compressed instructions emitted"); 65 StringRef getPassName() const override { return "RISC-V Assembly Printer"; } in getPassName() 116 unsigned NOPBytes = STI->hasStdExtCOrZca() ? 2 : 4; in LowerSTACKMAP() 132 if (MII == MBB.end() || MII->isCall() || in LowerSTACKMAP() [all …]
|
/freebsd/sys/crypto/ccp/ |
H A D | ccp_hardware.c | 1 /*- 2 * SPDX-License-Identifier: BSD-2-Clause 97 return (bus_space_read_4(sc->pci_bus_tag, sc->pci_bus_handle, offset)); in ccp_read_4() 103 bus_space_write_4(sc->pci_bus_tag, sc->pci_bus_handle, offset, value); in ccp_write_4() 125 ccp_write_queue_4(qp->cq_softc, qp->cq_qindex, CMD_Q_TAIL_LO_BASE, in ccp_queue_write_tail() 126 ((uint32_t)qp->desc_ring_bus_addr) + (Q_DESC_SIZE * qp->cq_tail)); in ccp_queue_write_tail() 136 return ((qp->private_lsb * LSB_REGION_LENGTH + lsb_entry)); in ccp_queue_lsb_entry() 152 * LSB - Local Storage Block 166 * "Pass-through" mode 169 * Pass-through is a generic DMA engine, much like ioat(4). Some nice [all …]
|
/freebsd/sys/contrib/dev/ath/ath_hal/ar9300/ |
H A D | ar9300_reset.c | 121 ahp->ah_hwp = HAL_TRUE_CHIP; in ar9300_attach_hw_platform() 196 * Mask used to construct AAD for CCMP-AES in ar9300_init_mfp() 197 * Cisco spec defined bits 0-3 as mask in ar9300_init_mfp() 226 centers->ctl_center = centers->ext_center = in ar9300_get_channel_centers() 227 centers->synth_center = ichan->channel; in ar9300_get_channel_centers() 238 centers->synth_center = ichan->channel + HT40_CHANNEL_CENTER_SHIFT; in ar9300_get_channel_centers() 241 centers->synth_center = ichan->channel - HT40_CHANNEL_CENTER_SHIFT; in ar9300_get_channel_centers() 242 extoff = -1; in ar9300_get_channel_centers() 245 centers->ctl_center = in ar9300_get_channel_centers() 246 centers->synth_center - (extoff * HT40_CHANNEL_CENTER_SHIFT); in ar9300_get_channel_centers() [all …]
|
/freebsd/contrib/ntp/ |
H A D | CommitLog | 1 ChangeSet@1.4062, 2024-05-25 00:06:49-07:00, ntpreleng@ntp-build.tal1.ntfo.org 5 ChangeLog@1.2103 +1 -0 8 ntpd/invoke-ntp.conf.texi@1.231 +1 -1 11 ntpd/invoke-ntp.keys.texi@1.214 +1 -1 14 ntpd/invoke-ntp [all...] |