| /dflybsd-src/sbin/dump/ |
| H A D | main.c | 70 int density = 0; /* density in bytes/0.1" " <- this is for hilit19 */ variable 159 density = numarg("density", 10L, 327670L) / 10; in main() 160 if (density >= 625 && !bflag) in main() 258 if (density == 0) in main() 259 density = cartridge ? 100 : 160; in main() 396 * (1.0/density) /* 0.1" / byte " */ in main() 405 int tenthsperirg = (density == 625) ? 3 : 7; in main() 409 * (1.0/density) /* 0.1" / byte " */ in main()
|
| H A D | dump.h | 72 extern int density; /* density in 0.1" units */
|
| H A D | tape.c | 132 tenths = writesize / density + in alloctape() 133 (cartridge ? 16 : density == 625 ? 5 : 8); in alloctape()
|
| /dflybsd-src/sys/dev/misc/ecc/ |
| H A D | ecc_e5.c | 209 int density; in ecc_e5_attach() local 261 density = 2; in ecc_e5_attach() 264 density = 4; in ecc_e5_attach() 267 density = 8; in ecc_e5_attach() 271 density = 1; in ecc_e5_attach() 283 dimm, density * rank_cnt * 2, in ecc_e5_attach() 284 rank_cnt, width, density); in ecc_e5_attach()
|
| /dflybsd-src/usr.sbin/makefs/ffs/ |
| H A D | mkfs.c | 109 static int density; /* number of bytes per inode */ variable 143 density = ffs_opts->density; in ffs_mkfs() 353 if (density == 0) in ffs_mkfs() 354 density = MAX(2, minfragsperinode) * fsize; in ffs_mkfs() 355 if (density < mindensity) { in ffs_mkfs() 356 origdensity = density; in ffs_mkfs() 357 density = mindensity; in ffs_mkfs() 359 origdensity, density); in ffs_mkfs() 361 origdensity = density; in ffs_mkfs() 363 density = MIN(density, MAX(2, minfragsperinode) * fsize); in ffs_mkfs() [all …]
|
| /dflybsd-src/sbin/newfs/ |
| H A D | newfs.c | 180 int density; /* number of bytes per inode */ variable 312 if ((density = atoi(optarg)) <= 0) in main() 587 if (density == 0) in main() 588 density = NFPI * fsize; in main()
|
| H A D | mkfs.c | 88 extern int density; /* number of bytes per inode */ 425 printf("With %d bytes per inode, ", density); in mkfs() 1119 new_ipg = (cylspg * (quad_t)bpcg - usedb) / density * fssize in calcipg()
|
| /dflybsd-src/contrib/file/magic/Magdir/ |
| H A D | scientific | 17 # Electron density MAP/MASK formats 28 9 string \040!NTITLE\012\040REMARK CNS ASCII electron density map
|
| H A D | jpeg | 37 >>14 beshort x \b, density %dx
|
| H A D | filesystems | 1884 # FE 250K 8-inch, 1-sided, single-density 1885 # FD 500K 8-inch, 2-sided, single-density 1886 # FE 1.2 MB 8-inch, 2-sided, double-density 1901 # 111111xx Low density disk 1907 # 11111001 Double density 3 1/2 floppy disk, high density 5 1/4 1908 # 11110000 High density 3 1/2 floppy disk
|
| /dflybsd-src/usr.sbin/makefs/ |
| H A D | ffs.h | 55 int density; /* bytes per inode */ member
|
| H A D | ffs.c | 173 { 'd', "density", &ffs_opts->density, OPT_INT32, in ffs_prep_opts() 207 ffs_opts->density= -1; 456 if (ffs_opts->density == -1) in ffs_validate() 457 ffs_opts->density = fsopts->size / fsopts->inodes + 1; in ffs_validate() 493 fs->bsize, fs->fsize, fs->cpg, fs->density); in ffs_dump_fsinfo()
|
| /dflybsd-src/sys/bus/cam/scsi/ |
| H A D | scsi_sa.c | 387 u_int32_t *blocksize, u_int8_t *density, 395 u_int32_t blocksize, u_int8_t density, 2543 u_int32_t *blocksize, u_int8_t *density, u_int32_t *numblocks, in sagetparams() argument 2669 *density = mode_blk->density; in sagetparams() 2737 u_int32_t blocksize, u_int8_t density, u_int32_t calg, in sasetparams() argument 2818 mode_blk->density = density; in sasetparams() 2820 mode_blk->density = SCSI_SAME_DENSITY; in sasetparams() 2822 mode_blk->density = softc->media_density; in sasetparams() 3001 mode_blk->density = current_density; in sasetparams() 3003 mode_blk->density = SCSI_SAME_DENSITY; in sasetparams() [all …]
|
| H A D | scsi_cd.h | 403 u_int8_t density; member
|
| H A D | scsi_all.h | 981 u_int8_t density; member
|
| H A D | scsi_cd.c | 4259 outlayer->linear_density = (inlayer->density & in cdreaddvdstructure() 4261 outlayer->track_density = (inlayer->density & in cdreaddvdstructure()
|
| /dflybsd-src/initrd/ |
| H A D | mkinitrd.sh | 125 makefs -m ${INITRD_SIZE}m -M ${INITRD_SIZE}m -t ffs -o density=131072 \
|
| /dflybsd-src/contrib/binutils-2.27/gas/doc/ |
| H A D | c-xtensa.texi | 251 generation of density instructions where appropriate and automatic 261 @cindex density instructions 263 The Xtensa instruction set has a code density option that provides 268 density option. This translation can be disabled by using underscore 274 It is a good idea @emph{not} to use the density instructions directly. 277 density option, the same assembly code will then work without modification. 303 density instructions in the code preceding a target, the assembler can 374 density option is available. Otherwise, @code{BNEZ} would be used.) 587 instruction (or the equivalent @code{OR} instruction if the code density
|
| H A D | c-arc.texi | 87 @cindex @code{-mcode-density} command line option, ARC 88 @item -mcode-density
|
| /dflybsd-src/sys/netproto/802_11/wlan/ |
| H A D | ieee80211_ht.c | 2726 int rxmax, density; in ieee80211_add_htcap_body() local 2747 density = MS(ni->ni_htparam, IEEE80211_HTCAP_MPDUDENSITY); in ieee80211_add_htcap_body() 2753 density, in ieee80211_add_htcap_body() 2767 if (vap->iv_ampdu_density > density) in ieee80211_add_htcap_body() 2768 density = vap->iv_ampdu_density; in ieee80211_add_htcap_body() 2789 density = vap->iv_ampdu_density; in ieee80211_add_htcap_body() 2809 | SM(density, IEEE80211_HTCAP_MPDUDENSITY) in ieee80211_add_htcap_body()
|
| /dflybsd-src/contrib/gcc-8.0/libstdc++-v3/include/ext/ |
| H A D | random | 397 * The formula for the beta probability density function is: 617 * The formula for the normal probability density function is 932 * The formula for the Rice probability density function is 1187 * The formula for the Nakagami probability density function is 1416 * The formula for the Pareto probability density function is 1653 * The formula for the K probability density function is 1904 * The formula for the arcsine probability density function is 2139 * The formula for the Hoyt probability density function is 2380 * The formula for the triangular probability density function is 2640 * The formula for the von Mises probability density function is [all …]
|
| /dflybsd-src/usr.bin/compress/doc/ |
| H A D | revision.log | 46 * performance for low-density raster images. Pass on #ifdef bundle
|
| /dflybsd-src/contrib/wpa_supplicant/wpa_supplicant/ |
| H A D | wpa_supplicant.c | 4587 int density) in wpa_set_ampdu_density() argument 4589 if (density == -1) in wpa_set_ampdu_density() 4592 wpa_msg(wpa_s, MSG_DEBUG, "set_ampdu_density: %d", density); in wpa_set_ampdu_density() 4594 if (density < 0 || density > 7) { in wpa_set_ampdu_density() 4597 density); in wpa_set_ampdu_density() 4603 htcaps->a_mpdu_params |= (density << 2) & 0x1C; in wpa_set_ampdu_density()
|
| /dflybsd-src/sys/dev/drm/amd/include/ |
| H A D | atomfirmware.h | 1625 uint8_t density; // _8Mx32, _16Mx32, _16Mx16, _32Mx16 member
|
| /dflybsd-src/sys/dev/drm/radeon/ |
| H A D | si_dpm.c | 3206 u32 tmp, width, row, column, bank, density; in si_is_special_1gb_platform() local 3222 density = (1 << (row + column - 20 + bank)) * width; in si_is_special_1gb_platform() 3225 is_memory_gddr5 && is_special && (density == 0x400)) in si_is_special_1gb_platform()
|