HomeSort by: relevance | last modified time | path
    Searched refs:Tag (Results 1 - 25 of 26) sorted by relevancy

1 2

  /src/sys/arch/ibmnws/include/
pnp.h 10 /* long tag types for platform dependent information */
484 /* Define a bunch of access functions for the bits in the tag field */
486 /* Tag type - 0 = small; 1 = large */
502 /* a PnP resource is a bunch of contiguous TAG packets ending with an end tag */
506 unsigned char Tag; /* small tag = 0x0a */
511 unsigned char Tag; /* small tag = 0x15 or 0x16 */
519 unsigned char Tag; /* small tag = 0x1c *
    [all...]
  /src/sys/arch/prep/include/
pnp.h 10 /* long tag types for platform dependent information */
509 /* Define a bunch of access functions for the bits in the tag field */
511 /* Tag type - 0 = small; 1 = large */
527 /* a PnP resource is a bunch of contiguous TAG packets ending with an end tag */
531 unsigned char Tag; /* small tag = 0x0a */
536 unsigned char Tag; /* small tag = 0x15 or 0x16 */
544 unsigned char Tag; /* small tag = 0x1c *
    [all...]
chpidpnp.h 40 #define ChipID_Packet 0x70 /* tag for ChipIdPack without size */
122 /* small tag = 0x7n with n bytes. Type == 1 for ChipID
138 unsigned char Tag;
  /src/sys/arch/emips/ebus/
ac97_ebus.c 40 #define STUBMATCH(_f_) ((_f_)->Tag == PMTTAG_AC97)
evga_ebus.c 40 #define STUBMATCH(_f_) ((_f_)->Tag == PMTTAG_VGA)
ps2_ebus.c 40 #define STUBMATCH(_f_) ((_f_)->Tag == PMTTAG_PS2)
gpio_ebus.c 77 (f->Tag != PMTTAG_GPIO))
116 /* Create controller tag */
icap_ebus.c 113 DEBUG_PRINT(("icap_match %x\n", (f) ? f->Tag : 0), DEBUG_PROBE);
117 (! (f->Tag == PMTTAG_ICAP)))
clock_ebus.c 292 (mc->Tag != PMTTAG_TIMER))
dz_ebus.c 640 (us->Tag != PMTTAG_USART))
ace_ebus.c 218 ((sac->Tag & SAC_TAG) != PMTTAG_SYSTEM_ACE))
591 printf("\tTag %x\n", regs->Tag);
if_le_ebus.c 149 if ((et == NULL) || (et->Tag != PMTTAG_ETHERNET))
  /src/sys/external/bsd/acpica/dist/common/
dmrestag.c 209 * Resource Tag tables
493 * Dispatch table used to obtain the correct tag table for a descriptor.
634 /* Major cheat: The Node field is also used for the Tag ptr. Clear it now */
686 /* Translate the Index to a resource tag pathname */
750 * RETURN: Full pathname for a resource tag. NULL if no match.
753 * DESCRIPTION: Convert a BitIndex into a symbolic resource tag (full pathname)
773 char *Tag;
800 /* Get the tag associated with this resource descriptor and offset */
802 Tag = AcpiDmGetResourceTag (ResourceBitIndex, Aml, ResourceTableIndex);
803 if (!Tag)
    [all...]
  /src/sys/arch/emips/include/
emipsreg.h 47 * and the tag for the type of peripherals in that section.
54 * The tag 0xffff is therefore invalid.
58 * The first entry is for the table itself and has a known tag.
70 volatile uint16_t Tag;
221 volatile uint32_t Tag; /* ro */
275 volatile uint32_t Tag; /* ro value=9 NB: All other registers RESET to 0 */
379 volatile uint32_t Tag; /* ro */
461 volatile uint32_t Tag; /* ro */
516 volatile uint32_t Tag; /* ro */
536 volatile uint32_t Tag; /* ro *
    [all...]
  /src/sys/arch/emips/stand/common/
prom_iface.c 184 uint16_t tag; local in function:init_memory
197 tag = Pmt->Tag;
198 //printf("PMT @%x tag=%x\n",Pmt,tag);
199 switch (tag) {
208 //printf("RAM @%x tag=%x ctl=%x\n", Ram, Ram->BaseAddressAndTag,Ram->Control);
209 if (tag != (Ram->BaseAddressAndTag & RAMBT_TAG))
212 if ((tag != PMTTAG_FLASH) && (addr < base)) {
222 switch (tag) {
    [all...]
ace.c 239 printf("\tTag %x\n", Interface->Tag);
603 /* Check the tag to see if its there
605 if ((Sac->Tag & SAC_TAG) != PMTTAG_SYSTEM_ACE) {
606 DBGME(3,printf("init_ace: bad tag (%x != %x) @x%p\n",
607 Sac->Tag, PMTTAG_SYSTEM_ACE, Sac));
enic.c 218 if ((unit != 0) || (the_enic->Tag != PMTTAG_ETHERNET))
  /src/sys/external/bsd/acpica/dist/disassembler/
dmopcode.c 477 * DESCRIPTION: Emit a description comment for a resource descriptor tag
488 char *Tag;
528 /* Major cheat: We previously put the Tag ptr in the Node field */
530 Tag = ACPI_CAST_PTR (char, IndexOp->Common.Node);
531 if (!Tag || (*Tag == 0))
536 /* Is the tag a predefined name? */
538 Info = AcpiAhMatchPredefinedName (Tag);
546 AcpiOsPrintf (" // %4.4s: %s", Tag,
  /src/sys/external/bsd/acpica/dist/compiler/
aslresource.c 210 * If the descriptor does NOT have a resource tag, it cannot be referenced
212 * the descriptor has a resource tag, we will assume that a BufferField
216 * a BufferField is created using the resource tag, and perhaps even
225 /* No resource tag. Descriptor is fixed and is also illegal */
342 * If the descriptor does NOT have a resource tag, it cannot be referenced
344 * the descriptor has a resource tag, we will assume that a BufferField
348 * a BufferField is created using the resource tag, and perhaps even
355 /* No resource tag. Descriptor is fixed and is also illegal */
578 Op->Asl.Value.Tag.BitOffset = (ByteOffset * 8) + BitOffset;
579 Op->Asl.Value.Tag.BitLength = BitLength
    [all...]
aslload.c 480 Node->Value = InitializerOp->Asl.Value.Tag.BitOffset;
481 Node->Length = InitializerOp->Asl.Value.Tag.BitLength;
  /src/sys/arch/emips/emips/
machdep.c 654 uint16_t tag = Pmt->Tag; local in function:memsize_pmt
656 if (tag == PMTTAG_END_OF_TABLE)
659 if ((tag != PMTTAG_SRAM) && (tag != PMTTAG_DDRAM))
668 for (;(ram->BaseAddressAndTag & SRAMBT_TAG) == tag;) {
681 ram = (tag == PMTTAG_SRAM) ? ram+1 : ram+2;
  /src/sys/arch/sparc64/sparc64/
mp_subr.S 462 mov -1, %g1 ! Generate mask for tag: bits [29..2]
463 srlx %g2, 13-2, %g5 ! Tag is PA bits <40:13> in bits <29:2>
  /src/sys/external/bsd/acpica/dist/include/
acdisasm.h 378 char *Tag;
aclocal.h 997 /* Structure for Resource Tag information */
1016 ACPI_TAG_INFO Tag; /* Resource descriptor tag info */
  /src/sys/dev/ic/
mpt_mpilib.h 4056 U16 Tag; /* 02h */

Completed in 54 milliseconds

1 2