/freebsd/contrib/bearssl/T0/ |
H A D | SType.cs | 28 return dout; 46 return din >= 0 && dout < 0; 50 int din, dout; field 52 internal SType(int din, int dout) in SType() 57 if (dout < 0) { in SType() 58 dout = -1; in SType() 61 this.dout = dout; in SType() 76 return s1.din == s2.din && s1.dout == s2.dout; in operator ==() 81 return s1.din != s2.din || s1.dout != s2.dout; in operator !=() 91 return din * 31 + dout * 17; in GetHashCode() [all …]
|
H A D | T0Comp.cs | 474 * Stack effect is the pair 'din dout'. If din is negative, in T0Comp() 476 * but dout is negative, then the word is reputed never to in T0Comp() 480 int dout = cpu.Pop(); in T0Comp() 494 wordBuilder.StackEffect = new SType(din, dout); in T0Comp() 1192 int din = 0, dout = 0; in ParseStackEffectNF() 1205 if (seenBang && dout == 1) { in ParseStackEffectNF() 1206 dout = -1; in ParseStackEffectNF() 1208 return new SType(din, dout); in ParseStackEffectNF() 1214 if (dout == 0 && t == "!") { in ParseStackEffectNF() 1217 dout ++; in ParseStackEffectNF()
|
/freebsd/sys/contrib/device-tree/Bindings/misc/ |
H A D | xlnx,sd-fec.txt | 19 - "m_axis_dout_aclk", DOUT AXI4-Stream Master interface clock (optional) 34 - xlnx,sdfec-dout-words : A value 0 indicates that the DOUT_WORDS interface is 38 - xlnx,sdfec-dout-width : Configures the DOUT AXI stream where a value of 1 56 xlnx,sdfec-dout-words = <0>; 57 xlnx,sdfec-dout-width = <1>;
|
/freebsd/sys/contrib/device-tree/include/dt-bindings/pinctrl/ |
H A D | pinctrl-starfive-jh7100.h | 17 * | dout | doen | din | dout rev | doen rev | gpio nr | 19 * dout: output signal 22 * dout rev: output signal reverse bit 26 #define GPIOMUX(n, dout, doen, din) ( \ argument 27 (((dout) & 0x80000000) >> (31 - 7)) | (((dout) & 0xff) << 24) | \
|
H A D | pinctrl-starfive.h | 17 * | dout | doen | din | dout rev | doen rev | gpio nr | 19 * dout: output signal 22 * dout rev: output signal reverse bit 26 #define GPIOMUX(n, dout, doen, din) ( \ argument 27 (((dout) & 0x80000000) >> (31 - 7)) | (((dout) & 0xff) << 24) | \
|
/freebsd/sys/contrib/device-tree/Bindings/iio/adc/ |
H A D | avia-hx711.yaml | 17 - dout-gpio is the sensor data the sensor responds to the clock 33 dout-gpios: 53 - dout-gpios 64 dout-gpios = <&gpio0 7 GPIO_ACTIVE_HIGH>;
|
/freebsd/sys/contrib/device-tree/Bindings/gpio/ |
H A D | gpio-xilinx.txt | 19 - xlnx,dout-default : if n-th bit is 1, GPIO-n default value is 1 24 - xlnx,dout-default-2 : as above but the second channel 40 xlnx,dout-default = <0x0>; 41 xlnx,dout-default-2 = <0x0>;
|
H A D | xlnx,gpio-xilinx.yaml | 66 xlnx,dout-default: 72 xlnx,dout-default-2: 144 xlnx,dout-default = <0x0>; 145 xlnx,dout-default-2 = <0x0>;
|
/freebsd/crypto/openssl/demos/cms/ |
H A D | cms_denc.c | 20 BIO *in = NULL, *out = NULL, *tbio = NULL, *dout = NULL; in main() local 58 dout = BIO_new_file("smencr.out", "wb"); in main() 73 if (!CMS_final(cms, in, dout, flags)) in main() 94 BIO_free(dout); in main()
|
/freebsd/sys/contrib/device-tree/src/riscv/starfive/ |
H A D | jh7110-pinfunc.h | 13 * | din | dout | doen | function | gpio nr | 15 * dout: output signal 21 #define GPIOMUX(n, dout, doen, din) ( \ argument 23 (((dout) & 0xff) << 16) | \ 29 /* sys_iomux dout */ 139 /* aon_iomux dout */
|
/freebsd/contrib/smbfs/lib/smb/ |
H A D | kiconv.c | 52 struct iconv_add_out dout; in kiconv_add_xlat_table() local 63 olen = sizeof(dout); in kiconv_add_xlat_table() 66 if (sysctlbyname("net.smb.fs.iconv.add", &dout, &olen, &din, sizeof(din)) == -1) { in kiconv_add_xlat_table() 72 if (sysctlbyname("kern.iconv.add", &dout, &olen, &din, sizeof(din)) == -1) in kiconv_add_xlat_table()
|
/freebsd/lib/libkiconv/ |
H A D | xlat16_sysctl.c | 54 struct iconv_add_out dout; in kiconv_add_xlat16_table() local 65 olen = sizeof(dout); in kiconv_add_xlat16_table() 66 if (sysctlbyname("kern.iconv.add", &dout, &olen, &din, sizeof(din)) == -1) in kiconv_add_xlat16_table()
|
/freebsd/crypto/heimdal/appl/ftp/ftpd/ |
H A D | ftpd.c | 953 FILE *fin = NULL, *dout; in retrieve() local 1058 dout = dataconn(name, st.st_size, "w"); in retrieve() 1059 if (dout == NULL) in retrieve() 1061 set_buffer_size(fileno(dout), 0); in retrieve() 1062 send_data(fin, dout); in retrieve() 1063 fclose(dout); in retrieve() 2186 FILE *dout; in list_file() local 2187 dout = dataconn(file, -1, "w"); in list_file() 2188 if (dout == NULL) in list_file() 2190 set_buffer_size(fileno(dout), 0); in list_file() [all …]
|
/freebsd/sys/contrib/device-tree/Bindings/siox/ |
H A D | eckelmann,siox-gpio.txt | 5 - din-gpios, dout-gpios, dclk-gpios, dld-gpios: references gpios for the 16 dout-gpios = <&gpio6 8 0>;
|
/freebsd/sys/dev/mlx5/mlx5_core/ |
H A D | mlx5_qp.c | 124 u32 dout[MLX5_ST_SZ_DW(destroy_qp_out)] = {0}; in mlx5_core_create_qp() local 150 mlx5_cmd_exec(dev, din, sizeof(din), dout, sizeof(dout)); in mlx5_core_create_qp() 364 u32 dout[MLX5_ST_SZ_DW(destroy_dct_out)] = {0}; in mlx5_core_create_dct() local 399 mlx5_cmd_exec(dev, &din, sizeof(din), dout, sizeof(dout)); in mlx5_core_create_dct()
|
H A D | mlx5_cq.c | 130 u32 dout[MLX5_ST_SZ_DW(destroy_cq_out)] = {0}; in mlx5_core_create_cq() local 160 mlx5_cmd_exec(dev, din, sizeof(din), dout, sizeof(dout)); in mlx5_core_create_cq()
|
/freebsd/contrib/tnftp/src/ |
H A D | ftp.c | 665 FILE *volatile dout; in sendrequest() local 678 dout = NULL; in sendrequest() 771 dout = dataconn(lmode); in sendrequest() 772 if (dout == NULL) in sendrequest() 790 c = copy_bytes(fileno(fin), fileno(dout), buf, bufsize, in sendrequest() 809 if (ferror(dout)) in sendrequest() 811 (void)putc('\r', dout); in sendrequest() 814 (void)putc(c, dout); in sendrequest() 818 (void)putc('\0', dout); in sendrequest() 830 if (ferror(dout)) { in sendrequest() [all …]
|
/freebsd/crypto/heimdal/appl/ftp/ftp/ |
H A D | ftp.c | 674 FILE *fin, *dout = 0; in sendrequest() local 803 dout = dataconn(rmode); in sendrequest() 804 if (dout == NULL) in sendrequest() 806 set_buffer_size (fileno (dout), 0); in sendrequest() 814 bytes = copy_stream (fin, dout); in sendrequest() 825 if (ferror (dout)) in sendrequest() 827 sec_putc ('\r', dout); in sendrequest() 830 sec_putc (c, dout); in sendrequest() 833 sec_fflush (dout); in sendrequest() 842 if (ferror (dout)) { in sendrequest() [all …]
|
/freebsd/sys/contrib/device-tree/Bindings/soundwire/ |
H A D | qcom,soundwire.yaml | 72 qcom,dout-ports: 221 - qcom,dout-ports 256 qcom,dout-ports = <5>;
|
H A D | qcom,sdw.txt | 54 - qcom,dout-ports: 199 qcom,dout-ports = <6>;
|
/freebsd/libexec/ftpd/ |
H A D | ftpd.c | 1645 FILE *fin, *dout; in retrieve() local 1712 dout = dataconn(name, st.st_size, "w"); in retrieve() 1713 if (dout == NULL) in retrieve() 1716 send_data(fin, dout, st.st_blksize, st.st_size, in retrieve() 1720 (void) fclose(dout); in retrieve() 3137 FILE *dout = NULL; in send_file_list() local 3172 dout == NULL) in send_file_list() 3180 if (dout == NULL) { in send_file_list() 3181 dout = dataconn("file list", -1, "w"); in send_file_list() 3182 if (dout == NULL) in send_file_list() [all …]
|
/freebsd/sys/libkern/ |
H A D | iconv.c | 408 struct iconv_add_out dout; in iconv_sysctl_add() local 438 dout.ia_csid = csp->cp_id; in iconv_sysctl_add() 439 error = SYSCTL_OUT(req, &dout, sizeof(dout)); in iconv_sysctl_add()
|
/freebsd/sys/contrib/device-tree/Bindings/sound/ |
H A D | max9892x.txt | 26 from two devices on a single DOUT line when running
|
/freebsd/sys/contrib/device-tree/src/arm/nxp/imx/ |
H A D | imx6dl-eckelmann-ci4x10.dts | 50 dout-gpios = <&gpio6 8 GPIO_ACTIVE_HIGH>; 227 MX6QDL_PAD_NANDF_ALE__GPIO6_IO08 0x0001b010 /* DOUT */
|
/freebsd/sys/contrib/device-tree/src/arm64/qcom/ |
H A D | sdm845-wcd9340.dtsi | 62 qcom,dout-ports = <6>;
|