Home
last modified time | relevance | path

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

12345678910>>...50

/freebsd-src/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, struc argument
175 dconschat_suspend(struct dcons_state * dc,struct dcons_port * p) dconschat_suspend() argument
210 dconschat_fork_gdb(struct dcons_state * dc,struct dcons_port * p) dconschat_fork_gdb() argument
253 struct dcons_state *dc; dconschat_cleanup() local
270 dconschat_get_crom(struct dcons_state * dc) dconschat_get_crom() argument
335 dconschat_ready(struct dcons_state * dc,int ready,char * reason) dconschat_ready() argument
357 dconschat_fetch_header(struct dcons_state * dc) dconschat_fetch_header() argument
436 dconschat_get_ptr(struct dcons_state * dc) dconschat_get_ptr() argument
470 dconschat_read_dcons(struct dcons_state * dc,int port,char * buf,int len) dconschat_read_dcons() argument
548 dconschat_write_dcons(struct dcons_state * dc,int port,char * buf,int blen) dconschat_write_dcons() argument
616 dconschat_init_socket(struct dcons_state * dc,int port,char * host,int sport) dconschat_init_socket() argument
686 dconschat_accept_socket(struct dcons_state * dc,struct dcons_port * p) dconschat_accept_socket() argument
735 dconschat_read_filter(struct dcons_state * dc,struct dcons_port * p,u_char * sp,int slen,u_char * dp,int * dlen) dconschat_read_filter() argument
837 dconschat_read_socket(struct dcons_state * dc,struct dcons_port * p) dconschat_read_socket() argument
879 dconschat_proc_socket(struct dcons_state * dc) dconschat_proc_socket() argument
899 dconschat_proc_dcons(struct dcons_state * dc) dconschat_proc_dcons() argument
927 dconschat_start_session(struct dcons_state * dc) dconschat_start_session() argument
989 struct dcons_state *dc; main() local
[all...]
/freebsd-src/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-src/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-src/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->getAsmInfo(); in emitComments()
[all …]
/freebsd-src/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-src/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-mode
105 adi,dc-dc-mode:
134 adi,dc-dc-mode = <2>;
136 adi,dc-dc-ilim-microamp = <200000>;
/freebsd-src/crypto/openssl/crypto/evp/
H A Dnames.c205 struct doall_cipher *dc = arg; in EVP_CIPHER_do_all_sorted()
207 dc->fn(NULL, nm->name, nm->data, dc->arg); in EVP_CIPHER_do_all_sorted()
209 dc->fn((const EVP_CIPHER *)nm->data, nm->name, NULL, dc->arg); in EVP_CIPHER_do_all_sorted()
216 struct doall_cipher dc;
221 dc.fn = fn; in do_all_md_fn()
222 dc.arg = arg; in do_all_md_fn() local
223 OBJ_NAME_do_all(OBJ_NAME_TYPE_CIPHER_METH, do_all_cipher_fn, &dc); in do_all_md_fn()
230 struct doall_cipher dc; in EVP_MD_do_all()
179 struct doall_cipher *dc = arg; do_all_cipher_fn() local
190 struct doall_cipher dc; EVP_CIPHER_do_all() local
204 struct doall_cipher dc; EVP_CIPHER_do_all_sorted() local
233 struct doall_md dc; EVP_MD_do_all() local
247 struct doall_md dc; EVP_MD_do_all_sorted() local
[all...]
/freebsd-src/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-src/contrib/llvm-project/clang/include/clang/AST/
H A DASTLambda.h33 inline bool isLambdaCallOperator(const DeclContext *DC) { in isLambdaCallOperator() argument
34 if (!DC || !isa<CXXMethodDecl>(DC)) return false; in isLambdaCallOperator()
35 return isLambdaCallOperator(cast<CXXMethodDecl>(DC)); in isLambdaCallOperator()
38 inline bool isLambdaCallWithExplicitObjectParameter(const DeclContext *DC) { in isLambdaCallWithExplicitObjectParameter() argument
39 return isLambdaCallOperator(DC) && in isLambdaCallWithExplicitObjectParameter()
40 cast<CXXMethodDecl>(DC)->isExplicitObjectMemberFunction(); in isLambdaCallWithExplicitObjectParameter()
43 inline bool isLambdaCallWithImplicitObjectParameter(const DeclContext *DC) { in isLambdaCallWithImplicitObjectParameter() argument
44 return isLambdaCallOperator(DC) && in isLambdaCallWithImplicitObjectParameter()
49 !cast<CXXMethodDecl>(DC)->getType().isNull() && in isLambdaCallWithImplicitObjectParameter()
50 !cast<CXXMethodDecl>(DC)->isExplicitObjectMemberFunction(); in isLambdaCallWithImplicitObjectParameter()
[all …]
/freebsd-src/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-src/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 …]
/freebsd-src/usr.sbin/nvmfd/
H A Ddiscovery.c134 build_discovery_log_page(struct discovery_controller *dc)
142 if (dc->discovery_log != NULL) in build_discovery_log_page()
146 if (getsockname(dc->s, (struct sockaddr *)&ss, &len) == -1) { in build_discovery_log_page()
191 dc->discovery_log_len = sizeof(*dc->discovery_log) + in build_discovery_log_page()
193 dc->discovery_log = calloc(dc->discovery_log_len, 1); in build_discovery_log_page()
194 dc->discovery_log->numrec = nentries; in build_discovery_log_page()
195 dc->discovery_log->recfmt = 0; in build_discovery_log_page()
202 dc in build_discovery_log_page()
135 build_discovery_log_page(struct discovery_controller * dc) build_discovery_log_page() argument
212 handle_get_log_page_command(const struct nvmf_capsule * nc,const struct nvme_command * cmd,struct discovery_controller * dc) handle_get_log_page_command() argument
247 struct discovery_controller *dc = arg; discovery_command() local
262 struct discovery_controller dc; discovery_thread() local
[all...]
/freebsd-src/contrib/bc/manuals/dc/
H A DEH.128 .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]]
44 dc(1) is an arbitrary\-precision calculator.
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(
[all...]
H A DEHN.128 .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]]
44 dc(1) is an arbitrary\-precision calculator.
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(
[all...]
H A DE.1.md33 dc - arbitrary-precision decimal reverse-Polish notation calculator
37 **dc** [**-cChiPRvVx**] [**-\-version**] [**-\-help**] [**-\-digit-clamp**] [**-\-no-digit-clamp**] [**-\-interactive**] [**-\-no-prompt**] [**-\-no-read-prompt**] [**-\-extended-register**] [**-e** *expr*] [**-\-expression**=*expr*...] [**-f** *file*...] [**-\-file**=*file*...] [*file*...]
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(
[all...]
H A DEN.1.md33 dc - arbitrary-precision decimal reverse-Polish notation calculator
37 **dc** [**-cChiPRvVx**] [**-\-version**] [**-\-help**] [**-\-digit-clamp**] [**-\-no-digit-clamp**] [**-\-interactive**] [**-\-no-prompt**] [**-\-no-read-prompt**] [**-\-extended-register**] [**-e** *expr*] [**-\-expression**=*expr*...] [**-f** *file*...] [**-\-file**=*file*...] [*file*...]
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(
[all...]
H A DE.128 .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]]
44 dc(1) is an arbitrary\-precision calculator.
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(
[all...]
H A DEN.128 .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]]
44 dc(1) is an arbitrary\-precision calculator.
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(
[all...]
H A DEH.1.md33 dc - arbitrary-precision decimal reverse-Polish notation calculator
37 **dc** [**-cChiPRvVx**] [**-\-version**] [**-\-help**] [**-\-digit-clamp**] [**-\-no-digit-clamp**] [**-\-interactive**] [**-\-no-prompt**] [**-\-no-read-prompt**] [**-\-extended-register**] [**-e** *expr*] [**-\-expression**=*expr*...] [**-f** *file*...] [**-\-file**=*file*...] [*file*...]
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(
[all...]
H A DA.128 .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]]
48 dc(1) is an arbitrary\-precision calculator.
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(
[all...]
H A DEHN.1.md33 dc - arbitrary-precision decimal reverse-Polish notation calculator
37 **dc** [**-cChiPRvVx**] [**-\-version**] [**-\-help**] [**-\-digit-clamp**] [**-\-no-digit-clamp**] [**-\-interactive**] [**-\-no-prompt**] [**-\-no-read-prompt**] [**-\-extended-register**] [**-e** *expr*] [**-\-expression**=*expr*...] [**-f** *file*...] [**-\-file**=*file*...] [*file*...]
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(
[all...]
H A DN.128 .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]]
48 dc(1) is an arbitrary\-precision calculator.
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(
[all...]

12345678910>>...50