| /freebsd/sys/contrib/device-tree/Bindings/sound/ |
| H A D | cs42l42.txt | 5 - compatible : "cirrus,cs42l42" 7 - reg : the I2C address of the device for I2C. 9 - VP-supply, VCP-supply, VD_FILT-supply, VL-supply, VA-supply : 15 - reset-gpios : a GPIO spec for the reset pin. If specified, it will be 18 - interrupts : IRQ line info CS42L42. 19 (See Documentation/devicetree/bindings/interrupt-controller/interrupts.txt 22 - cirrus,ts-inv : Boolean property. Sets the behaviour of the jack plug 29 This is "normal tip sense (TS)" in the datasheet. 31 - cirrus,ts-dbnc-rise : Debounce the rising edge of TIP_SENSE_PLUG. With no 34 0 - 0ms, [all …]
|
| H A D | cirrus,cs42l42.yaml | 1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 3 --- 5 $schema: http://devicetree.org/meta-schemas/core.yaml# 10 - patches@opensource.cirrus.com 13 The CS42L42 is a low-power audio codec designed for portable applications. 14 It provides a high-dynamic range, stereo DAC for audio playback and a mono 15 high-dynamic-range ADC for audio capture. There is an integrated headset 21 - cirrus,cs42l42 22 - cirrus,cs42l83 29 VP-supply: [all …]
|
| /freebsd/sys/amd64/amd64/ |
| H A D | fpu.c | 1 /*- 2 * SPDX-License-Identifier: BSD-3-Clause 149 * must be 64-byte aligned. 165 int use_xsave; /* non-static for cpu_switch.S */ 321 * read-only before cpu_startup(). in fpuinit_bsp1() 423 XSAVE_AREA_ALIGN - 1, 0); in fpuinitstate() 437 if (fpu_initialstate->sv_env.en_mxcsr_mask) in fpuinitstate() 438 cpu_mxcsr_mask = fpu_initialstate->sv_env.en_mxcsr_mask; in fpuinitstate() 450 bzero(fpu_initialstate->sv_fp, sizeof(fpu_initialstate->sv_fp)); in fpuinitstate() 451 bzero(fpu_initialstate->sv_xmm, sizeof(fpu_initialstate->sv_xmm)); in fpuinitstate() [all …]
|
| H A D | pmap.c | 1 /*- 2 * SPDX-License-Identifier: BSD-4-Clause 12 * Copyright (c) 2005-2010 Alan L. Cox <alc@cs.rice.edu> 47 /*- 49 * Copyright (c) 2014-2020 The FreeBSD Foundation 55 * DARPA/SPAWAR contract N66001-01-C-8035 ("CBOSS"), as part of the DARPA 92 * this module may throw away valid virtual-to-physical 94 * of virtual-to-physical mappings must be done as 98 * make virtual-to-physical map invalidates expensive, 180 return ((pmap->pm_type == PT_EPT) || (pmap->pm_type == PT_RVI)); in pmap_type_guest() [all …]
|
| /freebsd/sys/i386/i386/ |
| H A D | npx.c | 1 /*- 126 (thread)->td_pcb->pcb_save->sv_xmm.sv_env.en_cw : \ 127 (thread)->td_pcb->pcb_save->sv_87.sv_env.en_cw) 130 (thread)->td_pcb->pcb_save->sv_xmm.sv_env.en_sw : \ 131 (thread)->td_pcb->pcb_save->sv_87.sv_env.en_sw) 134 (savefpu)->sv_xmm.sv_env.en_cw = (value); \ 136 (savefpu)->sv_87.sv_env.en_cw = (value); \ 146 * must be 64-byte aligned. 448 XSAVE_AREA_ALIGN - 1, 0); in npxinitstate() 467 if (npx_initialstate->sv_xmm.sv_env.en_mxcsr_mask) in npxinitstate() [all …]
|
| /freebsd/contrib/atf/atf-sh/ |
| H A D | atf-check.cpp | 47 #include "atf-c++/check.hpp" 48 #include "atf-c++/detail/application.hpp" 49 #include "atf-c++/detail/auto_array.hpp" 50 #include "atf-c++/detail/env.hpp" 51 #include "atf-c++/detail/exceptions.hpp" 52 #include "atf-c++/detail/fs.hpp" 53 #include "atf-c++/detail/process.hpp" 54 #include "atf-c++/detail/sanity.hpp" 55 #include "atf-c++/detail/text.hpp" 61 // ------------------------------------------------------------------------ [all …]
|
| /freebsd/secure/lib/libcrypto/man/man7/ |
| H A D | ossl-guide-migration.7 | 1 .\" -*- mode: troff; coding: utf-8 -*- 57 .IX Title "OSSL-GUIDE-MIGRATION 7ossl" 58 .TH OSSL-GUIDE-MIGRATION 7ossl 2025-09-30 3.5.4 OpenSSL 64 ossl\-guide\-migration, migration_guide 65 \&\- OpenSSL Guide: Migrating from older OpenSSL versions 80 The FIPS provider in OpenSSL 3.1 includes some non-FIPS validated algorithms, 113 licenses <https://www.openssl.org/source/license-openssl-ssleay.txt> 115 Apache License v2 <https://www.openssl.org/source/apache-license-2.0.txt>. 133 at configuration time using the \f(CW\*(C`enable\-fips\*(C'\fR option. If it is enabled, 182 See \fBOSSL_PROVIDER\-legacy\fR\|(7) for a complete list of algorithms. [all …]
|
| /freebsd/contrib/lua/src/ |
| H A D | lgc.c | 72 (x->marked = cast_byte((x->marked & ~maskcolors) | luaC_white(g))) 75 #define set2gray(x) resetbits(x->marked, maskcolors) 80 (x->marked = cast_byte((x->marked & ~WHITEBITS) | bitmask(BLACKBIT))) 94 #define markvalue(g,o) { checkliveness(g->mainthread,o); \ 126 switch (o->tt) { in getgclist() 127 case LUA_VTABLE: return &gco2t(o)->gclist; in getgclist() 128 case LUA_VLCL: return &gco2lcl(o)->gclist; in getgclist() 129 case LUA_VCCL: return &gco2ccl(o)->gclist; in getgclist() 130 case LUA_VTHREAD: return &gco2th(o)->gclist; in getgclist() 131 case LUA_VPROTO: return &gco2p(o)->gclist; in getgclist() [all …]
|
| H A D | lvm.c | 48 /* limit for table tag-method chains (to avoid infinite loops) */ 71 >> (NBM - (3 * (NBM / 4)))) > 0 76 /* check whether 'i' is in the interval [-MAXINTFITSF, MAXINTFITSF] */ 228 count = l_castS2U(limit) - l_castS2U(init); in forprep() 233 count = l_castS2U(init) - l_castS2U(limit); in forprep() 235 count /= l_castS2U(-(step + 1)) + 1u; in forprep() 307 tm = fasttm(L, hvalue(t)->metatable, TM_INDEX); /* table's metamethod */ in luaV_finishget() 344 tm = fasttm(L, h->metatable, TM_NEWINDEX); /* get metamethod */ in luaV_finishset() 346 sethvalue2s(L, L->top.p, h); /* anchor 't' */ in luaV_finishset() 347 L->top.p++; /* assume EXTRA_STACK */ in luaV_finishset() [all …]
|
| /freebsd/crypto/openssl/doc/man7/ |
| H A D | ossl-guide-migration.pod | 5 ossl-guide-migration, migration_guide 6 - OpenSSL Guide: Migrating from older OpenSSL versions 24 The FIPS provider in OpenSSL 3.1 includes some non-FIPS validated algorithms, 58 licenses|https://www.openssl.org/source/license-openssl-ssleay.txt> 60 L<Apache License v2|https://www.openssl.org/source/apache-license-2.0.txt>. 77 at configuration time using the C<enable-fips> option. If it is enabled, 124 See L<OSSL_PROVIDER-legacy(7)> for a complete list of algorithms. 152 Engine-backed keys can be loaded via custom B<OSSL_STORE> implementation. 157 To prefer the provider-based hardware offload, you can specify the default 160 Setting engine-based or application-based default low-level crypto method such [all …]
|
| /freebsd/contrib/ntp/ntpd/ |
| H A D | refclock_nmea.c | 2 * refclock_nmea.c - clock driver for an NMEA GPS CLOCK 51 * This driver supports NMEA-compatible GPS receivers 71 * bit 0 - enables RMC (1) 72 * bit 1 - enables GGA (2) 73 * bit 2 - enables GLL (4) 74 * bit 3 - enables ZDA (8) - Standard Time & Date 75 * bit 3 - enables ZDG (8) - Accord GPS Clock's custom sentence with GPS time 80 * bit 4/5/6 - select 1500 struct timespec ts; _parse_frac() local 1611 parse_qual(nmea_data * rd,int idx,char tag,int inv) parse_qual() argument [all...] |
| /freebsd/contrib/file/tests/ |
| H A D | matilde.arm.testfile | 3 _��Ta0�c4e�z����P<��s��`8A{1e�d!�Tkr(��n���u�RP<Rby��z��z�;+~��*�s�'�7q#�ڰ<p�l���-*�Bm… 4 R��0-as�Aꏾ�<�H���Ҵ�_d)Q����A����Kp���@< <J?�9a�V�9u8�9��Fp�ך�"��P< 9 !�:���=K����[��<Ɖ�lH��!L��-��I��w�9:y��<�U'�ԫ�Lc�\vyY>�Ԫ�ϧ�4p<&@i�~#�������)J$�� 10 …(�\�W�!"-@��C]�4�<&F����*�2;[��v�w�>�=�����<!x@;����e�R!���F�iW�M���0<{��~a�A�ʞ�L… 11 …$o��H �<,��~kT��ܩZݍ�\�cBP�B:�<6BmЩ���2Z��8Ђ�ׯ�^��lFaP< ���I�a-��0�Z���p~iz�PP��� … 19 -k�)�����v]<k{�i�9%������9>�]���H��`�@<=�4�ve#�O��r��} 20 …->Å�C<T��@<07�H�O����k `��Z�;]��;�X��@<�"d�k��䖖�!�Q����8�|3Q��</{����.lb�����C$�)F��… 23 …-��W���P^�TZcA���3<o��l-"������j��Ʈ����i��D��+)�<6{2�a�$@�eb���������-Ѽg�n_ < �R��f��r…
|
| /freebsd/contrib/libxo/xohtml/external/ |
| H A D | jquery.js | 14 * Date: Thu Nov 3 16:18:21 2011 -0400 41 quickExpr = /^(?:[^#<]*(<[\w\W]+>)[^>]*$|#([\w\-]*)$)/, 43 // Check if a string has a non-whitespace character in it 58 rvalidescape = /\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g, 59 rvalidtokens = /"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g, 69 rdashAlpha = /-([a-z]|[0-9])/ig, 70 rmsPrefix = /^-ms-/, 97 // [[Class]] -> type pairs 129 …if ( selector.charAt(0) === "<" && selector.charAt( selector.length - 1 ) === ">" && selector.leng… 140 // HANDLE: $(html) -> $(array) [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/ |
| H A D | Attributor.cpp | 1 //===- Attributor.cpp - Module-wide attribute deduction -------------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 14 //===----------------------------------------------------------------------===// 67 #define VERBOSE_DEBUG_TYPE DEBUG_TYPE "-verbose" 69 DEBUG_COUNTER(ManifestDBGCounter, "attributor-manifest", 87 // In the LLVM-TS and SPEC2006, 32 seems to not induce compile time overheads 92 // iterations: bottom-up and top-down. 94 SetFixpointIterations("attributor-max-iterations", cl::Hidden, 99 MaxSpecializationPerCB("attributor-max-specializations-per-call-base", [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/ARM/AsmParser/ |
| H A D | ARMAsmParser.cpp | 1 //===- ARMAsmParser.cpp - Parse ARM assembly to MCInst instructions -------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 71 #define DEBUG_TYPE "asm-parser" 81 "arm-implicit-it", cl::init(ImplicitItModeTy::ARMOnly), 92 static cl::opt<bool> AddBuildAttributes("arm-add-build-attributes", 101 // of Mask, and so on downwards. So (5 - Position) will shift the in extractITMaskBit() 102 // right bit down to bit 0, including the always-0 bit at bit 4 for in extractITMaskBit() 104 return (Mask >> (5 - Position) & 1); in extractITMaskBit() 159 if (PI != PE && (PII == PIE || PI->getPointer() < PII->getPointer())) in emitPersonalityLocNotes() [all …]
|
| /freebsd/sys/dev/cxgbe/firmware/ |
| H A D | t4fw_interface.h | 1 /*- 2 * Copyright (c) 2012-2017, 2025 Chelsio Communications. 39 FW_ENOEXEC = 8, /* exec format error; inv microcode */ 184 /* atomic flag (hi) - firmware encapsulates CPLs in CPL_BARRIER 193 /* flush flag (hi) - firmware flushes flushable work request buffered 203 /* completion flag (hi) - firmware generates a cpl_fw6_ack 244 /* length in units of 16-bytes (lo) 270 * Encodings: TPL - Compressed TUPLE for filter in addition to 4-tuple 271 * FR - FRAGMENT, FC - FCoE, MT - MPS MATCH TYPE, M - MPS MATCH, 272 * E - Ethertype, P - Port, PR - Protocol, T - TOS, IV - Inner VLAN, [all …]
|