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

1 2

  /src/external/gpl3/gcc.old/dist/libphobos/src/std/
compiler.d 20 /// Vendor specific string naming the compiler, for example: "Digital Mars D".
24 enum Vendor
26 unknown = 0, /// Compiler vendor could not be detected
34 /// Which vendor produced this compiler.
35 version (StdDdoc) Vendor vendor;
36 else version (DigitalMars) Vendor vendor = Vendor.digitalMars;
37 else version (GNU) Vendor vendor = Vendor.gnu
    [all...]
  /src/sys/external/bsd/acpica/dist/resources/
rsmemory.c 164 /* Length of the vendor data (byte count) */
166 {ACPI_RSC_COUNT16, ACPI_RS_OFFSET (Data.Vendor.ByteLength),
170 /* Vendor data */
172 {ACPI_RSC_MOVE8, ACPI_RS_OFFSET (Data.Vendor.ByteData[0]),
190 /* Length of the vendor data (byte count) */
192 {ACPI_RSC_COUNT16, ACPI_RS_OFFSET (Data.Vendor.ByteLength),
196 /* Vendor data */
198 {ACPI_RSC_MOVE8, ACPI_RS_OFFSET (Data.Vendor.ByteData[0]),
212 /* Default is a small vendor descriptor */
220 {ACPI_RSC_COUNT16, ACPI_RS_OFFSET (Data.Vendor.ByteLength)
    [all...]
rsxface.c 475 * RetBuffer - Where the vendor resource is returned
480 * vendor-defined resource that matches the supplied UUID and
481 * UUID subtype. Returns a ACPI_RESOURCE of type Vendor.
530 * DESCRIPTION: Match a vendor resource via the ACPI 3.0 UUID
540 ACPI_RESOURCE_VENDOR_TYPED *Vendor;
545 /* Ignore all descriptors except Vendor */
552 Vendor = &Resource->Data.VendorTyped;
561 if ((Vendor->ByteLength < (ACPI_UUID_LENGTH + 1)) ||
562 (Vendor->UuidSubtype != Info->Uuid->Subtype) ||
563 (memcmp (Vendor->Uuid, Info->Uuid->Data, ACPI_UUID_LENGTH))
    [all...]
rscalc.c 277 * Vendor Defined Resource:
278 * For a Vendor Specific resource, if the Length is between 1 and 7
282 if (Resource->Data.Vendor.ByteLength > 7)
289 /* Add the size of the vendor-specific data */
292 (TotalSize + Resource->Data.Vendor.ByteLength);
544 * Vendor Resource:
545 * Get the number of vendor data bytes
597 /* Vendor data is optional */
617 /* Vendor data is optional */
647 /* Vendor data is optional *
    [all...]
rsdumpinfo.c 122 {ACPI_RSD_TITLE, ACPI_RSD_TABLE_SIZE (AcpiRsDumpVendor), "Vendor Specific", NULL},
123 {ACPI_RSD_UINT16, ACPI_RSD_OFFSET (Vendor.ByteLength), "Length", NULL},
124 {ACPI_RSD_LONGLIST, ACPI_RSD_OFFSET (Vendor.ByteData[0]), "Vendor Data", NULL}
  /src/external/gpl2/xcvs/dist/
cvs2netbsd 47 echo Vendor: NONGNU
  /src/external/mit/xorg/lib/libXaw6/
Makefile 19 TextSrc.c TextTr.c Toggle.c Tree.c Vendor.c Viewport.c \
  /src/external/mit/xorg/server/xorg-server/hw/xfree86/xf86config/
Makefile 10 Module.c Monitor.c Pointer.c Screen.c Vendor.c Video.c read.c \
  /src/external/mit/xorg/server/xorg-server.old/hw/xfree86/xf86config/
Makefile 10 Module.c Monitor.c Pointer.c Screen.c Vendor.c Video.c read.c \
  /src/external/mit/xorg/lib/libXt/
Makefile 20 TMstate.c Threads.c VarCreate.c VarGet.c Varargs.c Vendor.c
27 TranslateI.h VarargsI.h Vendor.h VendorP.h Xtos.h
  /src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
Triple.h 29 /// ARCHITECTURE-VENDOR-OPERATING_SYSTEM
31 /// ARCHITECTURE-VENDOR-OPERATING_SYSTEM-ENVIRONMENT
251 /// The parsed vendor type.
252 VendorType Vendor;
270 : Data(), Arch(), SubArch(), Vendor(), OS(), Environment(),
280 Vendor == Other.Vendor && OS == Other.OS &&
312 /// getVendor - Get the parsed vendor type of this triple.
313 VendorType getVendor() const { return Vendor; }
384 /// getVendorName - Get the vendor (second) component of the triple
    [all...]
  /src/sys/external/bsd/gnu-efi/dist/inc/
libsmbios.h 70 SMBIOS_STRING Vendor;
efidevp.h 475 VENDOR_DEVICE_PATH Vendor;
510 VENDOR_DEVICE_PATH *Vendor;
  /src/sys/dev/pci/bktr/
bktr2netbsd 115 echo Vendor: BKTR_SF
  /src/external/ibm-public/postfix/
postfix2netbsd 105 echo Vendor: VENEMA
  /src/external/mit/xorg/lib/libXaw/
Makefile 28 TextTr.c Tip.c Toggle.c Tree.c Vendor.c Viewport.c \
  /src/sys/external/bsd/gnu-efi/dist/lib/
dpath.c 535 VENDOR_DEVICE_PATH *Vendor;
539 Vendor = DevPath;
540 switch (DevicePathType(&Vendor->Header)) {
547 CatPrint(Str, L"Ven%s(%g", Type, &Vendor->Guid);
548 if (CompareGuid (&Vendor->Guid, &UnknownDevice) == 0) {
552 UnknownDevPath = (UNKNOWN_DEVICE_VENDOR_DEVICE_PATH *)Vendor;
  /src/external/apache2/llvm/dist/llvm/lib/Support/
Triple.cpp 766 Vendor(UnknownVendor), OS(UnknownOS), Environment(UnknownEnvironment),
775 Vendor = parseVendor(Components[1]);
799 /// vendor, and OS.
808 Vendor(parseVendor(VendorStr.str())),
815 /// vendor, OS, and environment.
825 Vendor(parseVendor(VendorStr.str())),
843 // known vendor, preferentially use it for the vendor, etc. This avoids silly
849 VendorType Vendor = UnknownVendor;
851 Vendor = parseVendor(Components[1])
    [all...]
Host.cpp 1137 const VendorSignatures Vendor = getVendorSignature(&MaxLeaf);
1138 if (Vendor == VendorSignatures::UNKNOWN)
1156 if (Vendor == VendorSignatures::GENUINE_INTEL) {
1159 } else if (Vendor == VendorSignatures::AUTHENTIC_AMD) {
  /src/external/apache2/llvm/dist/llvm/lib/Target/ARM/MCTargetDesc/
ARMELFStreamer.cpp 90 void switchVendor(StringRef Vendor) override;
175 void ARMTargetAsmStreamer::switchVendor(StringRef Vendor) {}
394 void switchVendor(StringRef Vendor) override;
771 void ARMTargetELFStreamer::switchVendor(StringRef Vendor) {
772 assert(!Vendor.empty() && "Vendor cannot be empty.");
774 if (CurrentVendor == Vendor)
781 ".ARM.attributes should be flushed before changing vendor");
782 CurrentVendor = Vendor;
1078 // [ <section-length> "vendor-name
    [all...]
ARMTargetStreamer.cpp 103 void ARMTargetStreamer::switchVendor(StringRef Vendor) {}
  /src/sys/external/bsd/acpica/dist/include/
acrestyp.h 160 /* UUID data structures for use in vendor-defined resource descriptors */
262 /* Vendor resource with UUID info (introduced in ACPI 3.0) */
780 ACPI_RESOURCE_VENDOR Vendor;
  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/MCTargetDesc/
AMDGPUTargetStreamer.cpp 482 const char *Vendor = getPALMetadata()->getVendor();
487 EmitNote(Vendor, MCConstantExpr::create(Blob.size(), getContext()), Type,
  /src/external/apache2/llvm/dist/llvm/bindings/ocaml/debuginfo/
llvm_debuginfo.ml 54 (* Vendor extensions: *)
llvm_debuginfo.mli 54 (* Vendor extensions: *)

Completed in 30 milliseconds

1 2