| /freebsd/sys/contrib/ncsw/Peripherals/FM/Port/ |
| H A D | fm_port_im.c | 2 * Copyright 2008-2012 Freescale Semiconductor Inc. 37 @Description FM Port Independent-Mode ... 63 ASSERT_COND(((event & (IM_EV_RX | IM_EV_BSY)) && FmIsMaster(p_FmPort->h_Fm)) || in ImException() 64 !FmIsMaster(p_FmPort->h_Fm)); in ImException() 68 if ((event & IM_EV_BSY) && p_FmPort->f_Exception) in ImException() 69 p_FmPort->f_Exception(p_FmPort->h_App, e_FM_PORT_EXCEPTION_IM_BUSY); in ImException() 83 return (WfqEntryIsQueueEmpty(p_FmPort->im.h_WfqEntry) ? E_OK : E_BUSY); in TxConf() 86 confBdId = savedStartBdId = p_FmPort->im.currBdId; in TxConf() 96 /* case 1: R bit is 0 and Length is set -> confirm! */ in TxConf() 99 if (p_FmPort->im.f_TxConf) in TxConf() [all …]
|
| /freebsd/sys/dev/iscsi/ |
| H A D | icl.c | 1 /*- 2 * SPDX-License-Identifier: BSD-2-Clause 92 const struct icl_module *im; in sysctl_kern_icl_offloads() local 99 sx_slock(&sc->sc_lock); in sysctl_kern_icl_offloads() 100 TAILQ_FOREACH(im, &sc->sc_modules, im_next) { in sysctl_kern_icl_offloads() 101 if (im->im_iser != iser) in sysctl_kern_icl_offloads() 103 if (im != TAILQ_FIRST(&sc->sc_modules)) in sysctl_kern_icl_offloads() 105 sbuf_printf(&sb, "%s", im->im_name); in sysctl_kern_icl_offloads() 107 sx_sunlock(&sc->sc_lock); in sysctl_kern_icl_offloads() 119 struct icl_module *im, *im_max; in icl_find() local [all …]
|
| /freebsd/contrib/mandoc/ |
| H A D | dbm.c | 17 * Map-based version of the mandoc database, for read-only access. 81 * Open a disk-based mandoc database for read-only access. 83 * Return 0 on success. Return -1 and set errno on failure. 89 int32_t im; in dbm_open() local 91 if (dbm_map(fname) == -1) in dbm_open() 92 return -1; in dbm_open() 110 for (im = 0; im < MACRO_MAX; im++) { in dbm_open() 113 fname, im); in dbm_open() 116 nvals[im] = be32toh(*ep); in dbm_open() 117 macros[im] = (struct macro *)++ep; in dbm_open() [all …]
|
| H A D | dba_read.c | 45 int32_t im, ip, iv, npages; in dba_read() local 47 if (dbm_open(fname) == -1) in dba_read() 53 page = dba_page_new(dba->pages, pdata->arch, in dba_read() 54 pdata->desc, pdata->file + 1, *pdata->file); in dba_read() 55 for (cp = pdata->name; *cp != '\0'; cp = strchr(cp, '\0') + 1) in dba_read() 57 for (cp = pdata->sect; *cp != '\0'; cp = strchr(cp, '\0') + 1) in dba_read() 59 if ((cp = pdata->arch) != NULL) in dba_read() 62 cp = pdata->file; in dba_read() 66 for (im = 0; im < MACRO_MAX; im++) { in dba_read() 67 for (iv = 0; iv < dbm_macro_count(im); iv++) { in dba_read() [all …]
|
| H A D | dba.c | 17 * Allocation-based version of the mandoc database, for read-write access. 61 /*** top-level functions **********************************************/ 68 int32_t im; in dba_new() local 71 dba->pages = dba_array_new(npages, DBA_GROW); in dba_new() 72 dba->macros = dba_array_new(MACRO_MAX, 0); in dba_new() 73 for (im = 0; im < MACRO_MAX; im++) { in dba_new() 77 dba_array_set(dba->macro in dba_new() 364 dba_macro_new(struct dba * dba,int32_t im,const char * value,const int32_t * pp) dba_macro_new() argument 386 dba_macro_add(struct dba_array * macros,int32_t im,const char * value,struct dba_array * page) dba_macro_add() argument 407 int32_t im, pos_macros, pos_end; dba_macros_write() local [all...] |
| H A D | mansearch.c | 4 * Copyright (c) 2013-2018 Ingo Schwarze <schwarze@openbsd.org> 97 int argi, chdir_status, getcwd_status, im; in mansearch() local 110 if (search->outkey != NULL) in mansearch() 111 for (im = 0; im < KEY_MAX; im++) in mansearch() 112 if (0 == strcasecmp(search->outkey, in mansearch() 113 mansearch_keynames[im])) { in mansearch() 114 outkey = im; in mansearch() 141 for (i = 0; i < paths->sz; i++) { in mansearch() 142 if (chdir_status && paths->paths[i][0] != '/') { in mansearch() 144 warnx("%s: getcwd: %s", paths->paths[i], buf); in mansearch() [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/ |
| H A D | HexagonBitTracker.cpp | 1 //===- HexagonBitTracker.cpp ----------------------------------------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 45 // Populate the VRX map (VR to extension-type). in HexagonEvaluator() 47 // P is sign- or zero-extended, locate the virtual register holding that in HexagonEvaluator() 48 // parameter and create an entry in the VRX map indicating the type of ex- in HexagonEvaluator() 50 // This is a bit complicated to do accurately, since the memory layout in- in HexagonEvaluator() 51 // formation is necessary to precisely determine whether an aggregate para- in HexagonEvaluator() 53 // is the association between the physical register that is live-in (i.e. in HexagonEvaluator() 56 // register to a formal parameter from Function (since consecutive live-ins in HexagonEvaluator() [all …]
|
| /freebsd/contrib/llvm-project/llvm/tools/llvm-mca/ |
| H A D | CodeRegionGenerator.h | 1 //===----------------------- CodeRegionGenerator.h --------------*- C++ -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 10 /// This file declares classes responsible for generating llvm-mca 11 /// CodeRegions from various types of input. llvm-mca only analyzes CodeRegions, 12 /// so the classes here provide the input-to-CodeRegions translation. 14 //===----------------------------------------------------------------------===// 52 /// LLVM-MCA-BEGIN. It ends a region if it is of the form LLVM-MCA-END. 54 /// LLVM-MCA-BEGIN <name> or LLVM-MCA-END <name>. Subregions are 57 /// active region, LLVM-MCA-END does not need to provide a name. [all …]
|
| /freebsd/sys/dev/isp/ |
| H A D | isp_pci.c | 1 /*- 2 * SPDX-License-Identifier: BSD-2-Clause 4 * Copyright (c) 2009-2020 Alexander Motin <mav@FreeBSD.org> 5 * Copyright (c) 1997-2008 by Matthew Jacob 232 device_set_desc(dev, "Qlogic ISP 2422 PCI FC-AL Adapter"); in isp_pci_probe() 235 device_set_desc(dev, "Qlogic ISP 2432 PCI FC-AL Adapter"); in isp_pci_probe() 238 device_set_desc(dev, "Qlogic ISP 2532 PCI FC-AL Adapter"); in isp_pci_probe() 241 device_set_desc(dev, "Qlogic ISP 5432 PCI FC-AL Adapter"); in isp_pci_probe() 244 device_set_desc(dev, "Qlogic ISP 2031 PCI FC-AL Adapter"); in isp_pci_probe() 291 isp->isp_confopts |= ISP_CFG_NORELOAD; in isp_get_generic_options() [all …]
|
| /freebsd/contrib/blocklist/port/ |
| H A D | _strtoi.h | 3 /*- 52 __TYPE im; in _FUNCNAME() local 67 im = __WRAPPED(nptr, endptr, base); in _FUNCNAME() 81 if (im < lo) { in _FUNCNAME() 86 if (im > hi) { in _FUNCNAME() 92 return im; in _FUNCNAME()
|
| /freebsd/sys/contrib/device-tree/src/arm/arm/ |
| H A D | integratorap-im-pd1.dts | 1 // SPDX-License-Identifier: GPL-2.0 4 * with the IM-PD1 example logical module mounted. 10 model = "ARM Integrator/AP with IM-PD1"; 11 compatible = "arm,integrator-ap"; 13 reserved-memory { 14 #address-cells = <1>; 15 #size-cells = <1>; 19 /* 1 MB of designated video RAM on the IM-PD1 */ 20 compatible = "shared-dma-pool"; 22 no-map; [all …]
|
| /freebsd/contrib/llvm-project/clang/lib/AST/Interp/ |
| H A D | Pointer.cpp | 1 //===--- Pointer.cpp - Types for the constexpr VM ---------------*- C++ -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 25 : Pointer(Pointee, Pointee->getDescriptor()->getMetadataSize(), in Pointer() 26 Pointee->getDescriptor()->getMetadataSize()) {} in Pointer() 36 PointeeStorage.BS.Pointee->addPointer(this); in Pointer() 46 Pointee->addPointer(this); in Pointer() 54 PointeeStorage.BS.Pointee->replacePointer(&P, this); in Pointer() 62 Pointee->removePointer(this); in ~Pointer() 63 Pointee->cleanup(); in ~Pointer() [all …]
|
| /freebsd/sys/contrib/device-tree/Bindings/display/ |
| H A D | multi-inno,mi0283qt.txt | 1 Multi-Inno MI0283QT display panel 4 - compatible: "multi-inno,mi0283qt". 7 all mandatory properties described in ../spi/spi-bus.txt must be specified. 10 - dc-gpios: D/C pin. The presence/absence of this GPIO determines 11 the panel interface mode (IM[3:0] pins): 12 - present: IM=x110 4-wire 8-bit data serial interface 13 - absent: IM=x101 3-wire 9-bit data serial interface 14 - reset-gpios: Reset pin 15 - power-supply: A regulator node for the supply voltage. 16 - backlight: phandle of the backlight device attached to the panel [all …]
|
| /freebsd/contrib/llvm-project/llvm/tools/llvm-mca/Views/ |
| H A D | InstructionInfoView.h | 1 //===--------------------- InstructionInfoView.h ----------------*- C++ -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 32 //===----------------------------------------------------------------------===// 48 #define DEBUG_TYPE "llvm-mca" 61 const InstrumentManager &IM; variable 85 bool ShouldPrintBarriers, const InstrumentManager &IM, in InstructionInfoView() argument 89 PrintBarriers(ShouldPrintBarriers), LoweredInsts(LoweredInsts), IM(IM), in InstructionInfoView()
|
| /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/netbsd-tests/include/ |
| H A D | t_inttypes.c | 3 /*- 33 #include <atf-c.h> 52 intmax_t im = 0; in ATF_TC_BODY() local 86 PRINT(PRIdMAX, im); in ATF_TC_BODY() 101 PRINT(PRIiMAX, im); in ATF_TC_BODY() 177 SCAN(SCNdMAX, im); in ATF_TC_BODY() 192 SCAN(SCNiMAX, im); in ATF_TC_BODY()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/ARM/ |
| H A D | ARMInstrFormats.td | 1 //===-- ARMInstrFormats.td - ARM Instruction Formats -------*- tablegen -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 9 //===----------------------------------------------------------------------===// 15 // ad-hoc solution used to emit machine instruction encodings by our machine 76 // UnaryDP - Indicates this is a unary data processing instruction, i.e. 80 // Xform16Bit - Indicates this Thumb2 instruction may be transformed into 81 // a 16-bit Thumb instruction if certain conditions are met. 84 //===----------------------------------------------------------------------===// 88 // FIXME: Once the JIT is MC-ized, these can go away. [all …]
|
| /freebsd/contrib/netbsd-tests/lib/libm/ |
| H A D | t_casinh.c | 11 #include <atf-c.h> 16 #define IM(z) (((double *)(&z))[1]) macro 32 { +NAN, -5.023E3, +NAN, +NAN}, /* + FE_INVALID optionally raised */ 58 atf_tc_set_md_var(tc, "descr","Check casinh family - special values"); in ATF_TC_HEAD() 68 IM(input) = values[i].input_im; in ATF_TC_BODY() 70 IM(result) = values[i].result_im; in ATF_TC_BODY()
|
| /freebsd/contrib/one-true-awk/testdir/ |
| H A D | latin1 | 2 M�nchen, arbeite als Aufsicht und Postmaster im CIP-Pool der 5 Au�erdem bin ich im Ortsverband M�nchen-Ost des THW f�r die
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/ADT/ |
| H A D | IntervalMap.h | 1 //===- llvm/ADT/IntervalMap.h - A sorted interval map -------- 1791 IntervalMap &IM = *this->map; insertNode() local 1836 IntervalMap &IM = *this->map; insert() local 1923 IntervalMap &IM = *this->map; erase() local 1936 IntervalMap &IM = *this->map; treeErase() local 1970 IntervalMap &IM = *this->map; eraseNode() local [all...] |
| /freebsd/contrib/bc/locales/ |
| H A D | de_CH.utf8.msg | 2 $ SPDX-License-Identifier: BSD-2-Clause 4 $ Copyright (c) 2018-2025 Gavin D. Howard and contributors. 44 2 "Nicht-Ganzzahl-Wert" 53 3 "Zeichenketten-Ende konnte nicht gefunden werden" 54 4 "Kommentar-Ende konnte nicht gefunden werden" 58 8 "Ungültige Druck- ode [all...] |
| H A D | de_AT.ISO8859-1.msg | 2 $ SPDX-License-Identifier: BSD-2-Clause 4 $ Copyright (c) 2018-2025 Gavin D. Howard and contributors. 44 2 "Nicht-Ganzzahl-Wert" 53 3 "Zeichenketten-Ende konnte nicht gefunden werden" 54 4 "Kommentar-Ende konnte nicht gefunden werden" 58 8 "Ung�ltige Druck- ode [all...] |
| H A D | de_AT.ISO8859-15.msg | 2 $ SPDX-License-Identifier: BSD-2-Clause 4 $ Copyright (c) 2018-2025 Gavin D. Howard and contributors. 44 2 "Nicht-Ganzzahl-Wert" 53 3 "Zeichenketten-Ende konnte nicht gefunden werden" 54 4 "Kommentar-Ende konnte nicht gefunden werden" 58 8 "Ung�ltige Druck- ode [all...] |
| H A D | de_AT.UTF-8.msg | 2 $ SPDX-License-Identifier: BSD-2-Clause 4 $ Copyright (c) 2018-2025 Gavin D. Howard and contributors. 44 2 "Nicht-Ganzzahl-Wert" 53 3 "Zeichenketten-Ende konnte nicht gefunden werden" 54 4 "Kommentar-Ende konnte nicht gefunden werden" 58 8 "Ungültige Druck- ode [all...] |
| H A D | de_AT.utf8.msg | 2 $ SPDX-License-Identifier: BSD-2-Clause 4 $ Copyright (c) 2018-2025 Gavin D. Howard and contributors. 44 2 "Nicht-Ganzzahl-Wert" 53 3 "Zeichenketten-Ende konnte nicht gefunden werden" 54 4 "Kommentar-Ende konnte nicht gefunden werden" 58 8 "Ungültige Druck- ode [all...] |