Home
last modified time | relevance | path

Searched full:dc (Results 1 – 25 of 1240) sorted by relevance

12345678910>>...50

/freebsd/usr.sbin/dconschat/
H A Ddconschat.c132 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()
144 dwrite(struct dcons_state *dc, void *buf, size_t n, off_t offset) in dwrite() argument
146 if ((dc->flags & F_RD_ONLY) != 0) in dwrite()
149 switch (dc->type) { in dwrite()
151 return (pwrite(dc->fd, buf, n, offset)); in dwrite()
153 return (kvm_write(dc->kd, offset, buf, n)); in dwrite()
159 dconschat_reset_target(struct dcons_state *dc, struct dcons_port *p) in dconschat_reset_target() argument
[all …]
/freebsd/sys/contrib/device-tree/Bindings/mfd/
H A Daxp20x.txt47 - x-powers,dcdc-freq: defines the work frequency of DC-DC in KHz
88 DCDC2 : DC-DC buck : vin2-supply
89 DCDC3 : DC-DC buck : vin3-supply
100 DCDC1 : DC-DC buck : vin1-supply
101 DCDC2 : DC-DC buck : vin2-supply
102 DCDC3 : DC-DC buck : vin3-supply
103 DCDC4 : DC-DC buck : vin4-supply
104 DCDC5 : DC-DC buck : vin5-supply
126 DCDC1 : DC-DC buck : vin1-supply
127 DCDC2 : DC-DC buck : vin2-supply : poly-phase capable
[all …]
/freebsd/contrib/llvm-project/llvm/lib/MC/MCDisassembler/
H A DDisassembler.cpp103 LLVMDisasmContext *DC = new LLVMDisasmContext( in LLVMCreateDisasmCPUFeatures() local
107 if (!DC) in LLVMCreateDisasmCPUFeatures()
110 DC->setCPU(CPU); in LLVMCreateDisasmCPUFeatures()
111 return DC; in LLVMCreateDisasmCPUFeatures()
133 LLVMDisasmContext *DC = static_cast<LLVMDisasmContext *>(DCR); in LLVMDisasmDispose() local
134 delete DC; in LLVMDisasmDispose()
137 /// Emits the comments that are stored in \p DC comment stream.
139 static void emitComments(LLVMDisasmContext *DC, in emitComments() argument
142 StringRef Comments = DC->CommentsToEmit.str(); in emitComments()
144 const MCAsmInfo *MAI = DC in emitComments()
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.c49 dcons_ischar(struct dcons_softc *dc) in dcons_ischar() argument
54 ch = &dc->i; in dcons_ischar()
77 dcons_checkc(struct dcons_softc *dc) in dcons_checkc() argument
83 ch = &dc->i; in dcons_checkc()
113 dcons_putc(struct dcons_softc *dc, int c) in dcons_putc() argument
117 ch = &dc->o; in dcons_putc()
133 struct dcons_softc *dc; in dcons_init_port() local
135 dc = &sc[port]; in dcons_init_port()
139 dc->o.size = osize; in dcons_init_port()
140 dc->i.size = size - osize; in dcons_init_port()
[all …]
H A Ddcons_os.c151 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->brk_state); in dcons_check_break()
162 kdb_alt_break(c, &dc->brk_state); in dcons_check_break()
167 #define dcons_check_break(dc, c) (c) argument
171 dcons_os_checkc_nopoll(struct dcons_softc *dc) in dcons_os_checkc_nopoll() argument
178 c = dcons_check_break(dc, dcons_checkc(dc)); in dcons_os_checkc_nopoll()
187 dcons_os_checkc(struct dcons_softc *dc) in dcons_os_checkc() argument
190 return (dcons_os_checkc_nopoll(dc)); in dcons_os_checkc()
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 Dserial47 dc=$1; shift # device name character
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
69 stty < /dev/cua${dc}${i}.init reprint undef
71 stty < /dev/tty${dc}${i}.lock clocal
[all …]
/freebsd/sys/contrib/device-tree/Bindings/iio/dac/
H A Dad5755.txt20 - adi,ext-dc-dc-compenstation-resistor: boolean set if the hardware have an
23 - adi,dc-dc-phase:
24 Valid values for DC DC Phase control is:
25 0: All dc-to-dc converters clock on the same edge.
32 - adi,dc-dc-freq-hz:
33 Valid values for DC DC frequency is [Hz]:
37 - adi,dc-dc-max-microvolt:
39 the dc-to-dc converter is:
97 adi,dc-dc-phase = <0>;
98 adi,dc-dc-freq-hz = <410000>;
[all …]
H A Dadi,ad5755.yaml28 adi,ext-dc-dc-compenstation-resistor:
34 adi,dc-dc-phase:
38 Valid values for DC DC Phase control is:
39 0: All dc-to-dc converters clock on the same edge.
47 adi,dc-dc-freq-hz:
50 adi,dc-dc-max-microvolt:
52 Maximum allowed Vboost voltage supplied by the dc-to-dc converter.
140 adi,dc-dc-phase = <0>;
141 adi,dc-dc-freq-hz = <410000>;
142 adi,dc-dc-max-microvolt = <23000000>;
H A Dadi,ad5758.yaml21 adi,dc-dc-mode:
25 Mode of operation of the dc-to-dc converter
84 adi,dc-dc-ilim-microamp:
87 The dc-to-dc converter current limit.
99 - adi,dc-dc
[all...]
/freebsd/crypto/openssl/crypto/evp/
H A Dnames.c205 struct doall_cipher *dc = arg; in do_all_cipher_fn() local
207 dc->fn(NULL, nm->name, nm->data, dc->arg); in do_all_cipher_fn()
209 dc->fn((const EVP_CIPHER *)nm->data, nm->name, NULL, dc->arg); in do_all_cipher_fn()
216 struct doall_cipher dc; in EVP_CIPHER_do_all() local
221 dc.fn = fn; in EVP_CIPHER_do_all()
222 dc.arg = arg; in EVP_CIPHER_do_all()
223 OBJ_NAME_do_all(OBJ_NAME_TYPE_CIPHER_METH, do_all_cipher_fn, &dc); in EVP_CIPHER_do_all()
230 struct doall_cipher dc; in EVP_CIPHER_do_all_sorted() local
235 dc.fn = fn; in EVP_CIPHER_do_all_sorted()
236 dc.arg = arg; in EVP_CIPHER_do_all_sorted()
[all …]
/freebsd/sys/contrib/device-tree/Bindings/display/tegra/
H A Dnvidia,tegra20-dc.yaml4 $id: http://devicetree.org/schemas/display/tegra/nvidia,tegra20-dc.yaml#
15 pattern: "^dc@[0-9a-f]+$"
20 - nvidia,tegra20-dc
21 - nvidia,tegra30-dc
22 - nvidia,tegra114-dc
23 - nvidia,tegra124-dc
24 - nvidia,tegra210-dc
27 - const: nvidia,tegra124-dc
28 - const: nvidia,tegra132-dc
45 - const: dc
[all …]
/freebsd/contrib/bc/tests/dc/scripts/
H A Dall.txt1 prime.dc
2 asciify.dc
3 stream.dc
4 array.dc
5 else.dc
6 factorial.dc
7 loop.dc
8 quit.dc
9 weird.dc
10 no_clamp.dc
/freebsd/contrib/bc/manuals/dc/
H A DEH.128 .TH "DC" "1" "August 2024" "Gavin D. Howard" "General Commands Manual"
34 \f[B]dc\f[R] [\f[B]\-cChiPRvVx\f[R]] [\f[B]\-\-version\f[R]]
50 If no files are given on the command\-line, then dc(1) reads from
52 Otherwise, those files are processed, and dc(1) will then exit.
58 and this dc(1) will always start with a \f[B]scale\f[R] of \f[B]10\f[R].
60 The following are the options that dc(1) accepts.
114 then after processing all expressions and files, dc(1) will exit, unless
120 \f[B]\-f\-\f[R] or equivalent is given, dc(1) will give a fatal error
135 then after processing all expressions and files, dc(1) will exit, unless
140 \f[B]\-f\-\f[R] or equivalent is given, dc(1) will give a fatal error
[all …]
H A DEHN.128 .TH "DC" "1" "August 2024" "Gavin D. Howard" "General Commands Manual"
34 \f[B]dc\f[R] [\f[B]\-cChiPRvVx\f[R]] [\f[B]\-\-version\f[R]]
50 If no files are given on the command\-line, then dc(1) reads from
52 Otherwise, those files are processed, and dc(1) will then exit.
58 and this dc(1) will always start with a \f[B]scale\f[R] of \f[B]10\f[R].
60 The following are the options that dc(1) accepts.
114 then after processing all expressions and files, dc(1) will exit, unless
120 \f[B]\-f\-\f[R] or equivalent is given, dc(1) will give a fatal error
135 then after processing all expressions and files, dc(1) will exit, unless
140 \f[B]\-f\-\f[R] or equivalent is given, dc(1) will give a fatal error
[all …]
H A DE.1.md33 dc - arbitrary-precision decimal reverse-Polish notation calculator
37 **dc** [**-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
52 this dc(1) will always start with a **scale** of **10**.
56 The following are the options that dc(1) accepts.
104 expressions and files, dc(1) will exit, unless **-** (**stdin**) was given
108 or equivalent is given, dc(1) will give a fatal error and exit.
120 expressions and files, dc(1) will exit, unless **-** (**stdin**) was given
[all …]
H A DEN.1.md33 dc - arbitrary-precision decimal reverse-Polish notation calculator
37 **dc** [**-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
52 this dc(1) will always start with a **scale** of **10**.
56 The following are the options that dc(1) accepts.
104 expressions and files, dc(1) will exit, unless **-** (**stdin**) was given
108 or equivalent is given, dc(1) will give a fatal error and exit.
120 expressions and files, dc(1) will exit, unless **-** (**stdin**) was given
[all …]
H A DE.128 .TH "DC" "1" "August 2024" "Gavin D. Howard" "General Commands Manual"
34 \f[B]dc\f[R] [\f[B]\-cChiPRvVx\f[R]] [\f[B]\-\-version\f[R]]
50 If no files are given on the command\-line, then dc(1) reads from
52 Otherwise, those files are processed, and dc(1) will then exit.
58 and this dc(1) will always start with a \f[B]scale\f[R] of \f[B]10\f[R].
60 The following are the options that dc(1) accepts.
114 then after processing all expressions and files, dc(1) will exit, unless
120 \f[B]\-f\-\f[R] or equivalent is given, dc(1) will give a fatal error
135 then after processing all expressions and files, dc(1) will exit, unless
140 \f[B]\-f\-\f[R] or equivalent is given, dc(1) will give a fatal error
[all …]
H A DEN.128 .TH "DC" "1" "August 2024" "Gavin D. Howard" "General Commands Manual"
34 \f[B]dc\f[R] [\f[B]\-cChiPRvVx\f[R]] [\f[B]\-\-version\f[R]]
50 If no files are given on the command\-line, then dc(1) reads from
52 Otherwise, those files are processed, and dc(1) will then exit.
58 and this dc(1) will always start with a \f[B]scale\f[R] of \f[B]10\f[R].
60 The following are the options that dc(1) accepts.
114 then after processing all expressions and files, dc(1) will exit, unless
120 \f[B]\-f\-\f[R] or equivalent is given, dc(1) will give a fatal error
135 then after processing all expressions and files, dc(1) will exit, unless
140 \f[B]\-f\-\f[R] or equivalent is given, dc(1) will give a fatal error
[all …]
H A DEH.1.md33 dc - arbitrary-precision decimal reverse-Polish notation calculator
37 **dc** [**-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
52 this dc(1) will always start with a **scale** of **10**.
56 The following are the options that dc(1) accepts.
104 expressions and files, dc(1) will exit, unless **-** (**stdin**) was given
108 or equivalent is given, dc(1) will give a fatal error and exit.
120 expressions and files, dc(1) will exit, unless **-** (**stdin**) was given
[all …]
H A DEHN.1.md33 dc - arbitrary-precision decimal reverse-Polish notation calculator
37 **dc** [**-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
52 this dc(1) will always start with a **scale** of **10**.
56 The following are the options that dc(1) accepts.
104 expressions and files, dc(1) will exit, unless **-** (**stdin**) was given
108 or equivalent is given, dc(1) will give a fatal error and exit.
120 expressions and files, dc(1) will exit, unless **-** (**stdin**) was given
[all …]
H A DA.128 .TH "DC" "1" "August 2024" "Gavin D. Howard" "General Commands Manual"
34 \f[B]dc\f[R] [\f[B]\-cChiPRvVx\f[R]] [\f[B]\-\-version\f[R]]
54 If no files are given on the command\-line, then dc(1) reads from
56 Otherwise, those files are processed, and dc(1) will then exit.
62 and this dc(1) will always start with a \f[B]scale\f[R] of \f[B]10\f[R].
64 The following are the options that dc(1) accepts.
129 then after processing all expressions and files, dc(1) will exit, unless
135 \f[B]\-f\-\f[R] or equivalent is given, dc(1) will give a fatal error
150 then after processing all expressions and files, dc(1) will exit, unless
155 \f[B]\-f\-\f[R] or equivalent is given, dc(1) will give a fatal error
[all …]
H A DN.128 .TH "DC" "1" "August 2024" "Gavin D. Howard" "General Commands Manual"
34 \f[B]dc\f[R] [\f[B]\-cChiPRvVx\f[R]] [\f[B]\-\-version\f[R]]
54 If no files are given on the command\-line, then dc(1) reads from
56 Otherwise, those files are processed, and dc(1) will then exit.
62 and this dc(1) will always start with a \f[B]scale\f[R] of \f[B]10\f[R].
64 The following are the options that dc(1) accepts.
129 then after processing all expressions and files, dc(1) will exit, unless
135 \f[B]\-f\-\f[R] or equivalent is given, dc(1) will give a fatal error
150 then after processing all expressions and files, dc(1) will exit, unless
155 \f[B]\-f\-\f[R] or equivalent is given, dc(1) will give a fatal error
[all …]
H A DH.128 .TH "DC" "1" "August 2024" "Gavin D. Howard" "General Commands Manual"
34 \f[B]dc\f[R] [\f[B]\-cChiPRvVx\f[R]] [\f[B]\-\-version\f[R]]
54 If no files are given on the command\-line, then dc(1) reads from
56 Otherwise, those files are processed, and dc(1) will then exit.
62 and this dc(1) will always start with a \f[B]scale\f[R] of \f[B]10\f[R].
64 The following are the options that dc(1) accepts.
129 then after processing all expressions and files, dc(1) will exit, unless
135 \f[B]\-f\-\f[R] or equivalent is given, dc(1) will give a fatal error
150 then after processing all expressions and files, dc(1) will exit, unless
155 \f[B]\-f\-\f[R] or equivalent is given, dc(1) will give a fatal error
[all …]
H A DA.1.md33 dc - arbitrary-precision decimal reverse-Polish notation calculator
37 **dc** [**-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
52 this dc(1) will always start with a **scale** of **10**.
56 The following are the options that dc(1) accepts.
113 expressions and files, dc(1) will exit, unless **-** (**stdin**) was given
117 or equivalent is given, dc(1) will give a fatal error and exit.
129 expressions and files, dc(1) will exit, unless **-** (**stdin**) was given
[all …]
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DASTImporterLookupTable.cpp104 void ASTImporterLookupTable::add(DeclContext *DC, NamedDecl *ND) { in add() argument
105 DeclList &Decls = LookupTable[DC][ND->getDeclName()]; in add()
110 void ASTImporterLookupTable::remove(DeclContext *DC, NamedDecl *ND) { in remove() argument
112 DeclList &Decls = LookupTable[DC][Name]; in remove()
119 Name.getAsString(), DC->getDeclKindName()) in remove()
128 DeclContext *DC = ND->getDeclContext()->getPrimaryContext(); in add() local
129 add(DC, ND); in add()
130 DeclContext *ReDC = DC->getRedeclContext()->getPrimaryContext(); in add()
131 if (DC != ReDC) in add()
137 DeclContext *DC = ND->getDeclContext()->getPrimaryContext(); in remove() local
[all …]

12345678910>>...50