Home
last modified time | relevance | path

Searched +full:dc +full:- +full:dc (Results 1 – 25 of 1180) sorted by relevance

12345678910>>...48

/freebsd/usr.sbin/dconschat/
H A Ddconschat.c1 /*-
2 * SPDX-License-Identifier: BSD-4-Clause
87 #define IS_CONSOLE(p) ((p)->port == DCONS_CON)
88 #define IS_GDB(p) ((p)->port == DCONS_GDB)
132 dread(struct dcons_state *dc, void *buf, size_t n, off_t offset) in dread() argument
134 switch (dc->type) { in dread()
136 return (pread(dc->fd, buf, n, offset)); in dread()
138 return (kvm_read(dc->kd, offset, buf, n)); in dread()
140 return (-1); in dread()
144 dwrite(struct dcons_state *dc, void *buf, size_t n, off_t offset) in dwrite() argument
[all …]
/freebsd/sys/contrib/device-tree/Bindings/mfd/
H A Daxp20x.txt4 axp152 (X-Powers)
5 axp202 (X-Powers)
6 axp209 (X-Powers)
7 axp221 (X-Powers)
8 axp223 (X-Powers)
9 axp803 (X-Powers)
10 axp806 (X-Powers)
11 axp809 (X-Powers)
12 axp813 (X-Powers)
20 - compatible: should be one of:
[all …]
/freebsd/contrib/llvm-project/llvm/lib/MC/MCDisassembler/
H A DDisassembler.cpp1 //===-- lib/MC/Disassembler.cpp - Disassembler Public C Interface -------
103 LLVMDisasmContext *DC = new LLVMDisasmContext( LLVMCreateDisasmCPUFeatures() local
133 LLVMDisasmContext *DC = static_cast<LLVMDisasmContext *>(DCR); LLVMDisasmDispose() local
139 emitComments(LLVMDisasmContext * DC,formatted_raw_ostream & FormattedOS) emitComments() argument
169 getItineraryLatency(LLVMDisasmContext * DC,const MCInst & Inst) getItineraryLatency() argument
194 getLatency(LLVMDisasmContext * DC,const MCInst & Inst) getLatency() argument
230 emitLatency(LLVMDisasmContext * DC,const MCInst & Inst) emitLatency() argument
255 LLVMDisasmContext *DC = static_cast<LLVMDisasmContext *>(DCR); LLVMDisasmInstruction() local
304 LLVMDisasmContext *DC = static_cast<LLVMDisasmContext *>(DCR); LLVMSetDisasmOptions() local
311 LLVMDisasmContext *DC = static_cast<LLVMDisasmContext *>(DCR); LLVMSetDisasmOptions() local
318 LLVMDisasmContext *DC = static_cast<LLVMDisasmContext *>(DCR); LLVMSetDisasmOptions() local
334 LLVMDisasmContext *DC = static_cast<LLVMDisasmContext *>(DCR); LLVMSetDisasmOptions() local
341 LLVMDisasmContext *DC = static_cast<LLVMDisasmContext *>(DCR); LLVMSetDisasmOptions() local
[all...]
/freebsd/sys/dev/dcons/
H A Ddcons.c1 /*-
2 * SPDX-License-Identifier: BSD-4-Clause
49 dcons_ischar(struct dcons_softc *dc) in dcons_ischar() argument
54 ch = &dc->i; in dcons_ischar()
56 ptr = ntohl(*ch->ptr); in dcons_ischar()
59 if (gen == ch->gen && pos == ch->pos) in dcons_ischar()
62 next_gen = DCONS_NEXT_GEN(ch->gen); in dcons_ischar()
64 if ((gen != ch->gen && gen != next_gen) in dcons_ischar()
65 || (gen == ch->gen && pos < ch->pos)) { in dcons_ischar()
68 ch->gen = gen; in dcons_ischar()
[all …]
H A Ddcons_os.c1 /*-
2 * SPDX-License-Identifier: BSD-4-Clause
88 #define DCONS_FORCE_CONSOLE 0 /* Mostly for FreeBSD-4/DragonFly */
151 dcons_check_break(struct dcons_softc *dc, int c) in dcons_check_break() argument
158 if ((dc->flags & DC_GDB) != 0 && gdb_cur == &dcons_gdb_dbgport) in dcons_check_break()
159 kdb_alt_break_gdb(c, &dc in dcons_check_break()
167 dcons_check_break(dc,c) global() argument
171 dcons_os_checkc_nopoll(struct dcons_softc * dc) dcons_os_checkc_nopoll() argument
187 dcons_os_checkc(struct dcons_softc * dc) dcons_os_checkc() argument
194 dcons_os_putc(struct dcons_softc * dc,int c) dcons_os_putc() argument
216 struct dcons_softc *dc; dcons_outwakeup() local
229 struct dcons_softc *dc; dcons_timeout() local
287 struct dcons_softc *dc = (struct dcons_softc *)cp->cn_arg; dcons_cngetc() local
294 struct dcons_softc *dc = (struct dcons_softc *)cp->cn_arg; dcons_cnputc() local
378 struct dcons_softc *dc; dcons_attach_port() local
407 struct dcons_softc *dc; dcons_detach() local
468 dcons_os_getc(struct dcons_softc * dc) dcons_os_getc() argument
500 struct dcons_softc *dc = &sc[DCONS_GDB]; dcons_dbg_putc() local
507 struct dcons_softc *dc = &sc[DCONS_GDB]; dcons_dbg_getc() local
[all...]
/freebsd/libexec/rc/rc.d/
H A Dserial35 # dtrwait 300 drainwait `sysctl -n kern.drainwait`
47 dc=$1; shift # device name character
48 drainwait=`sysctl -n kern.tty_drainwait`
52 comcontrol /dev/tty${dc}${i} dtrwait 300 drainwait $drainwait
53 stty < /dev/tty${dc}${i}.init -clocal crtscts hupcl 115200 reprint ^R
54 stty < /dev/tty${dc}${i}.lock -clocal -crtscts -hupcl 0
55 stty < /dev/cua${dc}${i}.init -clocal crtscts hupcl 115200 reprint ^R
56 stty < /dev/cua${dc}${i}.lock -clocal -crtscts -hupcl 0
63 dc=$1; shift
68 stty < /dev/tty${dc}${i}.init reprint undef
[all …]
/freebsd/sys/contrib/device-tree/Bindings/iio/dac/
H A Dad5755.txt1 * Analog Devices AD5755 IIO Multi-Channel DAC Linux Driver
4 - compatible: Has to contain one of the following:
6 adi,ad5755-1
11 - reg: spi chip select number for the device
12 - spi-cpha or spi-cpol: is the only modes that is supported
15 - spi-max-frequency: Definition as per
16 Documentation/devicetree/bindings/spi/spi-bus.txt
19 See include/dt-bindings/iio/ad5755.h
20 - adi,ext-dc-dc-compenstation-resistor: boolean set if the hardware have an
23 - adi,dc-dc-phase:
[all …]
H A Dadi,ad5755.yaml1 # SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
3 ---
5 $schema: http://devicetree.org/meta-schemas/core.yaml#
7 title: Analog Devices AD5755 Multi-Channel DAC
10 - Sean Nyekjaer <sean.nyekjaer@prevas.dk>
15 - adi,ad5755
16 - adi,ad5755-1
17 - adi,ad5757
18 - adi,ad5735
19 - adi,ad5737
[all …]
H A Dadi,ad5758.yaml1 # SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
3 ---
5 $schema: http://devicetree.org/meta-schemas/core.yaml#
10 - Michae
[all...]
/freebsd/crypto/openssl/crypto/evp/
H A Dnames.c2 * Copyright 1995-2024 The OpenSSL Project Authors. All Rights Reserved.
26 r = OBJ_NAME_add(OBJ_nid2sn(c->nid), OBJ_NAME_TYPE_CIPHER_METH, in EVP_add_cipher()
30 r = OBJ_NAME_add(OBJ_nid2ln(c->nid), OBJ_NAME_TYPE_CIPHER_METH, in EVP_add_cipher()
40 name = OBJ_nid2sn(md->type); in EVP_add_digest()
44 r = OBJ_NAME_add(OBJ_nid2ln(md->type), OBJ_NAME_TYPE_MD_METH, in EVP_add_digest()
49 if (md->pkey_type && md->type != md->pkey_type) { in EVP_add_digest()
50 r = OBJ_NAME_add(OBJ_nid2sn(md->pkey_type), in EVP_add_digest()
54 r = OBJ_NAME_add(OBJ_nid2ln(md->pkey_type), in EVP_add_digest()
187 * part. -- Richard Levitte in evp_cleanup_int()
189 OBJ_NAME_cleanup(-1); in evp_cleanup_int()
[all …]
/freebsd/sys/contrib/device-tree/Bindings/display/tegra/
H A Dnvidia,tegra20-dc.yaml1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
3 ---
4 $id: http://devicetree.org/schemas/display/tegra/nvidia,tegra20-dc.yaml#
5 $schema: http://devicetree.org/meta-schemas/core.yaml#
10 - Thierry Reding <thierry.reding@gmail.com>
11 - Jon Hunter <jonathanh@nvidia.com>
15 pattern: "^dc@[0-9a-f]+$"
19 - enum:
20 - nvidia,tegra20-dc
21 - nvidia,tegra30-dc
[all …]
/freebsd/contrib/bc/manuals/dc/
H A DEH.12 .\" SPDX-License-Identifier: BSD-2-Clause
4 .\" Copyright (c) 2018-2025 Gavin D. Howard and contributors.
28 .TH "DC" "1" "August 2024" "Gavin D. Howard" "General Commands Manual"
32 dc \- arbitrary\-precision decimal reverse\-Polish notation calculator
34 \f[B]dc\f[R] [\f[B]\-cChiPRvVx\f[R]] [\f[B]\-\-version\f[R]]
35 [\f[B]\-\-help\f[R]] [\f[B]\-\-digit\-clamp\f[R]]
36 [\f[B]\-\-no\-digit\-clamp\f[R]] [\f[B]\-\-interactive\f[R]]
37 [\f[B]\-\-no\-prompt\f[R]] [\f[B]\-\-no\-read\-prompt\f[R]]
38 [\f[B]\-\-extended\-register\f[R]] [\f[B]\-e\f[R] \f[I]expr\f[R]]
39 [\f[B]\-\-expression\f[R]=\f[I]expr\f[R]\&...]
[all …]
H A DEHN.12 .\" SPDX-License-Identifier: BSD-2-Clause
4 .\" Copyright (c) 2018-2025 Gavin D. Howard and contributors.
28 .TH "DC" "1" "August 2024" "Gavin D. Howard" "General Commands Manual"
32 dc \- arbitrary\-precision decimal reverse\-Polish notation calculator
34 \f[B]dc\f[R] [\f[B]\-cChiPRvVx\f[R]] [\f[B]\-\-version\f[R]]
35 [\f[B]\-\-help\f[R]] [\f[B]\-\-digit\-clamp\f[R]]
36 [\f[B]\-\-no\-digit\-clamp\f[R]] [\f[B]\-\-interactive\f[R]]
37 [\f[B]\-\-no\-prompt\f[R]] [\f[B]\-\-no\-read\-prompt\f[R]]
38 [\f[B]\-\-extended\-register\f[R]] [\f[B]\-e\f[R] \f[I]expr\f[R]]
39 [\f[B]\-\-expression\f[R]=\f[I]expr\f[R]\&...]
[all …]
H A DE.1.md1 <!---
3 SPDX-License-Identifier: BSD-2-Clause
5 Copyright (c) 2018-2025 Gavin D. Howard and contributors.
29 -->
33 dc - arbitrary-precision decimal reverse-Polish notation calculator
37dc** [**-cChiPRvVx**] [**-\-version**] [**-\-help**] [**-\-digit-clamp**] [**-\-no-digit-clamp**] …
41 dc(1) is an arbitrary-precision calculator. It uses a stack (reverse Polish
45 If no files are given on the command-line, then dc(1) reads from **stdin** (see
46 the **STDIN** section). Otherwise, those files are processed, and dc(1) will
51 **scale** always set to **10**, they can set **DC_ENV_ARGS** to **-e 10k**, and
[all …]
H A DEN.1.md1 <!---
3 SPDX-License-Identifier: BSD-2-Clause
5 Copyright (c) 2018-2025 Gavin D. Howard and contributors.
29 -->
33 dc - arbitrary-precision decimal reverse-Polish notation calculator
37dc** [**-cChiPRvVx**] [**-\-version**] [**-\-help**] [**-\-digit-clamp**] [**-\-no-digit-clamp**] …
41 dc(1) is an arbitrary-precision calculator. It uses a stack (reverse Polish
45 If no files are given on the command-line, then dc(1) reads from **stdin** (see
46 the **STDIN** section). Otherwise, those files are processed, and dc(1) will
51 **scale** always set to **10**, they can set **DC_ENV_ARGS** to **-e 10k**, and
[all …]
H A DE.12 .\" SPDX-License-Identifier: BSD-2-Clause
4 .\" Copyright (c) 2018-2025 Gavin D. Howard and contributors.
28 .TH "DC" "1" "August 2024" "Gavin D. Howard" "General Commands Manual"
32 dc \- arbitrary\-precision decimal reverse\-Polish notation calculator
34 \f[B]dc\f[R] [\f[B]\-cChiPRvVx\f[R]] [\f[B]\-\-version\f[R]]
35 [\f[B]\-\-help\f[R]] [\f[B]\-\-digit\-clamp\f[R]]
36 [\f[B]\-\-no\-digit\-clamp\f[R]] [\f[B]\-\-interactive\f[R]]
37 [\f[B]\-\-no\-prompt\f[R]] [\f[B]\-\-no\-read\-prompt\f[R]]
38 [\f[B]\-\-extended\-register\f[R]] [\f[B]\-e\f[R] \f[I]expr\f[R]]
39 [\f[B]\-\-expression\f[R]=\f[I]expr\f[R]\&...]
[all …]
H A DEN.12 .\" SPDX-License-Identifier: BSD-2-Clause
4 .\" Copyright (c) 2018-2025 Gavin D. Howard and contributors.
28 .TH "DC" "1" "August 2024" "Gavin D. Howard" "General Commands Manual"
32 dc \- arbitrary\-precision decimal reverse\-Polish notation calculator
34 \f[B]dc\f[R] [\f[B]\-cChiPRvVx\f[R]] [\f[B]\-\-version\f[R]]
35 [\f[B]\-\-help\f[R]] [\f[B]\-\-digit\-clamp\f[R]]
36 [\f[B]\-\-no\-digit\-clamp\f[R]] [\f[B]\-\-interactive\f[R]]
37 [\f[B]\-\-no\-prompt\f[R]] [\f[B]\-\-no\-read\-prompt\f[R]]
38 [\f[B]\-\-extended\-register\f[R]] [\f[B]\-e\f[R] \f[I]expr\f[R]]
39 [\f[B]\-\-expression\f[R]=\f[I]expr\f[R]\&...]
[all …]
H A DEH.1.md1 <!---
3 SPDX-License-Identifier: BSD-2-Clause
5 Copyright (c) 2018-2025 Gavin D. Howard and contributors.
29 -->
33 dc - arbitrary-precision decimal reverse-Polish notation calculator
37dc** [**-cChiPRvVx**] [**-\-version**] [**-\-help**] [**-\-digit-clamp**] [**-\-no-digit-clamp**] …
41 dc(1) is an arbitrary-precision calculator. It uses a stack (reverse Polish
45 If no files are given on the command-line, then dc(1) reads from **stdin** (see
46 the **STDIN** section). Otherwise, those files are processed, and dc(1) will
51 **scale** always set to **10**, they can set **DC_ENV_ARGS** to **-e 10k**, and
[all …]
H A DA.12 .\" SPDX-License-Identifier: BSD-2-Clause
4 .\" Copyright (c) 2018-2025 Gavin D. Howard and contributors.
28 .TH "DC" "1" "August 2024" "Gavin D. Howard" "General Commands Manual"
32 dc \- arbitrary\-precision decimal reverse\-Polish notation calculator
34 \f[B]dc\f[R] [\f[B]\-cChiPRvVx\f[R]] [\f[B]\-\-version\f[R]]
35 [\f[B]\-\-help\f[R]] [\f[B]\-\-digit\-clamp\f[R]]
36 [\f[B]\-\-no\-digit\-clamp\f[R]] [\f[B]\-\-interactive\f[R]]
37 [\f[B]\-\-no\-prompt\f[R]] [\f[B]\-\-no\-read\-prompt\f[R]]
38 [\f[B]\-\-extended\-register\f[R]] [\f[B]\-e\f[R] \f[I]expr\f[R]]
39 [\f[B]\-\-expression\f[R]=\f[I]expr\f[R]\&...]
[all …]
H A DEHN.1.md1 <!---
3 SPDX-License-Identifier: BSD-2-Clause
5 Copyright (c) 2018-2025 Gavin D. Howard and contributors.
29 -->
33 dc - arbitrary-precision decimal reverse-Polish notation calculator
37dc** [**-cChiPRvVx**] [**-\-version**] [**-\-help**] [**-\-digit-clamp**] [**-\-no-digit-clamp**] …
41 dc(1) is an arbitrary-precision calculator. It uses a stack (reverse Polish
45 If no files are given on the command-line, then dc(1) reads from **stdin** (see
46 the **STDIN** section). Otherwise, those files are processed, and dc(1) will
51 **scale** always set to **10**, they can set **DC_ENV_ARGS** to **-e 10k**, and
[all …]
H A DN.12 .\" SPDX-License-Identifier: BSD-2-Clause
4 .\" Copyright (c) 2018-2025 Gavin D. Howard and contributors.
28 .TH "DC" "1" "August 2024" "Gavin D. Howard" "General Commands Manual"
32 dc \- arbitrary\-precision decimal reverse\-Polish notation calculator
34 \f[B]dc\f[R] [\f[B]\-cChiPRvVx\f[R]] [\f[B]\-\-version\f[R]]
35 [\f[B]\-\-help\f[R]] [\f[B]\-\-digit\-clamp\f[R]]
36 [\f[B]\-\-no\-digit\-clamp\f[R]] [\f[B]\-\-interactive\f[R]]
37 [\f[B]\-\-no\-prompt\f[R]] [\f[B]\-\-no\-read\-prompt\f[R]]
38 [\f[B]\-\-extended\-register\f[R]] [\f[B]\-e\f[R] \f[I]expr\f[R]]
39 [\f[B]\-\-expression\f[R]=\f[I]expr\f[R]\&...]
[all …]
H A DH.12 .\" SPDX-License-Identifier: BSD-2-Clause
4 .\" Copyright (c) 2018-2025 Gavin D. Howard and contributors.
28 .TH "DC" "1" "August 2024" "Gavin D. Howard" "General Commands Manual"
32 dc \- arbitrary\-precision decimal reverse\-Polish notation calculator
34 \f[B]dc\f[R] [\f[B]\-cChiPRvVx\f[R]] [\f[B]\-\-version\f[R]]
35 [\f[B]\-\-help\f[R]] [\f[B]\-\-digit\-clamp\f[R]]
36 [\f[B]\-\-no\-digit\-clamp\f[R]] [\f[B]\-\-interactive\f[R]]
37 [\f[B]\-\-no\-prompt\f[R]] [\f[B]\-\-no\-read\-prompt\f[R]]
38 [\f[B]\-\-extended\-register\f[R]] [\f[B]\-e\f[R] \f[I]expr\f[R]]
39 [\f[B]\-\-expression\f[R]=\f[I]expr\f[R]\&...]
[all …]
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DASTImporterLookupTable.cpp1 //===- ASTImporterLookupTable.cpp - ASTImporter specific lookup -----------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
12 //===----------------------------------------------------------------------===//
28 QualType Ty = D->getUnderlyingType(); in VisitTypedefNameDecl()
31 LT.add(RTy->getAsRecordDecl()); in VisitTypedefNameDecl()
33 for (auto *it : RTy->getAsRecordDecl()->fields()) { in VisitTypedefNameDecl()
50 if (D->getFriendType()) { in VisitFriendDecl()
51 QualType Ty = D->getFriendType()->getType(); in VisitFriendDecl()
53 Ty = cast<ElaboratedType>(Ty)->getNamedType(); in VisitFriendDecl()
[all …]
/freebsd/tools/tools/nvmf/nvmfd/
H A Ddiscovery.c1 /*-
2 * SPDX-License-Identifier: BSD-2-Clause
4 * Copyright (c) 2023-2024 Chelsio Communications, Inc.
52 if (getsockname(s, (struct sockaddr *)&ss, &len) == -1) in init_discovery_log_entry()
56 entry->trtype = NVMF_TRTYPE_TCP; in init_discovery_log_entry()
63 entry->adrfam = NVMF_ADRFAM_IPV4; in init_discovery_log_entry()
64 snprintf(entry->trsvcid, sizeof(entry->trsvcid), "%u", in init_discovery_log_entry()
65 htons(sin->sin_port)); in init_discovery_log_entry()
66 if (inet_ntop(AF_INET, &sin->sin_addr, entry->traddr, in init_discovery_log_entry()
67 sizeof(entry->traddr)) == NULL) in init_discovery_log_entry()
[all …]
/freebsd/contrib/bc/gen/
H A Ddc_help.txt4 * SPDX-License-Identifier: BSD-2-Clause
6 * Copyright (c) 2018-2025 Gavin D. Howard and contributors.
32 * The dc help text.
38 dc is a reverse-polish notation command-line calculator which supports unlimited
40 at https://github.com/gavinhoward/bc/tree/%s/manuals/dc/%s.1.md .
42 This dc is (mostly) compatible with the OpenBSD dc and the GNU dc. See the
43 OpenBSD man page (http://man.openbsd.org/OpenBSD-current/man1/dc.1) and the GNU
44 dc manual (https://www.gnu.org/software/bc/manual/dc-1.05/html_mono/dc.html)
47 This dc has a few differences from the two above:
50 dc does.
[all …]

12345678910>>...48