Lines Matching defs:unit
237 CHECK_DEPTH(env, 3, "pci:encode-unit");
250 debug_msg(DEBUG_REG_ACCESS, "pci:encode-unit ( %x ) -> %s\n",
258 int lo, hi, unit;
261 CHECK_DEPTH(env, 2, "pci:decode-unit");
264 throw_from_fclib(env, 1, "pci:decode-unit: '%s'", buf);
266 unit = ((hi & 0x1f) << 11);
267 unit |= ((lo & 0x7) << 8);
268 debug_msg(DEBUG_REG_ACCESS, "pci:decode-unit ( '%s' ) -> 0 0 %x\n",
269 buf, unit);
272 PUSH(DS, unit);
339 FORTH(0, "decode-unit", do_decode_unit);
340 FORTH(0, "encode-unit", do_encode_unit);