HomeSort by relevance Sort by last modified time
    Searched defs:Table (Results 76 - 100 of 253) sorted by null

1 2 34 5 6 7 8 91011

  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Universal/Acpi/AcpiSupportDxe/
AcpiSupportAcpiSupportProtocol.c 26 This function adds an ACPI table to the table list. It will detect FACS and
27 allocate the correct type of memory and properly align the table.
30 @param Table Table to add.
31 @param Checksum Does the table require checksumming.
32 @param Version The version of the list to add the table to.
37 @return EFI_ABORTED The table is a duplicate of a table that is required
43 IN VOID *Table,
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Acpi/AcpiTableDxe/
AcpiSdt.c 35 This function returns ACPI Table instance.
48 This function finds the table specified by the buffer.
50 @param[in] Buffer Table buffer to find.
52 @return ACPI table list.
65 // Get the instance of the ACPI Table
80 // Good! Found Table.
92 This function updates AML table checksum.
93 It will search the ACPI table installed by ACPI_TABLE protocol.
97 @retval EFI_SUCCESS The table holds the AML buffer is found, and checksum is updated.
98 @retval EFI_NOT_FOUND The table holds the AML buffer is not found.
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/IScsiDxe/
IScsiIbft.c 2 Implementation for iSCSI Boot Firmware Table publication.
21 Initialize the header of the iSCSI Boot Firmware Table.
23 @param[out] Header The header of the iSCSI Boot Firmware Table.
25 @param[in] OemTableId The OEM table ID for the iBFT.
46 Initialize the control section of the iSCSI Boot Firmware Table.
48 @param[in] Table The ACPI table.
54 IN EFI_ACPI_ISCSI_BOOT_FIRMWARE_TABLE_HEADER *Table,
61 Control = (EFI_ACPI_ISCSI_BOOT_FIRMWARE_TABLE_CONTROL_STRUCTURE *) (Table + 1);
108 Fill the Initiator section of the iSCSI Boot Firmware Table.
    [all...]
  /device/linaro/bootloader/edk2/OvmfPkg/AcpiS3SaveDxe/
