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

/freebsd-13-stable/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);
645 * Vendor Resource:
698 /* Vendor data is optional */
718 /* Vendor data is optional */
747 /* 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-13-stable/lib/libefivar/
H A Defivar-dp-format.c212 Converts a Vendor device path structure to its string representative.
232 VENDOR_DEVICE_PATH *Vendor; local
239 Vendor = (VENDOR_DEVICE_PATH *) DevPath;
240 switch (DevicePathType (&Vendor->Header)) {
248 if (CompareGuid (&Vendor->Guid, &gEfiPcAnsiGuid)) {
251 } else if (CompareGuid (&Vendor->Guid, &gEfiVT100Guid)) {
254 } else if (CompareGuid (&Vendor->Guid, &gEfiVT100PlusGuid)) {
257 } else if (CompareGuid (&Vendor->Guid, &gEfiVTUTF8Guid)) {
260 } else if (CompareGuid (&Vendor->Guid, &gEfiUartDevicePathGuid)) {
261 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.
1387 Converts a text device path node to Vendor
1421 VENDOR_DEVICE_PATH *Vendor; local
1446 VENDOR_DEVICE_PATH *Vendor; local
1471 VENDOR_DEVICE_PATH *Vendor; local
1496 VENDOR_DEVICE_PATH *Vendor; local
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A DTriple.h245 VendorType Vendor; member in class:llvm::Triple
263 : Data(), Arch(), SubArch(), Vendor(), OS(), Environment(),
273 Vendor == Other.Vendor && OS == Other.OS &&
306 VendorType getVendor() const { return Vendor; }
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/builtins/
H A Dcpu_model.c698 unsigned Vendor; local
707 getX86CpuIDAndInfo(0, &MaxLeaf, &Vendor, &ECX, &EDX) || MaxLeaf < 1) {
722 if (Vendor == SIG_INTEL) {
728 } else if (Vendor == SIG_AMD) {
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Support/
H A DTriple.cpp736 Vendor(UnknownVendor), OS(UnknownOS), Environment(UnknownEnvironment),
745 Vendor = parseVendor(Components[1]);
778 Vendor(parseVendor(VendorStr.str())),
795 Vendor(parseVendor(VendorStr.str())),
819 VendorType Vendor = UnknownVendor; local
821 Vendor = parseVendor(Components[1]);
839 Found[1] = Vendor != UnknownVendor;
865 Vendor = parseVendor(Comp);
866 Valid = Vendor != UnknownVendor;
946 // Special case logic goes here. At this point Arch, Vendor an
[all...]
H A DHost.cpp1099 unsigned MaxLeaf, Vendor; local
1104 if (getX86CpuIDAndInfo(0, &MaxLeaf, &Vendor, &ECX, &EDX) || MaxLeaf < 1)
1120 if (Vendor == SIG_INTEL) {
1123 } else if (Vendor == SIG_AMD) {
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/ARM/MCTargetDesc/
H A DARMELFStreamer.cpp90 void switchVendor(StringRef Vendor) override;
175 void ARMTargetAsmStreamer::switchVendor(StringRef Vendor) {}
394 void switchVendor(StringRef Vendor) override;
751 void ARMTargetELFStreamer::switchVendor(StringRef Vendor) {
752 assert(!Vendor.empty() && "Vendor cannot be empty.");
754 if (CurrentVendor == Vendor)
762 CurrentVendor = Vendor;
1090 // Vendor size + Vendor nam
[all...]
H A DARMTargetStreamer.cpp103 void ARMTargetStreamer::switchVendor(StringRef Vendor) {} argument
/freebsd-13-stable/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:__anon9527
1319 VENDOR_DEVICE_PATH *Vendor; member in union:__anon9528
[all...]
/freebsd-13-stable/stand/efi/include/
H A Defidevp.h396 VENDOR_DEVICE_PATH Vendor; member in union:__anon7967
430 VENDOR_DEVICE_PATH *Vendor; member in union:__anon7968
/freebsd-13-stable/sys/contrib/dev/acpica/include/
H A Dacrestyp.h364 /* Vendor resource with UUID info (introduced in ACPI 3.0) */
859 ACPI_RESOURCE_VENDOR Vendor; member in union:acpi_resource_data
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/MCTargetDesc/
H A DAMDGPUTargetStreamer.cpp426 const char *Vendor = getPALMetadata()->getVendor(); local
431 EmitNote(Vendor, MCConstantExpr::create(Blob.size(), getContext()), Type,
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCStreamer.h150 virtual void switchVendor(StringRef Vendor);

Completed in 117 milliseconds