/freebsd/sys/contrib/device-tree/Bindings/input/ |
H A D | iqs269a.yaml | 1 # SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause) 3 --- 5 $schema: http://devicetree.org/meta-schemas/core.yaml# 7 title: Azoteq IQS269A Capacitive Touch Controlle [all...] |
H A D | iqs626a.yaml | 1 # SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause) 3 --- 5 $schema: http://devicetree.org/meta-schemas/core.yaml# 7 title: Azoteq IQS626A Capacitive Touch Controller 10 - Jeff LaBundy <jeff@labundy.com> 13 The Azoteq IQS626A is a 14-channel capacitive touch controller that features 14 additional Hall-effect and inductive sensing capabilities. 19 - $ref: touchscreen/touchscreen.yaml# 31 "#address-cells": 34 "#size-cells": [all …]
|
/freebsd/sys/dev/ath/ath_hal/ |
H A D | ah_desc.h | 1 /*- 2 * SPDX-License-Identifier: ISC 4 * Copyright (c) 2002-2008 Sam Leffler, Errno Consulting 5 * Copyright (c) 2002-2008 Atheros Communications, Inc. 13 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 30 * should be used only if non-zero. 55 int8_t ts_rssi_ctl[3]; /* tx ack RSSI [ctl, chain 0-2] */ 56 int8_t ts_rssi_ext[3]; /* tx ack RSSI [ext, chain 0-2] */ 89 * Newer hardware supports a full 32-bits; use HAL_CAP_32TSTAMP to 95 * -96dBm absolute power in a 20MHz channel. [all …]
|
/freebsd/tools/test/stress2/misc/ |
H A D | fsck.sh | 4 # SPDX-License-Identifier: BSD-2-Clause 20 # ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 36 # https://people.freebsd.org/~pho/stress/log/fsck-4.txt 42 [ `id -u ` -ne 0 ] && echo "Must be root!" && exit 1 44 cc -o /tmp/flip -Wall -Wextra -O2 ../tools/flip.c || exit 1 46 set -e 51 mkdir -p $mp1 $mp2 64 [ "$newfs_flags" = "-j" ] && 68 mount | grep "on $mp1 " | grep -q /dev/md && umount -f $mp1 69 [ -c /dev/md$u1 ] && mdconfig -d -u $u1 [all …]
|
H A D | fsck8.sh | 4 # SPDX-License-Identifier: BSD-2-Clause 20 # ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 33 # FreeBSD 14.0-CURRENT #0 main-n255602-51adf913e8815: Fri May 13 07:55:32 CEST 2022 38 [ `id -u ` -ne 0 ] && echo "Must be root!" && exit 1 40 cc -o /tmp/flip -Wall -Wextra -O2 ../tools/flip.c || exit 1 42 set -e 47 mkdir -p $mp1 $mp2 58 [ `jot -r 1 0 1` -eq 0 ] && newfs_flags='-O 1' || newfs_flags='-O 2 -U' 60 mount | grep "on $mp1 " | grep -q /dev/md && umount -f $mp1 61 [ -c /dev/md$u1 ] && mdconfig -d -u $u1 [all …]
|
/freebsd/contrib/ncurses/include/ |
H A D | Caps.keys | 2 # Copyright 2019-2023,2024 Thomas E. Dickey # 3 # Copyright 2001-2015,2016 Free Software Foundation, Inc. # 18 # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL # 36 # is illustrates an experimental extension to describe alt-, shift- and 37 # control-modifiers applied to function and normal keys, as done on IBM pc's. 45 # This file has three major sections; a standard-capabilities table, two 46 # extension-capability tables, and a section of aliases declarations. 55 # Column 5: KEY_xxx name, if any, `-' otherwise 56 # Column 6: value for KEY_xxx name, if any, `-' otherwise 58 # translations, `-' otherwise [all …]
|
/freebsd/tools/tools/nanobsd/embedded/ |
H A D | common | 2 #- 4 # Copyright (c) 2010-2011 iXsystems, Inc. 18 # ARE DISCLAIMED. IN NO EVENT SHALL iXsystems, Inc OR CONTRIBUTORS BE LIABLE 40 # o mtools still needed because we have no makefs -t msdos 59 # for many files. Should move to mtree-dedup.awk. 64 # o common tooling for creating images for odd-ball platforms 70 if [ -z $NANO_NAME ]; then 77 NANO_BOOT2CFG="-h -S115200" 83 NANO_PMAKE="make -j $(sysctl -n hw.ncpu)" 89 if [ -z ${NANO_CPUTYPE} ]; then [all …]
|
/freebsd/share/misc/ |
H A D | usb_vendors | 6 # http://www.linux-usb.org/usb-ids.html 7 # or send entries as patches (diff -u old new) in the 10 # http://www.linux-usb.org/usb.ids 13 # Date: 2024-12-04 20:34:02 20 # device device_name <-- single tab 21 # interface interface_name <-- two tabs 35 073d Mini Multimedia 2.4GHz Wireless Keyboard with Touch Pad 38 5301 GW-US54ZGL 802.11bg 54 145f NW-3100 802.11b/g 54Mbps Wireless Network Adapter [zd1211] 62 0200 TP-Link [all …]
|
/freebsd/sys/dev/usb/controller/ |
H A D | uhci.c | 1 /*- 2 * SPDX-License-Identifier: BSD-2-Clause 20 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 103 #define UBARR(sc) bus_space_barrier((sc)->sc_io_tag, (sc)->sc_io_hdl, 0, (sc)->sc_io_size, \ 106 do { UBARR(sc); bus_space_write_1((sc)->sc_io_tag, (sc)->sc_io_hdl, (r), (x)); \ 109 do { UBARR(sc); bus_space_write_2((sc)->sc_io_tag, (sc)->sc_io_hdl, (r), (x)); \ 112 do { UBARR(sc); bus_space_write_4((sc)->sc_io_tag, (sc)->sc_io_hdl, (r), (x)); \ 114 #define UREAD1(sc, r) (UBARR(sc), bus_space_read_1((sc)->sc_io_tag, (sc)->sc_io_hdl, (r))) 115 #define UREAD2(sc, r) (UBARR(sc), bus_space_read_2((sc)->sc_io_tag, (sc)->sc_io_hdl, (r))) 116 #define UREAD4(sc, r) (UBARR(sc), bus_space_read_4((sc)->sc_io_tag, (sc)->sc_io_hdl, (r))) [all …]
|
/freebsd/contrib/ncurses/misc/ |
H A D | terminfo.src | 7 # bug-ncurses@gnu.org 19 # under the ncurses MIT-style license. That was the effect of the agreement 33 # some portions of the data are derivative work under a compatible MIT-style 36 #------------------------------------------------------------------------------ 37 # https://invisible-island.net/ncurses/ncurses.faq.html#terminfo_copying 38 # https://invisible-island.net/personal/copyrights.html#removing_notes 39 #------------------------------------------------------------------------------ 48 # Please e-mail changes to terminfo@thyrsus.com; the old termcap@berkeley.edu 54 # This file describes the capabilities of various character-cell terminals, 55 # as needed by software such as screen-oriented editors. [all …]
|
/freebsd/contrib/ncurses/doc/ |
H A D | ncurses-intro.doc | 5 by Eric S. Raymond and Zeyd M. Ben-Halim 31 o Low-Level Capability Access 71 + Variable-Sized Fields 84 o Inter-Field Navigation Requests 85 o Intra-Field Navigation Requests 117 The curses package is a subroutine library for terminal-independent 118 screen-painting and input-event handling which presents a high level 128 the advantage of (a) back-portability to character-cell terminals, and 129 (b) simplicity. For an application that does not require bit-mapped 137 provide screen-handling for the vi editor; these used the termcap [all …]
|
/freebsd/sys/dev/usb/ |
H A D | usbdevs | 3 /*- 4 * Copyright (c) 1998-2004 The NetBSD Foundation, Inc. 23 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS 36 * USB.org publishes a VID list of USB-IF member companies at 89 vendor FUJITSUICL 0x0406 Fujitsu-ICL 165 vendor IODATA 0x04bb I-O Data 175 vendor LITEON 0x04ca Lite-On Technology 249 vendor ETEK 0x056c e-TEK Labs 255 vendor YEDATA 0x057b Y-E Data 270 vendor ATREND 0x059c A-Trend Technology [all …]
|
/freebsd/sys/kern/ |
H A D | kern_shutdown.c | 1 /*- 2 * SPDX-License-Identifier: BSD-3-Clause 27 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 81 #include <crypto/rijndael/rijndael-api-fst.h> 244 /* Context information for dump-debuggers, saved by the dump_savectx() macro. */ 305 error = mac_system_check_reboot(td->td_ucre in sys_reboot() [all...] |
/freebsd/contrib/ncurses/doc/html/ |
H A D | ncurses-intro.html | 1 <!-- 2 $Id: ncurses-intro.html,v 1.57 2022/11/26 19:33:46 tom Exp $ 4 * Copyright 2019-2020,2022 Thomas E. Dickey * 5 * Copyright 2000-2013,2017 Free Software Foundation, Inc. * 21 * IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, * 31 --> 32 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"> 38 <link rel="author" href="mailto:bugs-ncurses@gnu.org"> 39 <meta http-equiv="Content-Type" content= 40 "text/html; charset=us-ascii"> [all …]
|
/freebsd/sys/conf/ |
H A D | NOTES | 2 # NOTES -- Lines that can be cut/pasted into kernel and hints configs. 11 # Please use ``make LINT'' to create an old-style LINT file if you want to 12 # do kernel test-builds. 48 # auto-size based on physical memory. 66 # after most other flags. Here we use it to inhibit use of non-optimal 67 # gcc built-in functions (e.g., memcmp). 70 # The following is equivalent to 'config -g KERNELNAME' and creates 71 # 'kernel.debug' compiled with -g debugging as well as a normal 81 makeoptions CONF_CFLAGS=-fno-builtin #Don't allow use of memcmp, etc. 82 #makeoptions DEBUG=-g #Build kernel with gdb(1) debug symbols [all …]
|
/freebsd/contrib/llvm-project/lldb/source/Core/ |
H A D | IOHandlerCursesGUI.cpp | 1 //===-- IOHandlerCursesGUI.cpp --------------------------------------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 35 #include "lldb/lldb-forward.h" 111 type summary add -s "x=${var.x}, y=${var.y}" curses::Point 112 type summary add -s "w=${var.width}, h=${var.height}" curses::Size 113 type summary add -s "${var.origin%S} ${var.size%S}" curses::Rect 185 size.width -= w * 2; in Inset() 189 size.height -= h * 2; in Inset() 202 --size.height; in MakeStatusBar() [all …]
|
/freebsd/sys/netinet/tcp_stacks/ |
H A D | rack.c | 1 /*- 2 * Copyright (c) 2016-2020 Netflix, Inc. 16 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 162 * - Matt Mathis's Rate Halving which slowly drops 165 * - Yuchung Cheng's RACK TCP (for which its named) that 168 * - Reorder Detection of RFC4737 and the Tail-Loss probe draft 186 * TCP output is also over-written with a new version since it 191 static int32_t rack_tlp_limit = 2; /* No more than 2 TLPs w-out new data */ 194 static int32_t rack_reorder_fade = 60000000; /* 0 - never fade, def 60,000,000 195 * - 60 seconds */ [all …]
|
/freebsd/share/dict/ |
H A D | web2a | 12 A-b-c book 13 A-b-c method 14 abdomino-uterotomy 15 Abdul-baha 16 a-be 20 able-bodied 21 able-bodiedness 22 able-minded 23 able-mindedness 27 Abor-miri [all …]
|
H A D | web2 | 6012 alt 65920 event 99810 Jean-Christophe 99811 Jean-Pierre 205118 touch
|
/freebsd/sys/dev/ixl/ |
H A D | i40e_common.c | 3 Copyright (c) 2013-2018, Intel Corporation 23 ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE 41 * i40e_set_mac_type - Sets MAC type 53 if (hw->vendor_id == I40E_INTEL_VENDOR_ID) { in i40e_set_mac_type() 54 switch (hw->device_id) { in i40e_set_mac_type() 75 hw->mac.type = I40E_MAC_XL710; in i40e_set_mac_type() 83 hw->mac.type = I40E_MAC_X722; in i40e_set_mac_type() 86 hw->mac.type = I40E_MAC_X722_VF; in i40e_set_mac_type() 91 hw->mac.type = I40E_MAC_VF; in i40e_set_mac_type() 94 hw->mac.type = I40E_MAC_GENERIC; in i40e_set_mac_type() [all …]
|
/freebsd/sys/contrib/dev/ath/ath_hal/ar9300/ |
H A D | ar9300_reset.c | 10 * AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, 121 ahp->ah_hwp = HAL_TRUE_CHIP; in ar9300_attach_hw_platform() 181 /* Treat like legacy hardware. Do not touch the MFP registers. */ in ar9300_init_mfp() 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() [all …]
|
/freebsd/contrib/ncurses/ |
H A D | NEWS | 1 ------------------------------------------------------------------------------- 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/share/termcap/ |
H A D | termcap | 23 # ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 38 # << EOH - after reordering, above header lines survive and this line dies >> 50 # Terminal names look like <manufacturer> <model> - <modes/options> 61 # w Wide - in 132 column mode. 63 # na No arrow keys - termcap ignores arrow keys which are 85 # Comments in this file begin with # - they cannot appear in the middle 93 # cap_mkdb -f /usr/share/misc/termcap /etc/termcap 102 # # -------------------------------- 110 # It has been tried in a minimal way -- the Agile did not blow up! 112 # Anyone who tries it and finds it wanting should get in touch with: [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/ |
H A D | X86ISelLowering.cpp | 1 //===-- X86ISelLowering.cpp - X86 DAG Lowering Implementation -------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 12 //===----------------------------------------------------------------------===// 71 #define DEBUG_TYPE "x86-isel" 74 "x86-experimental-pref-innermost-loop-alignment", cl::init(4), 78 "alignment set by x86-experimental-pref-loop-alignment."), 82 "x86-br-merging-base-cost", cl::init(2), 88 "will be merged, and above which conditionals will be split. Set to -1 " 93 "x86-br-merging-ccmp-bias", cl::init(6), [all …]
|