HomeSort by: relevance | last modified time | path
    Searched defs:units (Results 1 - 25 of 71) sorted by relevancy

1 2 3

  /src/crypto/external/bsd/heimdal/dist/lib/roken/
parse_units.h 54 struct units { struct
60 parse_units (const char *s, const struct units *units,
64 print_units_table (const struct units *units, FILE *f);
67 parse_flags (const char *s, const struct units *units,
71 unparse_units (int num, const struct units *units, char *s, size_t len);
74 unparse_units_approx (int num, const struct units *units, char *s
    [all...]
  /src/sys/arch/sparc/dev/
tctrlvar.h 43 u_int units; member in struct:envsys_sensor
  /src/external/bsd/kyua-cli/dist/utils/
units.hpp 29 /// \file utils/units.hpp
30 /// Formatters and parsers of user-friendly units.
44 namespace units { namespace in namespace:utils
91 } // namespace units
  /src/external/gpl2/groff/dist/src/roff/troff/
reg.h 28 virtual int get_value(units *);
31 virtual void set_increment(units);
34 virtual void set_value(units);
54 void set_increment(units);
56 void add_value(units);
58 void set_value(units) = 0; member in class:general_reg
59 int get_value(units *) = 0;
63 units *ptr;
66 void set_value(units);
67 int get_value(units *);
    [all...]
troff.h 38 typedef int units; typedef
40 extern units scale(units n, units x, units y); // scale n by x/y
42 extern units units_per_inch;
  /src/sys/arch/mips/cavium/include/
bootbusvar.h 47 const struct bootbus_unit *units; member in struct:bootbus_dev
iobusvar.h 49 const struct iobus_unit *units; member in struct:iobus_dev
  /src/external/bsd/kyua-cli/dist/engine/
metadata.hpp 48 namespace units { class bytes; } namespace in namespace:utils
90 const utils::units::bytes& required_memory(void) const;
131 metadata_builder& set_required_memory(const utils::units::bytes&);
  /src/sys/dev/ofw/
ofbus.c 120 int child, units; local
153 units = 1;
157 units = 7; /* What about wide or hostid != 7? XXX */
159 units = 2;
175 for (oba2.oba_unit = 0; oba2.oba_unit < units;
177 if (units > 1) {
206 for (oba2.oba_unit = 0; oba2.oba_unit < units;
208 if (units > 1) {
  /src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/engine/gr/
priv.h 28 /* Returns chipset-specific counts of units packed into an u64.
30 u64 (*units)(struct nvkm_gr *); member in struct:nvkm_gr_func
nouveau_nvkm_engine_gr_nv50.c 291 u32 units = nvkm_rd32(device, 0x1540); local
297 if (!(units & 1 << (i+24)))
335 u32 units = nvkm_rd32(device, 0x1540); local
341 if (!(units & (1 << i)))
410 nvkm_error(subdev, "TRAP: no units reporting traps?\n");
414 /* DISPATCH: Relays commands to other units and handles NOTIFY,
590 /* TEXTURE: CUDA texturing units */
688 int ret, units, i; local
701 units = nvkm_rd32(device, 0x001540);
703 if (!(units & (1 << i))
    [all...]
  /src/games/trek/
phaser.c 63 ** of units to fire, and the spread angle. In automatic
64 ** mode, you give only the total number of units to fire.
86 int units; member in struct:banks
157 bank[i].units = 0;
161 printf("%d units available\n", Ship.energy);
167 hit = getintpar("units");
179 b->units = hit;
200 printf("%d units available\n", Ship.energy);
201 hit = getintpar("Units to fire");
230 b->units = ((n - i) / tot) * extra
    [all...]
  /src/sys/arch/atari/stand/ahdilabel/
ahdilabel.c 61 int flags, rv, key, units; local
110 units = UNITS_SECTORS;
112 show_parts (&ptable, 0, ptable.nparts, units);
127 change_part (&ptable, key - 'A', units);
136 show_parts (&ptable, 0, ptable.nparts, units);
145 if (units == UNITS_SECTORS) {
146 printf ("Units now cylinder/track/sector\n");
147 units = UNITS_CTS;
149 printf ("Units now sector\n");
150 units = UNITS_SECTORS
    [all...]
  /src/sys/dev/i2c/
ibmhawk.c 56 uint32_t units; member in struct:ibmhawk_sensordesc
273 ibmhawk_normalize(int value, uint32_t units)
279 switch (units) {
315 dp->units = sp->units;
318 ibmhawk_normalize(sd->ihs_warnmin, dp->units);
320 ibmhawk_normalize(sd->ihs_warnmax, dp->units);
326 dp->value_cur = ibmhawk_normalize(value, dp->units);
  /src/usr.bin/make/unit-tests/
varmisc.mk 50 M_cmpv.units= 1 1000 1000000
51 M_cmpv= S,., ,g:_:range:@i@+ $${_:[-$$i]} \* $${M_cmpv.units:[$$i]}@:S,^,expr 0 ,1:sh
  /src/crypto/external/bsd/openssh/dist/
fmt_scaled.c 60 static unit_type units[] = { NONE, KILO, MEGA, GIGA, TERA, PETA, EXA }; variable
71 #define SCALE_LENGTH (sizeof(units)/sizeof(units[0]))
215 unit = units[i];
  /src/sys/arch/sparc/stand/ofwboot/
ofdev.c 367 cell_t units[4], phandle, myself, depth = 0, odepth = 0, cnt; local
387 &units[0], &units[1], &units[2], &units[3]);
411 bi_unit.lun = units[cnt > 2 ? 3 : 1];
412 bi_unit.target = units[cnt > 2 ? 2 : 0];
414 bi_unit.wwn = (uint64_t)units[0] << 32 | (uint32_t)units[1];
  /src/sys/external/bsd/common/include/linux/
bitops.h 124 const unsigned units = (sizeof(unsigned long) * CHAR_BIT); local
126 return ((p[n / units] & (1UL << (n % units))) != 0);
132 const unsigned units = (sizeof(unsigned long) * CHAR_BIT); local
134 p[n / units] |= (1UL << (n % units));
140 const unsigned units = (sizeof(unsigned long) * CHAR_BIT); local
142 p[n / units] &= ~(1UL << (n % units));
148 const unsigned units = (sizeof(unsigned long) * CHAR_BIT) local
156 const unsigned int units = (sizeof(*ptr) * CHAR_BIT); local
170 const unsigned int units = (sizeof(*ptr) * CHAR_BIT); local
184 const unsigned int units = (sizeof(*ptr) * CHAR_BIT); local
292 const unsigned int units = (sizeof(*ptr) * CHAR_BIT); local
301 const unsigned int units = (sizeof(*ptr) * CHAR_BIT); local
310 const unsigned int units = (sizeof(*ptr) * CHAR_BIT); local
320 const unsigned int units = (sizeof(*ptr) * CHAR_BIT); local
332 const unsigned int units = (sizeof(*ptr) * CHAR_BIT); local
347 const unsigned int units = (sizeof(*ptr) * CHAR_BIT); local
362 const unsigned int units = (sizeof(*ptr) * CHAR_BIT); local
    [all...]
  /src/external/gpl3/gdb.old/dist/sim/common/
sim-model.h 60 /* Array of function units used by this insn. */
61 UNIT units[MAX_UNITS]; member in struct:__anon21957
  /src/external/gpl3/gdb/dist/sim/common/
sim-model.h 60 /* Array of function units used by this insn. */
61 UNIT units[MAX_UNITS]; member in struct:__anon1442
  /src/sys/arch/arm/xilinx/
zynq_xadc.c 117 uint32_t units; member in struct:__anon1180
260 if (edata->units == ENVSYS_STEMP) {
274 KASSERT(edata->units == ENVSYS_SVOLTS_DC);
338 sc->sc_sensor[n].units = zynq_xadc_sensors[n].units;
341 if (zynq_xadc_sensors[n].units == ENVSYS_STEMP) {
  /src/external/gpl2/lvm2/dist/lib/display/
display.c 43 uint64_t units_to_bytes(const char *units, char *unit_type)
48 if (isdigit(*units)) {
49 v = (uint64_t) strtod(units, &ptr);
50 if (ptr == units)
52 units = ptr;
57 *unit_type = *units;
61 switch (*units) {
65 *unit_type = *units;
119 if (*(units + 1))
168 uint64_t units = UINT64_C(1024) local
    [all...]
  /src/sbin/ccdconfig/
ccdconfig.c 758 int *units; local
761 sys = "kern.ccd.units";
781 units = emalloc(nunits);
783 if (sysctlbyname(sys, units, &nunits, NULL, 0) == -1)
786 nunits /= sizeof(*units);
788 qsort(units, nunits, sizeof units[0], cmp_unit);
790 errs += dumpccdinfo(units[i], action);
791 free(units);
  /src/sys/arch/dreamcast/dev/maple/
maple.c 519 int units, un; local
529 units = ((unit_map & 0x1f) << 1) | 1;
533 printf("%s: unit_map 0x%x -> 0x%x (units 0x%x)\n",
535 sc->sc_port_unit_map[port], unit_map, units);
540 un = sc->sc_port_units[port] & ~units;
551 un = units & ~sc->sc_port_units[port];
  /src/sys/sys/
envsys.h 50 /* sensor units */
137 /* see units below */
141 unsigned int units; /* type of sensor */ member in struct:envsys_tre_data
190 unsigned int units; /* type of sensor */ member in struct:envsys_basic_info

Completed in 41 milliseconds

1 2 3