| /freebsd-14.2/lib/libc/iconv/ |
| H A D | citrus_db_factory.c | 72 struct _citrus_db_factory *df; in _citrus_db_factory_create() local 74 df = malloc(sizeof(*df)); in _citrus_db_factory_create() 75 if (df == NULL) in _citrus_db_factory_create() 77 df->df_num_entries = 0; in _citrus_db_factory_create() 78 df->df_total_key_size = df->df_total_data_size = 0; in _citrus_db_factory_create() 79 STAILQ_INIT(&df->df_entries); in _citrus_db_factory_create() 80 df->df_hashfunc = hashfunc; in _citrus_db_factory_create() 83 *rdf = df; in _citrus_db_factory_create() 101 free(df); in _citrus_db_factory_free() 130 df->df_num_entries++; in _citrus_db_factory_add() [all …]
|
| H A D | citrus_lookup_factory.c | 50 convert_line(struct _citrus_db_factory *df, const char *line, size_t len) in convert_line() argument 75 return (_db_factory_addstr_by_s(df, key, data)); in convert_line() 79 dump_db(struct _citrus_db_factory *df, struct _region *r) in dump_db() argument 84 size = _db_factory_calc_size(df); in dump_db() 90 return (_db_factory_serialize(df, _CITRUS_LOOKUP_MAGIC, r)); in dump_db() 96 struct _citrus_db_factory *df; in _citrus_lookup_factory_convert() local 102 ret = _db_factory_create(&df, &_db_hash_std, NULL); in _citrus_lookup_factory_convert() 107 if ((ret = convert_line(df, line, size))) { in _citrus_lookup_factory_convert() 108 _db_factory_free(df); in _citrus_lookup_factory_convert() 112 ret = dump_db(df, &r); in _citrus_lookup_factory_convert() [all …]
|
| H A D | citrus_pivot_factory.c | 158 struct _db_factory *df; in dump_db() local 165 ret = _db_factory_create(&df, &_db_hash_std, NULL); in dump_db() 179 ret = _db_factory_add_by_s(df, se->se_name, &subr, 1); in dump_db() 184 size = _db_factory_calc_size(df); in dump_db() 190 ret = _db_factory_serialize(df, _CITRUS_PIVOT_MAGIC, r); in dump_db() 195 _db_factory_free(df); in dump_db()
|
| /freebsd-14.2/sys/kern/ |
| H A D | subr_pcpu.c | 123 struct dpcpu_free *df; in dpcpu_startup() local 125 df = malloc(sizeof(*df), M_PCPU, M_WAITOK | M_ZERO); in dpcpu_startup() 167 struct dpcpu_free *df; in dpcpu_alloc() local 179 free(df, M_PCPU); in dpcpu_alloc() 183 df->df_len -= size; in dpcpu_alloc() 184 df->df_start = df->df_start + size; in dpcpu_alloc() 218 if (df->df_start + df->df_len == start) { in dpcpu_free() 219 df->df_len += size; in dpcpu_free() 221 if (df->df_start + df->df_len == dn->df_start) { in dpcpu_free() 231 df->df_len += size; in dpcpu_free() [all …]
|
| /freebsd-14.2/sbin/dump/ |
| H A D | itime.c | 74 FILE *df; in initdumptimes() local 91 (void) fclose(df); in initdumptimes() 99 readdumptimes(df); in initdumptimes() 100 (void) fclose(df); in initdumptimes() 104 readdumptimes(FILE *df) in readdumptimes() argument 164 FILE *df; in putdumptime() local 175 fd = fileno(df); in putdumptime() 181 readdumptimes(df); in putdumptime() 206 dumprecout(df, dtwalk); in putdumptime() 208 if (fflush(df)) in putdumptime() [all …]
|
| /freebsd-14.2/sys/net/ |
| H A D | vnet.c | 354 df = malloc(sizeof(*df), M_VNET_DATA_FREE, M_WAITOK | M_ZERO); in vnet_data_startup() 387 if (df->vnd_len < size) in vnet_data_alloc() 396 df->vnd_len -= size; in vnet_data_alloc() 397 df->vnd_start = df->vnd_start + size; in vnet_data_alloc() 425 if (df->vnd_start > end) in vnet_data_free() 431 if (df->vnd_start + df->vnd_len == start) { in vnet_data_free() 432 df->vnd_len += size; in vnet_data_free() 434 if (df->vnd_start + df->vnd_len == dn->vnd_start) { in vnet_data_free() 444 df->vnd_start = start; in vnet_data_free() 445 df->vnd_len += size; in vnet_data_free() [all …]
|
| /freebsd-14.2/contrib/netbsd-tests/fs/puffs/h_dtfs/ |
| H A D | dtfs_subr.c | 214 free(df->df_blocks[i]); in dtfs_freenode() 216 free(df->df_blocks[i]); in dtfs_freenode() 219 free(df->df_linktarget); in dtfs_freenode() 232 free(df); in dtfs_freenode() 253 free(df->df_blocks[i]); in dtfs_setsize() 255 df->df_blocks = erealloc(df->df_blocks, in dtfs_setsize() 268 df->df_datalen = newsize; in dtfs_setsize() 320 df->df_dotdot = NULL; in dtfs_removedent() 348 struct dtfs_file *df; in dtfs_isunder() local 353 df = DTFS_CTOF(pn); in dtfs_isunder() [all …]
|
| H A D | dtfs_vnops.c | 47 struct dtfs_file *df = DTFS_CTOF(opc); in dtfs_node_lookup() local 54 if (df->df_dotdot == NULL) in dtfs_node_lookup() 57 assert(df->df_dotdot->pn_va.va_type == VDIR); in dtfs_node_lookup() 58 puffs_newinfo_setcookie(pni, df->df_dotdot); in dtfs_node_lookup() 224 struct dtfs_file *df = DTFS_CTOF(targ); in dtfs_node_rmdir() local 226 if (!LIST_EMPTY(&df->df_dirents)) in dtfs_node_rmdir() 416 struct dtfs_file *df = DTFS_CTOF(opc); in dtfs_node_readlink() local 457 struct dtfs_file *df = DTFS_CTOF(opc); in dtfs_node_read() local 465 xfer = MIN(*resid, df->df_datalen - offset); in dtfs_node_read() 495 struct dtfs_file *df = DTFS_CTOF(opc); in dtfs_node_write() local [all …]
|
| /freebsd-14.2/contrib/sendmail/src/ |
| H A D | collect.c | 202 SM_FILE_T *df; local 215 if (df == NULL) 232 return df; 393 df = NULL; 798 if (df == NULL) 849 if (df == NULL) 854 else if (sm_io_flush(df, SM_TIME_DEFAULT) != 0 || sm_io_error(df)) 918 df = NULL; 980 SM_CLOSE_FP(df); 1068 e->e_dfp = df; [all …]
|
| /freebsd-14.2/lib/msun/src/ |
| H A D | e_acosf.c | 40 float z,p,q,r,w,s,c,df; in acosf() local 70 df = s; in acosf() 71 GET_FLOAT_WORD(idf,df); in acosf() 72 SET_FLOAT_WORD(df,idf&0xfffff000); in acosf() 73 c = (z-df*df)/(s+df); in acosf() 78 return (float)2.0*(df+w); in acosf()
|
| H A D | e_acos.c | 64 double z,p,q,r,w,s,c,df; in acos() local 95 df = s; in acos() 96 SET_LOW_WORD(df,0); in acos() 97 c = (z-df*df)/(s+df); in acos() 102 return 2.0*(df+w); in acos()
|
| H A D | e_acosl.c | 44 long double z,p,q,r,w,s,c,df; in acosl() local 76 df = u.e; in acosl() 77 c = (z-df*df)/(s+df); in acosl() 82 return 2.0*(df+w); in acosl()
|
| /freebsd-14.2/usr.bin/mkesdb/ |
| H A D | yacc.y | 132 struct _db_factory *df; in dump_file() local 156 CHKERR(ret, _db_factory_create, (&df, _db_hash_std, NULL)); in dump_file() 159 CHKERR(ret, _db_factory_add32_by_s, (df, _CITRUS_ESDB_SYM_VERSION, in dump_file() 163 CHKERR(ret, _db_factory_addstr_by_s, (df, _CITRUS_ESDB_SYM_ENCODING, in dump_file() 169 (df, _CITRUS_ESDB_SYM_VARIABLE, variable)); in dump_file() 173 CHKERR(ret, _db_factory_add32_by_s, (df, in dump_file() 177 CHKERR(ret, _db_factory_add32_by_s, (df, _CITRUS_ESDB_SYM_NUM_CHARSETS, in dump_file() 184 (df, buf, csid->ci_symbol)); in dump_file() 187 CHKERR(ret, _db_factory_add32_by_s, (df, buf, csid->ci_csid)); in dump_file() 201 size = _db_factory_calc_size(df); in dump_file() [all …]
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/Mips/ |
| H A D | MipsMSAInstrFormats.td | 87 let Inst{17-16} = df; 98 let Inst{17-16} = df; 109 let Inst{17-16} = df; 120 let Inst{16} = df; 132 let Inst{22-21} = df; 145 let Inst{21} = df; 158 let Inst{22-21} = df; 357 let Inst{22-21} = df; 381 let Inst{22-21} = df; 395 let Inst{1-0} = df; [all …]
|
| /freebsd-14.2/contrib/ntp/ntpd/ |
| H A D | ntp_config.c | 506 FILE *df, in dump_all_config_trees() argument 534 FILE *df, in dump_config_tree() argument 613 df); in dump_config_tree() 626 fprintf(df, "\n"); in dump_config_tree() 637 fprintf(df, "\n"); in dump_config_tree() 684 fprintf(df, "\n"); in dump_config_tree() 713 fprintf(df, "\n"); in dump_config_tree() 773 fprintf(df, "\n"); in dump_config_tree() 784 fprintf(df, "\n"); in dump_config_tree() 795 fprintf(df, "\n"); in dump_config_tree() [all …]
|
| /freebsd-14.2/contrib/sendmail/contrib/ |
| H A D | bounce-resender.pl | 142 $df = "df$ident"; 145 open(MSGBODY,">$df") || die "Can't write to $df: $!\n"; 146 chmod(0600, $qf, $df); 192 ($dev, $ino) = (stat($df))[0 .. 1]; 201 print MSGHDR "D$df\n"; 223 ($dev, $ino) = (stat($df))[0 .. 1]; 232 print MSGHDR "D$df\n";
|
| /freebsd-14.2/sys/contrib/openzfs/lib/libspl/ |
| H A D | strlcat.c | 41 char *df = dst; in strlcat() local 47 while (left-- != 0 && *df != '\0') in strlcat() 48 df++; in strlcat() 49 l1 = df - dst; in strlcat()
|
| /freebsd-14.2/tools/test/stress2/tools/ |
| H A D | iwatch.sh | 36 istart=`df -ik $RUNDIR | tail -1 | awk '{print $6}'` 37 kstart=`df -ik $RUNDIR | tail -1 | awk '{print $3}'` 39 i=`df -ik $RUNDIR | tail -1 | awk '{print $6}'` 40 k=`df -ik $RUNDIR | tail -1 | awk '{print $3}'`
|
| H A D | rwatch.sh | 42 istart=`df -ik $RUNDIR | tail -1 | awk '{print $6}'` 43 kstart=`df -ik $RUNDIR | tail -1 | awk '{print $3}'` 48 i=`df -ik $RUNDIR | tail -1 | awk '{print $6}'` 49 k=`df -ik $RUNDIR | tail -1 | awk '{print $3}'`
|
| /freebsd-14.2/tools/test/stress2/misc/ |
| H A D | nullfs18.sh | 47 set `df -ik $mntpoint | tail -1 | awk '{print $4,$7}'` 95 inodes=`df -i $mntpoint | tail -1 | awk '{print $6}'` 101 df -ik | sed -n "1p;/${mntpoint#/}/p" 112 df -ik | sed -n "1p;/${mntpoint#/}/p" 118 inodes=`df -i $mntpoint | tail -1 | awk '{print $6}'` 124 df -ik | sed -n "1p;/${mntpoint#/}/p"
|
| H A D | tmpfs25.sh | 42 iused=`df $mntpoint | tail -1 | awk '{print $3}'` 52 used=`df $mntpoint | tail -1 | awk '{print $3}'` 76 used=`df $mntpoint | tail -1 | awk '{print $3}'` 80 df -i $mntpoint
|
| H A D | fs.sh | 38 [ $2 -eq 1 ] && df=", disk full" || df="" 39 echo "`date '+%T'` newfs $1 md${mdstart}${part}$df" 47 set `df -ik $mntpoint | tail -1 | awk '{print $4,$7}'`
|
| /freebsd-14.2/contrib/pjdfstest/tests/ |
| H A D | conf | 18 df . | tail -1 | awk '{print $NF}' 29 #fs=`df -T . | tail -1 | awk '{print $2}'` 35 #fs=`df -T . | tail -1 | awk '{print $2}'` 41 pattern=`df -Pk . | tail -1 | awk '{printf("%s on %s \n", $1, $6)}'` 47 fs=`df -PT . | tail -1 | awk '{print toupper($2)}'`
|
| /freebsd-14.2/contrib/netbsd-tests/ipf/input/ |
| H A D | ni6 | 31 c0a8 0602 80df 0801 0030 04f0 3e10 1fb1 38 c0a8 0701 80df 0801 0030 03f1 3e10 1fb1 45 c0a8 0702 0801 80df 0020 89b7 3e10 1fb1 51 c0a8 0601 0801 80df 0020 0000 3e10 1fb1
|
| /freebsd-14.2/sys/contrib/libsodium/test/default/ |
| H A D | pwhash_scrypt_ll.exp | 3 f1 6b 48 44 e3 07 4a e8 df df fa 3f ed e2 14 42 10 c7 27 af b9 4a 83 ee 6d 83 60 cb df a2 cc 06 40 15 e6 1e 85 dc 0d 65 1e 40 df cf 01 7b 45 57 58 87
|