| /freebsd-12-stable/contrib/bearssl/T0/ |
| D | SType.cs | 17 return din; 37 return din >= 0; 46 return din >= 0 && dout < 0; 50 int din, dout; field 52 internal SType(int din, int dout) in SType() 54 if (din < 0) { in SType() 55 din = -1; in SType() 60 this.din = din; 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 !=() [all …]
|
| D | T0Comp.cs | 481 int din = cpu.Pop(); in T0Comp() 494 wordBuilder.StackEffect = new SType(din, dout); in T0Comp() 1192 int din = 0, dout = 0; in ParseStackEffectNF() 1208 return new SType(din, dout); in ParseStackEffectNF() 1219 din ++; in ParseStackEffectNF()
|
| /freebsd-12-stable/contrib/smbfs/lib/smb/ |
| D | kiconv.c | 51 struct iconv_add_in din; in kiconv_add_xlat_table() local 57 din.ia_version = ICONV_ADD_VER; in kiconv_add_xlat_table() 58 strcpy(din.ia_converter, "xlat"); in kiconv_add_xlat_table() 59 strcpy(din.ia_from, from); in kiconv_add_xlat_table() 60 strcpy(din.ia_to, to); in kiconv_add_xlat_table() 61 din.ia_data = table; in kiconv_add_xlat_table() 62 din.ia_datalen = 256; 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-12-stable/crypto/heimdal/doc/ |
| D | Makefile.am | 17 hcrypto.dxy: hcrypto.din Makefile 18 $(dxy_subst) < $(srcdir)/hcrypto.din > hcrypto.dxy.tmp 22 hdb.dxy: hdb.din Makefile 23 $(dxy_subst) < $(srcdir)/hdb.din > hdb.dxy.tmp 27 hx509.dxy: hx509.din Makefile 28 $(dxy_subst) < $(srcdir)/hx509.din > hx509.dxy.tmp 32 gssapi.dxy: gssapi.din Makefile 33 $(dxy_subst) < $(srcdir)/gssapi.din > gssapi.dxy.tmp 37 krb5.dxy: krb5.din Makefile 38 $(dxy_subst) < $(srcdir)/krb5.din > krb5.dxy.tmp [all …]
|
| D | Makefile.in | 410 gssapi.din \ 411 hdb.din \ 412 hcrypto.din \ 415 hx509.din \ 416 krb5.din \ 417 ntlm.din \ 422 wind.din \ 1043 hcrypto.dxy: hcrypto.din Makefile 1044 $(dxy_subst) < $(srcdir)/hcrypto.din > hcrypto.dxy.tmp 1048 hdb.dxy: hdb.din Makefile [all …]
|
| /freebsd-12-stable/lib/libkiconv/ |
| D | xlat16_sysctl.c | 55 struct iconv_add_in din; in kiconv_add_xlat16_table() local 61 din.ia_version = ICONV_ADD_VER; in kiconv_add_xlat16_table() 62 strcpy(din.ia_converter, "xlat16"); in kiconv_add_xlat16_table() 63 strcpy(din.ia_from, from); in kiconv_add_xlat16_table() 64 strcpy(din.ia_to, to); in kiconv_add_xlat16_table() 65 din.ia_data = data; in kiconv_add_xlat16_table() 66 din.ia_datalen = datalen; in kiconv_add_xlat16_table() 68 if (sysctlbyname("kern.iconv.add", &dout, &olen, &din, sizeof(din)) == -1) in kiconv_add_xlat16_table()
|
| /freebsd-12-stable/sys/libkern/ |
| D | iconv.c | 405 struct iconv_add_in din; in iconv_sysctl_add() local 409 error = SYSCTL_IN(req, &din, sizeof(din)); in iconv_sysctl_add() 412 if (din.ia_version != ICONV_ADD_VER) in iconv_sysctl_add() 414 if (din.ia_datalen > ICONV_CSMAXDATALEN) in iconv_sysctl_add() 416 if (strnlen(din.ia_from, sizeof(din.ia_from)) >= ICONV_CSNMAXLEN) in iconv_sysctl_add() 418 if (strnlen(din.ia_to, sizeof(din.ia_to)) >= ICONV_CSNMAXLEN) in iconv_sysctl_add() 420 if (strnlen(din.ia_converter, sizeof(din.ia_converter)) >= ICONV_CNVNMAXLEN) in iconv_sysctl_add() 422 if (iconv_lookupconv(din.ia_converter, &dcp) != 0) in iconv_sysctl_add() 425 error = iconv_register_cspair(din.ia_to, din.ia_from, dcp, NULL, &csp); in iconv_sysctl_add() 430 if (din.ia_datalen) { in iconv_sysctl_add() [all …]
|
| /freebsd-12-stable/usr.sbin/makefs/ |
| D | ffs.c | 772 union dinode din; in ffs_populate_dir() local 840 membuf = ffs_build_dinode1(&din.ffs1_din, &dirbuf, cur, in ffs_populate_dir() 843 membuf = ffs_build_dinode2(&din.ffs2_din, &dirbuf, cur, in ffs_populate_dir() 855 ffs_write_file(&din, cur->inode->ino, membuf, fsopts); in ffs_populate_dir() 857 ffs_write_file(&din, cur->inode->ino, in ffs_populate_dir() 861 ffs_write_inode(&din, cur->inode->ino, fsopts); in ffs_populate_dir() 891 ffs_write_file(union dinode *din, uint32_t ino, void *buf, fsinfo_t *fsopts) in ffs_write_file() argument 902 assert (din != NULL); in ffs_write_file() 907 isfile = S_ISREG(DIP(din, mode)); in ffs_write_file() 918 ino, din, isfile, inode_type(DIP(din, mode) & S_IFMT), in ffs_write_file() [all …]
|
| /freebsd-12-stable/contrib/tnftp/src/ |
| D | ftp.c | 518 empty(FILE *ecin, FILE *din, int sec) in empty() argument 529 if (din) { in empty() 530 pfd[nfd].fd = fileno(din); in empty() 541 if (din) in empty() 893 FILE *volatile din; in recvrequest() local 912 din = NULL; in recvrequest() 1006 din = dataconn("r"); in recvrequest() 1007 if (din == NULL) in recvrequest() 1055 c = copy_bytes(fileno(din), fileno(fout), buf, bufsize, in recvrequest() 1085 while ((c = getc(din)) != EOF) { in recvrequest() [all …]
|
| /freebsd-12-stable/sys/dev/mlx5/mlx5_core/ |
| D | mlx5_cq.c | 129 u32 din[MLX5_ST_SZ_DW(destroy_cq_in)] = {0}; in mlx5_core_create_cq() local 157 MLX5_SET(destroy_cq_in, din, opcode, MLX5_CMD_OP_DESTROY_CQ); in mlx5_core_create_cq() 158 MLX5_SET(destroy_cq_in, din, cqn, cq->cqn); in mlx5_core_create_cq() 159 mlx5_cmd_exec(dev, din, sizeof(din), dout, sizeof(dout)); in mlx5_core_create_cq()
|
| D | mlx5_qp.c | 127 u32 din[MLX5_ST_SZ_DW(destroy_qp_in)] = {0}; in mlx5_core_create_qp() local 150 mlx5_cmd_exec(dev, din, sizeof(din), dout, sizeof(dout)); in mlx5_core_create_qp() 357 u32 din[MLX5_ST_SZ_DW(destroy_dct_in)] = {0}; in mlx5_core_create_dct() local 387 MLX5_SET(destroy_dct_in, din, opcode, MLX5_CMD_OP_DESTROY_DCT); in mlx5_core_create_dct() 388 MLX5_SET(destroy_dct_in, din, dctn, dct->dctn); in mlx5_core_create_dct() 389 mlx5_cmd_exec(dev, &din, sizeof(din), dout, sizeof(dout)); in mlx5_core_create_dct()
|
| /freebsd-12-stable/crypto/heimdal/appl/ftp/ftp/ |
| D | ftp.c | 900 FILE *fout = NULL, *din = NULL; in recvrequest() local 1006 din = dataconn ("r"); in recvrequest() 1007 if (din == NULL) in recvrequest() 1009 set_buffer_size (fileno (din), 1); in recvrequest() 1046 while ((c = sec_read (fileno (din), buf, bufsize)) > 0) { in recvrequest() 1098 while ((c = sec_getc(din)) != EOF) { in recvrequest() 1108 if ((c = sec_getc (din)) != '\n' || tcrflag) { in recvrequest() 1136 if (ferror (din)) { in recvrequest() 1150 fclose (din); in recvrequest() 1168 abort_remote(din); in recvrequest() [all …]
|
| /freebsd-12-stable/contrib/opie/ |
| D | opieftpd.c | 728 FILE *fout, *din; variable 770 din = dataconn(name, (off_t) - 1, "r"); 771 if (din == NULL) 773 if (receive_data(din, fout) == 0) { 780 fclose(din);
|
| /freebsd-12-stable/crypto/heimdal/appl/ftp/ftpd/ |
| D | ftpd.c | 1103 FILE *fout, *din; in do_store() local 1158 din = dataconn(name, (off_t)-1, "r"); in do_store() 1159 if (din == NULL) in do_store() 1161 set_buffer_size(fileno(din), 1); in do_store() 1162 if (receive_data(din, fout) == 0) { in do_store() 1174 fclose(din); in do_store()
|
| /freebsd-12-stable/share/vt/fonts/ |
| D | INDEX.fonts | 25 MENU:da:Vælg skrifttypen til din terminal
|
| /freebsd-12-stable/libexec/ftpd/ |
| D | ftpd.c | 1776 FILE *fout, *din; in store() local 1844 din = dataconn(name, -1, "r"); in store() 1845 if (din == NULL) in store() 1847 if (receive_data(din, fout) == 0) { in store() 1854 (void) fclose(din); in store()
|
| /freebsd-12-stable/sys/gnu/dts/arm/ |
| D | imx6dl-eckelmann-ci4x10.dts | 48 din-gpios = <&gpio6 11 GPIO_ACTIVE_HIGH>;
|
| D | tegra124-apalis.dtsi | 80 dap3-din-pp1 { 151 dap2-din-pa4 { 1262 dap1-din-pn1 { /* NC */ 1325 dap4-din-pp5 { /* NC */
|
| D | tegra124-apalis-v1.2.dtsi | 81 dap3-din-pp1 { 152 dap2-din-pa4 { 1265 dap1-din-pn1 { /* NC */ 1328 dap4-din-pp5 { /* NC */
|
| D | tegra30-colibri.dtsi | 94 dap4-din-pp5 {
|
| /freebsd-12-stable/sys/contrib/zstd/tests/ |
| D | zstreamtest.c | 165 ZSTD_inBuffer din = {compressed, 0, 0}; in SEQ_roundTrip() local 172 din.size = cout.pos; in SEQ_roundTrip() 173 while (din.pos < din.size || (endOp == ZSTD_e_end && cret == 0)) { in SEQ_roundTrip() 178 dret = ZSTD_decompressStream(dctx, &dout, &din); in SEQ_roundTrip()
|
| /freebsd-12-stable/share/misc/ |
| D | iso639 | 150 din din Dinka
|
| /freebsd-12-stable/tests/sys/acl/ |
| D | tools-nfs4-psarc.test | 364 > group:41:r-----a-------:-din---:allow
|
| D | tools-nfs4.test | 561 > group:41:r-----a-------:-din---:allow
|
| /freebsd-12-stable/contrib/ntp/ |
| D | NEWS | 1187 Probably din't get them all, though. <perlinger@ntp.org>
|