HomeSort by: relevance | last modified time | path
    Searched defs:UNIT (Results 1 - 23 of 23) sorted by relevancy

  /src/external/bsd/nsd/dist/simdzone/src/generic/
ttl.h 46 uint64_t unit = 0, last_unit = 0;
47 enum { NUMBER, UNIT } state = NUMBER;
57 } else if (!(unit = ttl_units[ (uint8_t)data[count] ])) {
60 } else if (unit == last_unit) {
63 } else if (unit < last_unit) {
66 if (UINT32_MAX / unit < number)
68 number *= unit;
71 last_unit = unit;
74 state = UNIT;
76 } else if (state == UNIT) {
    [all...]
  /src/sys/arch/luna68k/stand/boot/
samachdep.h 210 /* use following device unit number strategy to make parser easier */
211 #define UNIT(ctlr, target) ((ctlr) * 10 + (target))
212 #define CTLR(unit) ((unit) / 10)
213 #define TARGET(unit) ((unit) % 10)
  /src/external/gpl3/binutils/dist/binutils/
sysinfo.h 62 UNIT = 263 /* UNIT */
76 #define UNIT 263
sysinfo.c 138 UNIT = 263 /* UNIT */
152 #define UNIT 263
193 YYSYMBOL_UNIT = 10, /* UNIT */
618 "'('", "')'", "TYPE", "NAME", "NUMBER", "UNIT", "$accept", "top", "$@1",
1524 case 21: /* attr_size: NUMBER UNIT */
  /src/external/gpl3/binutils.old/dist/binutils/
sysinfo.h 62 UNIT = 263 /* UNIT */
76 #define UNIT 263
sysinfo.c 138 UNIT = 263 /* UNIT */
152 #define UNIT 263
193 YYSYMBOL_UNIT = 10, /* UNIT */
618 "'('", "')'", "TYPE", "NAME", "NUMBER", "UNIT", "$accept", "top", "$@1",
1524 case 21: /* attr_size: NUMBER UNIT */
  /src/sys/arch/amiga/dev/
par.c 83 #define UNIT(x) minor(x)
164 int unit = UNIT(dev); local
165 struct par_softc *sc = getparsp(unit);
167 if (unit >= NPAR || (sc->sc_flags & PARF_ALIVE) == 0)
201 int unit = UNIT(dev); local
202 struct par_softc *sc = getparsp(unit);
268 int unit = UNIT(dev) local
    [all...]
  /src/sys/arch/evbppc/virtex/dev/
xlcom.c 66 #define UNIT(dev) (minor(dev) & XLCOM_UNIT_MASK)
567 sc = device_lookup_private(&xlcom_cd, UNIT(tp->t_dev));
603 sc = device_lookup_private(&xlcom_cd, UNIT(tp->t_dev));
  /src/sys/arch/hp300/dev/
mt.c 126 #define UNIT(x) (minor(x) & 3)
328 sc = device_lookup_private(&mt_cd, UNIT(dev));
427 struct mt_softc *sc = device_lookup_private(&mt_cd,UNIT(dev));
474 sc = device_lookup_private(&mt_cd,UNIT(bp->b_dev));
ppi.c 143 #define UNIT(x) minor(x)
211 sc = device_lookup_private(&ppi_cd,UNIT(dev));
236 struct ppi_softc *sc = device_lookup_private(&ppi_cd, UNIT(dev));
298 struct ppi_softc *sc = device_lookup_private(&ppi_cd, UNIT(dev));
456 struct ppi_softc *sc = device_lookup_private(&ppi_cd,UNIT(dev));
ct.c 103 int sc_punit; /* physical unit */
212 #define UNIT(x) (minor(x) & 3)
281 * is always issued to unit 0.
338 sc->sc_clear.unit = C_SUNIT(sc->sc_punit);
344 sc->sc_src.unit = C_SUNIT(CTCTLR);
352 sc->sc_ssmc.unit = C_SUNIT(sc->sc_punit);
362 sc->sc_soptc.unit = C_SUNIT(sc->sc_punit);
378 sc = device_lookup_private(&ct_cd, UNIT(dev));
391 sc->sc_soptc.unit = C_SUNIT(sc->sc_punit);
421 struct ct_softc *sc = device_lookup_private(&ct_cd,UNIT(dev))
    [all...]
  /src/sys/arch/x68k/dev/
opmbell.c 105 #define UNIT(x) minor(x)
139 int unit; local
146 for (unit = 0; unit < num; unit++) {
147 sc = &bell_softc[unit];
156 memcpy(&vtab[unit], &bell_voice, sizeof(bell_voice));
157 opm_set_voice(sc->ch, &vtab[unit]);
159 printf("bell%d: YM2151 OPM bell emulation.\n", unit);
166 int unit = UNIT(dev) local
184 int unit = UNIT(dev); local
194 int unit = UNIT(dev); local
    [all...]
par.c 100 #define UNIT(x) minor(x)
208 int unit = UNIT(dev); local
211 sc = device_lookup_private(&par_cd, unit);
234 int unit = UNIT(dev); local
236 struct par_softc *sc = device_lookup_private(&par_cd, unit);
279 printf("parwrite(%x, %p)\n", UNIT(dev), uio);
287 int unit = UNIT(dev) local
    [all...]
itevar.h 41 #define UNIT(dev) minor(dev)
  /src/sys/dev/gpib/
ppi.c 143 #define UNIT(x) minor(x)
191 sc = device_lookup_private(&ppi_cd, UNIT(dev));
216 sc = device_lookup_private(&ppi_cd, UNIT(dev));
290 struct ppi_softc *sc = device_lookup_private(&ppi_cd, UNIT(dev));
436 struct ppi_softc *sc = device_lookup_private(&ppi_cd, UNIT(dev));
  /src/sys/external/bsd/drm2/dist/drm/i915/gt/uc/
intel_guc.c 246 #define UNIT SZ_1M
249 #define UNIT SZ_4K
254 BUILD_BUG_ON(!IS_ALIGNED(CRASH_BUFFER_SIZE, UNIT));
256 BUILD_BUG_ON(!IS_ALIGNED(DPC_BUFFER_SIZE, UNIT));
258 BUILD_BUG_ON(!IS_ALIGNED(ISR_BUFFER_SIZE, UNIT));
260 BUILD_BUG_ON((CRASH_BUFFER_SIZE / UNIT - 1) >
262 BUILD_BUG_ON((DPC_BUFFER_SIZE / UNIT - 1) >
264 BUILD_BUG_ON((ISR_BUFFER_SIZE / UNIT - 1) >
270 ((CRASH_BUFFER_SIZE / UNIT - 1) << GUC_LOG_CRASH_SHIFT) |
271 ((DPC_BUFFER_SIZE / UNIT - 1) << GUC_LOG_DPC_SHIFT)
    [all...]
  /src/external/gpl3/binutils/dist/gprof/
gprof.h 105 typedef unsigned char UNIT[2]; /* unit of profiling */
  /src/external/gpl3/binutils/dist/gprofng/src/
gmon_hist.cc 38 typedef unsigned char UNIT[2]; /* unit of profiling */
39 #define UNITS_TO_CODE (offset_to_code / sizeof(UNIT))
124 n_hist_scale = (double)(record->highpc - record->lowpc) / sizeof (UNIT)
146 "%s: dimension unit changed between histogram records\n"
165 and it would be very confusing to have one unit mean different
237 UNIT count;
274 sym->hist.scaled_addr = sym->addr / sizeof (UNIT);
343 bfd_vma lowpc = r->lowpc / sizeof (UNIT);
359 (unsigned long) (sizeof (UNIT) * bin_low_pc)
    [all...]
  /src/external/gpl3/binutils.old/dist/gprof/
gprof.h 105 typedef unsigned char UNIT[2]; /* unit of profiling */
  /src/external/gpl3/gdb/dist/sim/common/
sim-model.h 36 /* Function unit and instruction timing support.
44 } UNIT;
61 UNIT units[MAX_UNITS];
  /src/external/gpl3/gdb.old/dist/sim/common/
sim-model.h 36 /* Function unit and instruction timing support.
44 } UNIT;
61 UNIT units[MAX_UNITS];
  /src/sys/dev/pci/bktr/
bktr_os.c 337 unsigned int unit; local
345 unit = device_get_unit(dev);
348 snprintf(bktr->bktr_xname, sizeof(bktr->bktr_xname), "bktr%d",unit);
386 unit, (old_irq & 0xff), (new_irq & 0xff));
430 if (bt848_i2c_attach(unit, bktr, &bktr->i2c_sc))
431 printf("bktr%d: i2c_attach: can't attach\n", unit);
446 printf("brooktree%d: PCI bus latency is", unit);
449 unit);
464 if (common_bktr_attach(bktr, unit, fun, rev) == 0)
468 bktr->bktrdev = make_dev(&bktr_cdevsw, unit,
503 unsigned int unit; local
599 int unit; local
679 int unit; local
718 int unit; local
756 int unit; local
787 int unit; local
816 int unit; local
1104 int unit; local
1167 int unit; local
1194 int unit; local
1228 int unit; local
1257 int unit; local
1281 int unit; local
1406 int unit; local
1461 int unit; local
1661 int unit; local
1694 int unit; local
1719 int unit; local
1754 int unit; local
1779 int unit; local
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/radeon/
sumod.h 321 # define UNIT(x) ((x) << 24)

Completed in 47 milliseconds