AcpiS3Save.c 84 This function scan ACPI table in RSDT.
87 @param Signature ACPI table signature
89 @return ACPI table
101 EFI_ACPI_DESCRIPTION_HEADER *Table;
111 Table = (EFI_ACPI_DESCRIPTION_HEADER *)((UINTN)(*EntryPtr));
112 if (Table->Signature == Signature) {
113 return Table;
122 This function scan ACPI table in XSDT.
125 @param Signature ACPI table signature
127 @return ACPI table
    [all...]
  /device/linaro/bootloader/edk2/OvmfPkg/Sec/
SecMain.c 721 volatile UINT8 *Table;
728 Table = (UINT8*)(UINTN)FixedPcdGet64 (PcdGuidedExtractHandlerTableAddress);
732 Table[Index] = 0;
910 // Rebase IDT table in permanent memory
  /device/linaro/bootloader/edk2/PcAtChipsetPkg/PcatRealTimeClockRuntimeDxe/
PcRtc.c 1209 This function find ACPI table with the specified signature in RSDT or XSDT.
1212 @param Signature ACPI table signature.
1213 @param TablePointerSize Size of table pointer: 4 or 8.
    [all...]
  /external/clang/lib/Serialization/
ASTReaderInternals.h 114 MultiOnDiskHashTable<ASTDeclContextNameLookupTrait> Table;
119 DeclContextLookupTable() : Table() {}
121 : Table(std::move(O.Table)) {}
123 Table = std::move(O.Table);
128 /// \brief Base class for the trait describing the on-disk hash table for the
132 /// functionality for accessing the on-disk hash table of identifiers
190 /// \brief The on-disk hash table used to contain information about
237 /// \brief The on-disk hash table used for the global method pool
    [all...]
MultiOnDiskHashTable.h 10 // This file provides a hash table data structure suitable for incremental and
14 // performance, and on reload the merged table will override those from other
35 /// A pointer to an on-disk representation of the hash table.
45 /// \brief A hash table stored on disk.
50 HashTable Table;
56 Table(NumBuckets, NumEntries, Buckets, Payload, Base, InfoObj) {}
64 typedef llvm::PointerUnion<OnDiskTable*, MergedTable*> Table;
68 /// We manually store the opaque value of the Table because TinyPtrVector
71 /// it is the first table.
81 return Table::getFromOpaqueValue(P).template get<OnDiskTable *>()
    [all...]
  /external/flatbuffers/go/
table.go 3 // Table wraps a byte slice and provides read access to its data.
6 type Table struct {
11 // Offset provides access into the Table's vtable.
14 func (t *Table) Offset(vtableOffset VOffsetT) VOffsetT {
23 func (t *Table) Indirect(off UOffsetT) UOffsetT {
28 func (t *Table) String(off UOffsetT) string {
34 func (t *Table) ByteVector(off UOffsetT) []byte {
43 func (t *Table) VectorLen(off UOffsetT) int {
51 func (t *Table) Vector(off UOffsetT) UOffsetT {
59 // Union initializes any Table-derived type to point to the union at the give
    [all...]
  /external/flatbuffers/java/com/google/flatbuffers/
Table.java 33 public class Table {
49 /** The underlying ByteBuffer to hold the data of the Table. */
55 * @return Returns the Table's ByteBuffer.
62 * @param vtable_offset An `int` offset to the vtable in the Table's ByteBuffer.
78 * @param offset An `int` index into the Table's ByteBuffer containing the relative offset.
97 * @param offset An `int` index into the Table's ByteBuffer.
134 * @param offset An `int` index into the Table's ByteBuffer.
146 * @param offset An `int` index into the Table's ByteBuffer.
176 * Initialize any Table-derived type to point to the union at the given `offset`.
178 * @param t A `Table`-derived type that should point to the union at `offset`
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
UResource.java 290 * Interface for iterating over a resource bundle table resource.
293 public interface Table {
362 * @throws UResourceTypeMismatchException if this is not a table resource
364 public abstract Table getTable();
442 case UResourceBundle.TABLE:
443 return "(table)";
456 * The value is normally an array or table resource,
462 * Reuse for output values from Array and Table getters.
464 * Then reuse for output values from Array and Table getters.
466 * that is, its top-level table has the nofallback attribute
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
UResource.java 288 * Interface for iterating over a resource bundle table resource.
291 public interface Table {
360 * @throws UResourceTypeMismatchException if this is not a table resource
362 public abstract Table getTable();
440 case UResourceBundle.TABLE:
441 return "(table)";
454 * The value is normally an array or table resource,
460 * Reuse for output values from Array and Table getters.
462 * Then reuse for output values from Array and Table getters.
464 * that is, its top-level table has the nofallback attribute
    [all...]
  /external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/html/table/
Table.java 12 package org.jacoco.report.internal.html.table;
27 * Renderer for a table of {@link ITableItem}s.
29 public class Table {
36 * Create a new table without any columns yet.
38 public Table() {
39 this.columns = new ArrayList<Table.Column>();
43 * Adds a new column with the given properties to the table.
71 * Renders a table for the given icon
74 * parent element in which the table is created
76 * items that will make the table row
92 final HTMLElement table = parent.table(Styles.COVERAGETABLE); local
    [all...]
  /external/llvm/lib/Fuzzer/
FuzzerUtil.cpp 255 static const char Table[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
262 Res += Table[(x >> 18) & 63];
263 Res += Table[(x >> 12) & 63];
264 Res += Table[(x >> 6) & 63];
265 Res += Table[x & 63];
269 Res += Table[(x >> 18) & 63];
270 Res += Table[(x >> 12) & 63];
274 Res += Table[(x >> 18) & 63];
275 Res += Table[(x >> 12) & 63];
276 Res += Table[(x >> 6) & 63]
    [all...]
  /external/llvm/lib/MC/
MCContext.cpp 470 MCDwarfLineTable &Table = MCDwarfLineTablesCUMap[CUID];
471 return Table.getFile(Directory, FileName, FileNumber);
  /external/ltp/testcases/open_posix_testsuite/stress/threads/fork/
s-c1.c 437 struct row *Table = NULL;
500 Table = calloc(N, sizeof(struct row));
502 if (Table == NULL) {
514 Table[N].X = (long)cur->nprocess;
515 Table[N].LnX = log((double)cur->nprocess);
518 Table[N]._x = Table[N].X - Xavg;
519 Table[N]._lnx = Table[N].LnX - LnXavg;
520 Table[N].Y = cur->_data
    [all...]
  /external/ltp/testcases/open_posix_testsuite/stress/threads/pthread_create/
s-c1.c 485 struct row *Table = NULL;
550 Table = calloc(N, sizeof(struct row));
551 if (Table == NULL) {
562 Table[N].X = (long)cur->nthreads;
563 Table[N].LnX = log((double)cur->nthreads);
566 Table[N]._x[i] = Table[N].X - Xavg[i];
567 Table[N]._lnx[i] = Table[N].LnX - LnXavg[i];
568 Table[N].Y[i] = cur->_data[i]
    [all...]
  /external/skia/src/core/
SkColorSpace_Base.h 36 // Contains information for a gamma table.
37 struct Table {
41 const float* table(const SkGammas* base) const { function in struct:SkGammas::Table
64 Table fTable;
94 const float* table(int i) const { function in struct:SkGammas
96 return this->data(i).fTable.table(this);
  /frameworks/av/media/libmedia/include/media/
TypeConverter.h 133 struct Table {
138 static const Table mTable[];
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
wsdxmldom.h 15 const BYTE *Table;
  /external/ltp/testcases/open_posix_testsuite/stress/threads/pthread_cond_timedwait/
s-c.c 709 struct row *Table = NULL;
767 Table = calloc(N, sizeof(struct row));
768 if (Table == NULL) {
779 Table[N].X = (long)cur->nthreads;
780 Table[N]._x = Table[N].X - Xavg;
781 Table[N].LnX = log((double)cur->nthreads);
782 Table[N]._lnx = Table[N].LnX - LnXavg;
784 Table[N].Y[i] = cur->_data[i]
    [all...]
  /external/ltp/testcases/open_posix_testsuite/stress/threads/sem_init/
s-c1.c 432 struct row *Table = NULL;
512 Table = calloc(N, sizeof(struct row));
514 if (Table == NULL) {
527 Table[N].X = (long)cur->nsem;
528 Table[N].LnX = log((double)cur->nsem);
531 Table[N]._x = Table[N].X - Xavg;
532 Table[N]._lnx = Table[N].LnX - LnXavg;
533 Table[N].Y_o = cur->_data_open
    [all...]
  /external/ltp/testcases/open_posix_testsuite/stress/threads/sem_open/
s-c1.c 442 struct row *Table = NULL;
522 Table = calloc(N, sizeof(struct row));
524 if (Table == NULL) {
536 Table[N].X = (long)cur->nsem;
537 Table[N].LnX = log((double)cur->nsem);
540 Table[N]._x = Table[N].X - Xavg;
541 Table[N]._lnx = Table[N].LnX - LnXavg;
542 Table[N].Y_o = cur->_data_open
    [all...]
  /system/vold/
Disk.cpp 78 enum class Table {
296 // Parse partition table
312 Table table = Table::kUnknown; local
322 table = Table::kMbr;
324 table = Table::kGpt;
336 if (table == Table::kMbr)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/msi/
msilib.py 81 class Table:
129 return "CREATE TABLE %s (%s PRIMARY KEY %s)" % (self.name, fields, keys)
153 f.write("from msilib import Table\n")
159 f.write("\n%s = Table('%s')\n" % (name,name))
168 # Fill the _Validation table
175 # Table, Column, Nullable
210 table = r.StringData(1)
211 tables.append(table)
212 f.write("%s = [\n" % table)
213 v1 = seqmsi.OpenView("SELECT * FROM `%s`" % table)
    [all...]

Completed in 1324 milliseconds

1 2 34 5 6 7 8 91011