Searched refs:Vendor (Results 1 - 19 of 19) sorted by relevance

/freebsd-current/sys/contrib/dev/acpica/components/resources/
H A Drsmemory.c274 {ACPI_RSC_COUNT16, ACPI_RS_OFFSET (Data.Vendor.ByteLength),
278 /* Vendor data */
280 {ACPI_RSC_MOVE8, ACPI_RS_OFFSET (Data.Vendor.ByteData[0]),
300 {ACPI_RSC_COUNT16, ACPI_RS_OFFSET (Data.Vendor.ByteLength),
304 /* Vendor data */
306 {ACPI_RSC_MOVE8, ACPI_RS_OFFSET (Data.Vendor.ByteData[0]),
328 {ACPI_RSC_COUNT16, ACPI_RS_OFFSET (Data.Vendor.ByteLength),
332 {ACPI_RSC_MOVE8, ACPI_RS_OFFSET (Data.Vendor.ByteData[0]),
337 * All done if the Vendor byte length is 7 or less, meaning that it will
348 {ACPI_RSC_COUNT16, ACPI_RS_OFFSET (Data.Vendor
[all...]
H A Drsxface.c589 * UUID subtype. Returns a ACPI_RESOURCE of type Vendor.
648 ACPI_RESOURCE_VENDOR_TYPED *Vendor; local
653 /* Ignore all descriptors except Vendor */
660 Vendor = &Resource->Data.VendorTyped;
669 if ((Vendor->ByteLength < (ACPI_UUID_LENGTH + 1)) ||
670 (Vendor->UuidSubtype != Info->Uuid->Subtype) ||
671 (memcmp (Vendor->Uuid, Info->Uuid->Data, ACPI_UUID_LENGTH)))
H A Drscalc.c385 * Vendor Defined Resource:
386 * For a Vendor Specific resource, if the Length is between 1 and 7
390 if (Resource->Data.Vendor.ByteLength > 7)
400 (TotalSize + Resource->Data.Vendor.ByteLength);
652 * Vendor Resource:
705 /* Vendor data is optional */
725 /* Vendor data is optional */
759 /* Vendor data is optional */
H A Drsdumpinfo.c230 {ACPI_RSD_TITLE, ACPI_RSD_TABLE_SIZE (AcpiRsDumpVendor), "Vendor Specific", NULL},
231 {ACPI_RSD_UINT16, ACPI_RSD_OFFSET (Vendor.ByteLength), "Length", NULL},
232 {ACPI_RSD_LONGLIST, ACPI_RSD_OFFSET (Vendor.ByteData[0]), "Vendor Data", NULL}
/freebsd-current/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCELFStreamer.h114 void emitAttributesSection(StringRef Vendor, const Twine &Section, argument
116 createAttributesSection(Vendor, Section, Type, AttributeSection, Contents);
122 void createAttributesSection(StringRef Vendor, const Twine &Section,
H A DMCStreamer.h155 virtual void switchVendor(StringRef Vendor);
/freebsd-current/lib/libefivar/
H A Defivar-dp-format.c207 Converts a Vendor device path structure to its string representative.
227 VENDOR_DEVICE_PATH *Vendor; local
234 Vendor = (VENDOR_DEVICE_PATH *)DevPath;
235 switch (DevicePathType (&Vendor->Header)) {
243 if (CompareGuid (&Vendor->Guid, &gEfiPcAnsiGuid)) {
246 } else if (CompareGuid (&Vendor->Guid, &gEfiVT100Guid)) {
249 } else if (CompareGuid (&Vendor->Guid, &gEfiVT100PlusGuid)) {
252 } else if (CompareGuid (&Vendor->Guid, &gEfiVTUTF8Guid)) {
255 } else if (CompareGuid (&Vendor->Guid, &gEfiUartDevicePathGuid)) {
256 FlowControlMap = (((UART_FLOW_CONTROL_DEVICE_PATH *)Vendor)
[all...]
H A Defivar-dp-parse.c603 Converts a text device path node to Vendor device path structure based on the input Type
610 @return A pointer to the newly-created Vendor device path structure.
624 VENDOR_DEVICE_PATH *Vendor; local
635 Vendor = (VENDOR_DEVICE_PATH *)CreateDeviceNode (
641 StrToGuid (GuidStr, &Vendor->Guid);
642 StrHexToBytes (DataStr, Length * 2, (UINT8 *)(Vendor + 1), Length);
644 return (EFI_DEVICE_PATH_PROTOCOL *)Vendor;
648 Converts a text device path node to Vendor Hardware device path structure.
652 @return A pointer to the newly-created Vendor Hardware device path structure.
1399 Converts a text device path node to Vendor
1433 VENDOR_DEVICE_PATH *Vendor; local
1459 VENDOR_DEVICE_PATH *Vendor; local
1485 VENDOR_DEVICE_PATH *Vendor; local
1511 VENDOR_DEVICE_PATH *Vendor; local
[all...]
/freebsd-current/contrib/llvm-project/compiler-rt/lib/builtins/cpu_model/
H A Dx86.c897 unsigned Vendor; local
908 getX86CpuIDAndInfo(0, &MaxLeaf, &Vendor, &ECX, &EDX) || MaxLeaf < 1) {
924 if (Vendor == SIG_INTEL) {
930 } else if (Vendor == SIG_AMD) {
/freebsd-current/contrib/llvm-project/llvm/include/llvm/TargetParser/
H A DTriple.h307 VendorType Vendor{};
333 Vendor == Other.Vendor && OS == Other.OS &&
366 VendorType getVendor() const { return Vendor; }
/freebsd-current/contrib/llvm-project/llvm/lib/TargetParser/
H A DTriple.cpp927 Vendor(UnknownVendor), OS(UnknownOS), Environment(UnknownEnvironment),
936 Vendor = parseVendor(Components[1]);
969 Vendor(parseVendor(VendorStr.str())),
986 Vendor(parseVendor(VendorStr.str())),
1010 VendorType Vendor = UnknownVendor; local
1012 Vendor = parseVendor(Components[1]);
1030 Found[1] = Vendor != UnknownVendor;
1056 Vendor = parseVendor(Comp);
1057 Valid = Vendor != UnknownVendor;
1136 // Special case logic goes here. At this point Arch, Vendor an
[all...]
H A DHost.cpp1342 const VendorSignatures Vendor = getVendorSignature(&MaxLeaf); local
1343 if (Vendor == VendorSignatures::UNKNOWN)
1361 if (Vendor == VendorSignatures::GENUINE_INTEL) {
1364 } else if (Vendor == VendorSignatures::AUTHENTIC_AMD) {
/freebsd-current/contrib/llvm-project/llvm/lib/Target/ARM/MCTargetDesc/
H A DARMELFStreamer.cpp89 void switchVendor(StringRef Vendor) override;
185 void ARMTargetAsmStreamer::switchVendor(StringRef Vendor) {}
411 void switchVendor(StringRef Vendor) override;
786 void ARMTargetELFStreamer::switchVendor(StringRef Vendor) {
787 assert(!Vendor.empty() && "Vendor cannot be empty.");
789 if (CurrentVendor == Vendor)
797 CurrentVendor = Vendor;
H A DARMTargetStreamer.cpp104 void ARMTargetStreamer::switchVendor(StringRef Vendor) {} argument
/freebsd-current/sys/contrib/edk2/Include/Protocol/
H A DDevicePath.h132 /// Hardware Vendor Device Path SubType.
137 /// The Vendor Device Path allows the creation of vendor-defined Device Paths. A vendor must
138 /// allocate a Vendor GUID for a Device Path. The Vendor GUID can then be used to define the
139 /// contents on the n bytes that follow in the Vendor Device Path node.
144 /// Vendor-assigned GUID that defines the data that follows.
148 /// Vendor-defined variable size data.
439 /// Vendor ID assigned by USB-IF. A value of 0xFFFF will
440 /// match any Vendor ID.
1261 VENDOR_DEVICE_PATH Vendor; member in union:__anon9445
1319 VENDOR_DEVICE_PATH *Vendor; member in union:__anon9446
[all...]
/freebsd-current/stand/efi/include/
H A Defidevp.h395 VENDOR_DEVICE_PATH Vendor; member in union:__anon624
429 VENDOR_DEVICE_PATH *Vendor; member in union:__anon625
/freebsd-current/contrib/llvm-project/llvm/lib/MC/
H A DMCELFStreamer.cpp830 StringRef Vendor, const Twine &Section, unsigned Type,
851 // Vendor size + Vendor name + '\0'
852 const size_t VendorHeaderSize = 4 + Vendor.size() + 1;
860 emitBytes(Vendor);
829 createAttributesSection( StringRef Vendor, const Twine &Section, unsigned Type, MCSection *&AttributeSection, SmallVector<AttributeItem, 64> &AttrsVec) argument
/freebsd-current/sys/contrib/dev/acpica/include/
H A Dacrestyp.h370 /* Vendor resource with UUID info (introduced in ACPI 3.0) */
888 ACPI_RESOURCE_VENDOR Vendor; member in union:acpi_resource_data
/freebsd-current/contrib/llvm-project/llvm/lib/Target/AMDGPU/MCTargetDesc/
H A DAMDGPUTargetStreamer.cpp493 const char *Vendor = getPALMetadata()->getVendor(); local
498 EmitNote(Vendor, MCConstantExpr::create(Blob.size(), getContext()), Type,

Completed in 151 milliseconds