Home
last modified time | relevance | path

Searched refs:units (Results 1 – 25 of 141) sorted by relevance

123456

/dragonfly/games/trek/
H A Dphaser.c78 int units; member
149 bank[i].units = 0; in phaser()
171 b->units = hit; in phaser()
230 extra -= b->units; in phaser()
234 b->units -= hit; in phaser()
246 b->units += extra; in phaser()
264 if (b->units > 0) in phaser()
276 if (b->units <= 0) { in phaser()
283 if (b->units <= 0) in phaser()
334 b->units -= hit; in phaser()
[all …]
/dragonfly/contrib/lvm2/dist/lib/display/
H A Ddisplay.c48 if (isdigit(*units)) { in units_to_bytes()
50 if (ptr == units) in units_to_bytes()
52 units = ptr; in units_to_bytes()
57 *unit_type = *units; in units_to_bytes()
61 switch (*units) { in units_to_bytes()
65 *unit_type = *units; in units_to_bytes()
119 if (*(units + 1)) in units_to_bytes()
261 units = UINT64_C(1000); in _display_size()
264 units = UINT64_C(1024); in _display_size()
271 byte = units * units * units * units * units * units; in _display_size()
[all …]
/dragonfly/usr.bin/units/
H A DREADME1 # $FreeBSD: src/usr.bin/units/README,v 1.4 1999/08/28 01:07:09 peter Exp $
2 # $DragonFly: src/usr.bin/units/README,v 1.2 2003/06/17 04:29:33 dillon Exp $
4 This is a program which I wrote as a clone of the UNIX 'units'
9 This program differs from the unix units program in the following
13 prefixes are listed in the units file
H A DMakefile3 PROG= units
5 FILES= units.lib
/dragonfly/contrib/lvm2/dist/test/
H A Dt-covercmd.sh21 case $(lvs --units s --nosuffix --noheadings -o $1_read_ahead "$vg"/"$lv") in
42 vgdisplay --units k
43 lvdisplay --units g
45 pvdisplay --units "$i" "$dev1"
H A Dt-inconsistent-metadata.sh24 lvs -o lv_name,lv_size --units k $vg | tee lvs.out
31 lvs -o lv_name,lv_size --units k $vg | tee lvs.out
/dragonfly/lib/libssh/openbsd-compat/
H A Dfmt_scaled.c57 static const unit_type units[] = { NONE, KILO, MEGA, GIGA, TERA, PETA, EXA }; variable
68 #define SCALE_LENGTH (sizeof(units)/sizeof(units[0]))
244 unit = units[i]; in fmt_scaled()
/dragonfly/contrib/gcc-8.0/libstdc++-v3/src/c++11/
H A Dcxx11-shim_facets.cc377 ios_base::iostate& err, long double& units) const in do_get()
384 units = units2; in do_get()
418 char_type fill, long double units) const in do_put()
420 return __money_put(other_abi{}, _M_get(), s, intl, io, fill, units, in do_put()
731 long double* units, __any_string* digits) in __money_get() argument
734 if (units) in __money_get()
735 return m->get(s, end, intl, str, err, *units); in __money_get()
760 bool intl, ios_base& io, C fill, long double units, in __money_put() argument
767 return m->put(s, intl, io, fill, units); in __money_put()
/dragonfly/sys/dev/misc/syscons/
H A Dsyscons_nexus.c135 int units; in sc_find_softc() local
142 units = devclass_get_maxunit(sc_devclass); in sc_find_softc()
143 for (i = 0; i < units; ++i) { in sc_find_softc()
/dragonfly/sys/dev/powermng/corepower/
H A Dcorepower.c88 uint32_t units, uint32_t secs);
353 corepower_energy_to_uwatts(struct corepower_softc *sc, uint32_t units, in corepower_energy_to_uwatts() argument
359 val = ((uint64_t)units) * sc->sc_joule_unit; in corepower_energy_to_uwatts()
361 val = ((uint64_t)units) * 1000ULL * 1000ULL; in corepower_energy_to_uwatts()
/dragonfly/usr.bin/tail/
H A Dtail.c231 getarg(int units, enum STYLE forward_style, enum STYLE backward_style, in getarg() argument
239 *off = strtoll(optarg, &p, 10) * units; in getarg()
245 *off -= (units); in getarg()
/dragonfly/contrib/bmake/mk/
H A Dsys.vars.mk103 M_cmpv.units = 1 1000 1000000 1000000000 1000000000000
104 M_cmpv = S,., ,g:C,^0*([0-9]),\1,:_:range:@i@+ $${_:[-$$i]} \* $${M_cmpv.units:[$$i]}@:S,^,expr 0 ,…
/dragonfly/usr.sbin/edquota/
H A Dedquota.c729 cvtatos(time_t period, char *units, time_t *seconds) in cvtatos() argument
732 if (bcmp(units, "second", 6) == 0) in cvtatos()
734 else if (bcmp(units, "minute", 6) == 0) in cvtatos()
736 else if (bcmp(units, "hour", 4) == 0) in cvtatos()
738 else if (bcmp(units, "day", 3) == 0) in cvtatos()
741 printf("%s: bad units, specify %s\n", units, in cvtatos()
/dragonfly/bin/sh/
H A Dmiscbltin.c441 const char *units; member
581 if (l->units) in ulimitcmd()
583 "(%s, -%c) ", l->units, l->option); in ulimitcmd()
/dragonfly/sys/dev/drm/include/linux/
H A Dbitops.h333 const unsigned int units = (sizeof(*ptr) * NBBY); in __test_and_clear_bit() local
334 volatile unsigned long *const p = &ptr[bit / units]; in __test_and_clear_bit()
335 const unsigned long mask = (1UL << (bit % units)); in __test_and_clear_bit()
/dragonfly/contrib/gcc-4.7/gcc/config/i386/
H A Dk6.md23 ;; any of the execution units. So we have to pay much more attention to
36 ;; CPU execution units of the K6:
129 ;; Basic word and doubleword ALU ops can be issued on both Integer units.
193 ;; The load and units have two pipeline stages. The load latency is
/dragonfly/contrib/gcc-8.0/gcc/config/i386/
H A Dk6.md22 ;; any of the execution units. So we have to pay much more attention to
35 ;; CPU execution units of the K6:
128 ;; Basic word and doubleword ALU ops can be issued on both Integer units.
192 ;; The load and units have two pipeline stages. The load latency is
H A Dbdver3.md21 ;; The bdver3 and bdver4 contains three pipelined FP units and two integer
22 ;; units. ;; Fetching and decoding logic is different from previous fam15
24 ;; and two decode units are available. The decode units therefore decode
28 ;; communicates with all the execution units separately instead.
43 ;; So, we engage all units vector instructions.
75 ;; So, they occupy all the integer units.
86 ;; Three FP units.
202 ;; BDVER3 floating point units.
/dragonfly/sys/dev/acpica/
H A Dacpi_cmbat.c354 if (acpi_PkgInt32(res, i++, &sc->bif.units) != 0) in acpi_cmbat_get_bif()
403 bifp->units = sc->bif.units; in acpi_cmbat_bif()
/dragonfly/test/stress/stress2/
H A Dhydra2.netperf.freebsd.org12 export MDSTART=5 # Start of free md units
H A Dhydra1.netperf.freebsd.org12 export MDSTART=5 # Start of free md units
H A Dbeaver1.sentex.ca14 ###export MDSTART=5 # Start of free md units
H A Dorangutan.netperf.freebsd.org14 MDSTART=5 # Start of free md units
/dragonfly/contrib/lvm2/dist/doc/
H A Dexample.conf237 units = "h"
/dragonfly/contrib/lvm2/dist/include/
H A Ddisplay.h26 uint64_t units_to_bytes(const char *units, char *unit_type);

123456