Home
last modified time | relevance | path

Searched +full:ps +full:- +full:seq +full:- +full:loop (Results 1 – 25 of 32) sorted by relevance

12

/freebsd/sys/contrib/device-tree/Bindings/input/
H A Ddlg,da7280.txt4 - compatible: Should be "dlg,da7280".
5 - reg: Specifies the I2C slave address.
7 - interrupt-parent : Specifies the phandle of the interrupt controller to
10 - dlg,actuator-type: Set Actuator type. it should be one of:
11 "LRA" - Linear Resonance Actuator type.
12 "ERM-bar" - Bar type Eccentric Rotating Mass.
13 "ERM-coin" - Coin type Eccentric Rotating Mass.
15 - dlg,const-op-mode: Haptic operation mode for FF_CONSTANT.
17 1 - Direct register override(DRO) mode triggered by i2c(default),
18 2 - PWM data source mode controlled by PWM duty,
[all …]
H A Ddlg,da7280.yaml1 # SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
3 ---
5 $schema: http://devicetree.org/meta-schemas/core.yaml#
7 title: Dialog Semiconductor DA7280 Low Power High-Definition Haptic Driver
10 - Roy Im <roy.im.opensource@diasemi.com>
23 dlg,actuator-type:
25 - LRA # Linear Resonance Actuator type
26 - ERM-bar # Bar type Eccentric Rotating Mass
27 - ERM-coin # Coin type Eccentric Rotating Mass
29 dlg,const-op-mode:
[all …]
/freebsd/contrib/mandoc/
H A Dterm.c3 * Copyright (c) 2010-2022, 2025 Ingo Schwarze <schwarze@openbsd.org>
49 if (maxtcol > p->maxtcol) { in term_setcol()
50 p->tcols = mandoc_recallocarray(p->tcols, in term_setcol()
51 p->maxtcol, maxtcol, sizeof(*p->tcols)); in term_setcol()
52 p->maxtcol = maxtcol; in term_setcol()
54 p->lasttcol = maxtcol - 1; in term_setcol()
55 p->tco in term_setcol()
551 const char *seq, *cp; term_word() local
977 const char *seq, *rhs; term_strlen() local
[all...]
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DSplitKit.cpp1 //===- SplitKit.cpp - Toolkit for splitting live ranges -------------------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
12 //===----------------------------------------------------------------------===//
31 #include "llvm/Config/llvm-config.h"
49 EnableLoopIVHeuristic("enable-split-loopiv-heuristic",
50 cl::desc("Enable loop iv regalloc heuristic"),
58 //===----------------------------------------------------------------------===//
60 //===----------------------------------------------------------------------===//
76 if (SMBB->isEHPad()) { in computeLastInsertPoint()
[all …]
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A Darm_mve.td1 //===- arm_mve.td - ACLE intrinsic functions for MVE architecture ---------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 // This file defines the set of ACLE-specified source-level intrinsic
17 //===----------------------------------------------------------------------===//
71 // special-purpose IR intrinsics. This is because such a general form
72 // (such as NEON uses) required a variable-width vector size, and we are
185 (seq (splat $m2_s):$m2, unpred_cg)>;
188 (seq (splat $addend_s):$addend, unpred_cg)>;
192 (seq (splat $m2_s):$m2, pred_cg)>;
[all …]
H A DAttrDocs.td1 //==--- AttrDocs.td - Attribute documentation ----------------------------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===---------------------------------------------------------------------===//
9 // To test that the documentation builds cleanly, you must run clang-tblgen to
15 // To run clang-tblgen to generate the .rst file:
16 // clang-tblgen -gen-attr-docs -I <root>/llvm/tools/clang/include
17 // <root>/llvm/tools/clang/include/clang/Basic/Attr.td -o
20 // To run sphinx to generate the .html files (note that sphinx-build must be
24 // Non-Windows (from within the clang\docs directory):
25 // sphinx-build -b html _build/html
[all …]
/freebsd/sys/dev/cxgbe/tom/
H A Dt4_ddp.c1 /*-
2 * SPDX-License-Identifier: BSD-2-Clause
100 * reuse of buffers (avoiding the need to re-fault in pages, hold
104 * is a trade-off for performance.
106 * If an application ping-pongs two buffers for a connection via
113 free_pageset(struct tom_data *td, struct pageset *ps) in free_pageset() argument
118 if (ps in free_pageset()
134 struct pageset *ps; ddp_free_orphan_pagesets() local
150 recycle_pageset(struct toepcb * toep,struct pageset * ps) recycle_pageset() argument
319 struct pageset *ps; release_ddp_resources() local
1433 t4_alloc_page_pods_for_ps(struct ppod_region * pr,struct pageset * ps) t4_alloc_page_pods_for_ps() argument
1621 t4_write_page_pods_for_ps(struct adapter * sc,struct sge_wrq * wrq,int tid,struct pageset * ps) t4_write_page_pods_for_ps() argument
2088 prep_pageset(struct adapter * sc,struct toepcb * toep,struct pageset * ps) prep_pageset() argument
2153 pscmp(struct pageset * ps,struct vmspace * vm,vm_offset_t start,int npages,int pgoff,int len) pscmp() argument
2170 struct pageset *ps; hold_aio() local
2328 struct pageset *ps; aio_ddp_requeue() local
[all...]
/freebsd/sys/kern/
H A Dkern_proc.c1 /*-
2 * SPDX-License-Identifier: BSD-3-Clause
109 MALLOC_DEFINE(M_SUBPROC, "subproc", "Proc sub-structures");
195 pidhashlock--; in procinit()
245 KASSERT((p->p_numthreads == 1), in proc_dtor()
247 KASSERT(STAILQ_EMPTY(&p->p_ktr), ("proc_dtor: non-empty p_ktr")); in proc_dtor()
260 if (p->p_ksi != NULL) in proc_dtor()
261 KASSERT(! KSI_ONQ(p->p_ksi), ("SIGCHLD queue")); in proc_dtor()
265 * Initialize type-stable parts of a proc (when newly created).
273 mtx_init(&p->p_mtx, "process lock", NULL, MTX_DEF | MTX_DUPOK | MTX_NEW); in proc_init()
[all …]
/freebsd/sys/contrib/dev/iwlwifi/mld/
H A Dmac80211.c1 // SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause
3 * Copyright (C) 2024-2025 Intel Corporation
26 #include "ftm-initiator.h"
36 #include "iwl-trans.h"
111 struct wiphy *wiphy = mld->wiphy; in iwl_mld_hw_set_addresses()
115 memcpy(mld->addresses[0].addr, mld->nvm_data->hw_addr, ETH_ALEN); in iwl_mld_hw_set_addresses()
116 wiphy->addresses = mld->addresses; in iwl_mld_hw_set_addresses()
117 wiphy->n_addresses = 1; in iwl_mld_hw_set_addresses()
120 if (mld->nvm_data->n_hw_addrs > 1) in iwl_mld_hw_set_addresses()
121 num_addrs = min(mld->nvm_data->n_hw_addrs, in iwl_mld_hw_set_addresses()
[all …]
/freebsd/tests/sys/net/if_ovpn/
H A Dif_ovpn.sh2 # SPDX-License-Identifier: BSD-2-Clause
50 atf_check -s exit:0 -o ignore jexec a ping -c 1 192.0.2.2
54 dev-type tun
57 cipher AES-256-GCM
68 script-security 2
69 auth-user-pass-verify /usr/bin/true via-env
76 dev-type tun
81 auth-user-pass $(atf_get_srcdir)/user.pass
94 atf_check -s exit:0 -o ignore jexec b ping -c 1 198.51.100.1
96 echo 'foo' | jexec b nc -u -w 2 192.0.2.1 1194
[all …]
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DExprEngineCXX.cpp1 //===- ExprEngineCXX.cpp - ExprEngine support for C++ -----------*- C++ -*-===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
11 //===----------------------------------------------------------------------===//
34 const Expr *tempExpr = ME->getSubExpr()->IgnoreParens(); in CreateCXXTemporaryObject()
35 ProgramStateRef state = Pred->getState(); in CreateCXXTemporaryObject()
36 const LocationContext *LCtx = Pred->getLocationContext(); in CreateCXXTemporaryObject()
50 assert(Ctor->getDecl()->isTrivial()); in performTrivialCopy()
51 assert(Ctor->getDecl()->isCopyOrMoveConstructor()); in performTrivialCopy()
52 ThisVal = Ctor->getCXXThisVal(); in performTrivialCopy()
[all …]
/freebsd/contrib/llvm-project/clang/lib/Analysis/
H A DCalledOnceCheck.cpp1 //===- CalledOnceCheck.cpp - Check 'called once' parameters ---------------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
102 // Our analysis is intra-procedural and, while in the perfect world,
132 // Called on one path, not called on another - that's simply
147 // No-return paths should be absolutely transparent for the analysis.
282 /// expressions on our way. Only certain expressions considered "no-op"
292 /// - If expression E is used as a function argument, could we say
301 /// - If expression E is used as a condition, could we say that
317 switch (UO->getOpcode()) { in VisitUnaryOperator()
[all …]
/freebsd/sys/cam/ctl/
H A Dctl.c1 /*-
2 * SPDX-License-Identifier: BSD-2-Clause
4 * Copyright (c) 2003-2009 Silicon Graphics International Corp.
6 * Copyright (c) 2014-2017 Alexander Motin <mav@FreeBSD.org>
102 /*page_length*/sizeof(struct scsi_da_rw_recovery_page) - 2,
116 /*page_length*/sizeof(struct scsi_da_rw_recovery_page) - 2,
130 /*page_length*/sizeof(struct scsi_da_verify_recovery_page) - 2,
139 /*page_length*/sizeof(struct scsi_da_verify_recovery_page) - 2,
148 /*page_length*/sizeof(struct scsi_caching_page) - 2,
164 /*page_length*/sizeof(struct scsi_caching_page) - 2,
[all …]
/freebsd/contrib/wpa/src/drivers/
H A Ddriver.h3 * Copyright (c) 2003-2017, Jouni Malinen <j@w1.fi>
74 * enum reg_change_initiator - Regulatory change initiator
85 * enum reg_type - Regulatory change types
96 * struct hostapd_wmm_rule - WMM regulatory rule
110 * struct hostapd_channel_data - Channel information
114 * chan - Channel number (IEEE 802.11)
119 * freq - Frequency in MHz
124 * flag - Channel flags (HOSTAPD_CHAN_*)
129 * allowed_bw - Allowed channel width bitmask
136 * max_tx_power - Regulatory transmit power limit in dBm
[all …]
/freebsd/contrib/libpcap/
H A Dpcap-dlpi.c24 * <List-tcpdump-workers@subscriptions.pizzolato.net>,
29 * Packet capture routine for DLPI under SunOS 5, HP-UX 9/10/11, and AIX.
33 * - The DLIOCRAW ioctl() is specific to SunOS.
35 * - There is a bug in bufmod(7) such that setting the snapshot
38 * - It might be desirable to use pfmod(7) to filter packets in the
41 * - An older version of the HP-UX DLPI Programmer's Guide, which
45 * http://docs.hp.com/hpux/onlinedocs/B2355-90093/B2355-90093.html
49 * http://h21007.www2.hp.com/dspp/files/unprotected/Drivers/Docs/Refs/B2355-90093.pdf
53 * - The HP-UX 10.x, 11.0, and 11i v1.6 version of the HP-UX DLPI
57 * http://docs.hp.com/en/B2355-90139/index.html
[all …]
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaTemplateDeduction.cpp1 //===- SemaTemplateDeduction.cpp - Template Argument Deduction ------------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
11 //===----------------------------------------------------------------------===//
66 /// These flags can be bitwise-OR'd together.
79 /// are matching in a case where we ignore cv-qualifiers.
84 /// deduction from a template-id of a derived class of the argument type.
87 /// Allow non-dependent types to differ, e.g., when performing
93 /// parameters and arguments in a top-level template argument
145 ArrayRef<TemplateArgument> Ps,
[all …]
H A DSemaDecl.cpp1 //===--- SemaDecl.cpp - Semantic Analysis for Declarations ----------------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
11 //===----------------------------------------------------------------------===//
96 if (!AllowInvalidDecl && ND->isInvalidDecl()) in ValidateCandidate()
109 // An injected-class-name of a class template (specialization) is valid in ValidateCandidate()
110 // as a template or as a non-template. in ValidateCandidate()
113 if (!RD || !RD->isInjectedClassName()) in ValidateCandidate()
115 RD = cast<CXXRecordDecl>(RD->getDeclContext()); in ValidateCandidate()
116 return RD->getDescribedClassTemplate() || in ValidateCandidate()
[all …]
/freebsd/sys/dev/ath/
H A Dif_ath_tx.c1 /*-
2 * SPDX-License-Identifier: BSD-2-Clause
4 * Copyright (c) 2002-2009 Sam Leffler, Errno Consulting
5 * Copyright (c) 2010-2012 Adrian Chadd, Xenion Pty Ltd
116 * What queue to throw the non-QoS TID traffic into
148 if (bf->bf_nseg == 0) in ath_tx_alq_post()
150 n = ((bf->bf_nseg - 1) / sc->sc_tx_nmaps) + 1; in ath_tx_alq_post()
151 for (i = 0, ds = (const char *) bf->bf_desc; in ath_tx_alq_post()
153 i++, ds += sc->sc_tx_desclen) { in ath_tx_alq_post()
154 if_ath_alq_post(&sc->sc_alq, in ath_tx_alq_post()
[all …]
/freebsd/sys/contrib/dev/iwlwifi/mvm/
H A Dmac80211.c1 // SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause
3 * Copyright (C) 2012-2014, 2018-2025 Intel Corporation
4 * Copyright (C) 2013-2015 Intel Mobile Communications GmbH
5 * Copyright (C) 2016-2017 Intel Deutschland GmbH
26 #include "iwl-drv.h"
27 #include "iwl-op-mode.h"
28 #include "iwl-io.h"
31 #include "time-event.h"
32 #include "iwl-nvm-utils.h"
33 #include "iwl-phy-db.h"
[all …]
/freebsd/contrib/ntp/ntpd/
H A Drefclock_parse.c2 …* /src/NTP/REPOSITORY/ntp4-dev/ntpd/refclock_parse.c,v 4.81 2009/05/01 10:15:29 kardel RELEASE_200…
18 * Copyright (c) 1995-2015 by Frank Kardel <kardel <AT> ntp.org>
19 …* Copyright (c) 1989-1994 by Frank Kardel, Friedrich-Alexander Universitaet Erlangen-Nuernberg, Ge…
57 * - Meinberg receiver DCF77 PZF535 (TCXO version) (DCF)
58 * - Meinberg receiver DCF77 PZF535 (OCXO version) (DCF)
59 * - Meinberg receiver DCF77 PZF509 (DCF)
60 * - Meinberg receiver DCF77 AM receivers (e.g. C51) (DCF)
61 * - IGEL CLOCK (DCF)
62 * - ELV DCF7000 (DCF)
63 * - Schmid clock (DCF)
[all …]
/freebsd/sys/contrib/openzfs/tests/zfs-tests/include/
H A Dlibtest.shlib1 # SPDX-License-Identifier: CDDL-1.0
10 # or https://opensource.org/licenses/CDDL-1.0.
30 # Copyright (c) 2017, Open-E Inc. All rights reserved.
46 PWD="$(readlink -f $PWD)"
53 if [ -n "$STF_PATH" ]; then
64 [ "$(printf "$1\n$2" | sort -V | tail -n1)" = "$1" ]
74 [ -z "$ver" ] && case "$UNAME" in
78 # RHEL7: 3.10.0-1160.108.1.el7.x86_64
79 # Fedora 37: 6.5.12-100.fc37.x86_64
80 # Debian 12.6: 6.1.0-22-amd64
[all …]
/freebsd/contrib/sqlite3/
H A Dsqlite3.c17 ** language. The code for the "sqlite3" command-line shell is also in a
20 ** The content in this amalgamation comes from Fossil check-in
54 ** NO_TEST - The branches on this line are not
59 ** OPTIMIZATION-IF-TRUE - This branch is allowed to always be false
63 ** OPTIMIZATION-IF-FALSE - This branch is allowed to always be true
67 ** PREVENTS-HARMLESS-OVERREAD - This branch prevents a buffer overread
72 ** slash-asterisk...asterisk-slash comment marks, with no spaces between the
147 ** 2015-03-02
185 ** large file support, or if the OS is windows, these should be no-ops.
191 ** Large file support can be disabled using the -DSQLITE_DISABLE_LFS switch
[all …]
/freebsd/sys/dev/iwm/
H A Dif_iwmreg.h10 * Copyright(c) 2005 - 2014 Intel Corporation. All rights reserved.
31 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
35 * Copyright(c) 2005 - 2014 Intel Corporation. All rights reserved.
73 * BEGIN iwl-csr.h
81 * low power states due to driver-invoked device resets
82 * (e.g. IWM_CSR_RESET_REG_FLAG_SW_RESET) or uCode-driven power-saving modes.
95 #define IWM_CSR_INT_COALESCING (0x004) /* accum ints, 32-usec units */
109 * 31-16: Reserved
110 * 15-
[all...]
/freebsd/contrib/ncurses/
H A DNEWS1 -------------------------------------------------------------------------------
2 -- Copyright 2018-2023,2024 Thomas E. Dickey --
3 -- Copyright 1998-2017,2018 Free Software Foundation, Inc. --
4 -- --
5 -- Permission is hereby granted, free of charge, to any person obtaining a --
6 -- copy of this software and associated documentation files (the --
7 -- "Software"), to deal in the Software without restriction, including --
8 -- without limitation the rights to use, copy, modify, merge, publish, --
9 -- distribute, distribute with modifications, sublicense, and/or sell copies --
10 -- of the Software, and to permit persons to whom the Software is furnished --
[all …]
/freebsd/crypto/openssl/
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 …]

12