Lines Matching defs:unit
268 CHECK_DEPTH(env, 3, "pci:encode-unit");
281 debug_msg(DEBUG_REG_ACCESS, "pci:encode-unit ( %x ) -> %s\n",
289 int lo, hi, unit;
292 CHECK_DEPTH(env, 2, "pci:decode-unit");
295 throw_from_fclib(env, 1, "pci:decode-unit: '%s'", buf);
297 unit = ((hi & 0x1f) << 11);
298 unit |= ((lo & 0xff) << 8);
300 debug_msg(DEBUG_REG_ACCESS, "pci:decode-unit ( '%s' ) -> 0 0 %x\n",
301 buf, unit);
304 PUSH(DS, unit);
375 FORTH(0, "decode-unit", do_decode_unit);
376 FORTH(0, "encode-unit", do_encode_unit);