HomeSort by: relevance | last modified time | path
    Searched defs:Array (Results 1 - 4 of 4) sorted by relevancy

  /src/sys/external/bsd/acpica/dist/common/
dmtbdump.c 431 UINT32 *Array;
437 /* Point to start of table pointer array */
439 Array = ACPI_CAST_PTR (ACPI_TABLE_RSDT, Table)->TableOffsetEntry;
449 AcpiOsPrintf ("%8.8X\n", Array[i]);
471 UINT64 *Array;
477 /* Point to start of table pointer array */
479 Array = ACPI_CAST_PTR (ACPI_TABLE_XSDT, Table)->TableOffsetEntry;
489 AcpiOsPrintf ("%8.8X%8.8X\n", ACPI_FORMAT_UINT64 (Array[i]));
dmtbdump1.c 179 * 4) A list (array) of Interrupt Structures
426 /* Dump the entire interrupt structure array, if present */
1298 UINT8 *Array;
1322 /* Dump the BaseAddress array */
1329 Array = (UINT8 *) Subtable + ArrayOffset;
1331 Status = AcpiDmDumpTable (Length, AbsoluteOffset, Array,
1339 /* Dump the AddressSize array */
1346 Array = (UINT8 *) Subtable + ArrayOffset;
1348 Status = AcpiDmDumpTable (Length, AbsoluteOffset, Array,
1361 Array = (UINT8 *) Subtable + ArrayOffset
    [all...]
  /src/sys/external/bsd/gnu-efi/dist/lib/
misc.c 399 // Insert in the tail of the array
540 UI_STRING_ENTRY *Array;
551 for (Index = UiDeviceString, Array = Ui->Entry; Index < StringType; Index++, Array++) {
552 while (Array->LangCode) {
553 Array++;
560 while (Array->LangCode) {
561 if (strcmpa (Array->LangCode, LangCode) == 0) {
562 return Array->UiString;
  /src/sys/external/bsd/compiler_rt/dist/lib/xray/
xray_segmented_array.h 12 // Defines the implementation of a segmented array, with fixed-size segments
28 /// The Array type provides an interface similar to std::vector<...> but does
32 /// is destroyed. When an Array is destroyed, it will destroy elements in the
34 template <class T> class Array {
42 // Each segment of the array will be laid out with the following assumptions:
297 explicit Array(AllocatorType &A) XRAY_NEVER_INSTRUMENT
304 Array() XRAY_NEVER_INSTRUMENT : Alloc(nullptr),
310 Array(const Array &) = delete;
311 Array &operator=(const Array &) = delete
    [all...]

Completed in 40 milliseconds