| /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/Sec/ |
| SecMain.c | 732 volatile UINT8 *Table;
739 Table = (UINT8*)(UINTN)FixedPcdGet64 (PcdGuidedExtractHandlerTableAddress);
743 Table[Index] = 0;
921 // Rebase IDT table in permanent memory
|
| /device/linaro/bootloader/edk2/PcAtChipsetPkg/PcatRealTimeClockRuntimeDxe/ |
| PcRtc.c | 1204 This function find ACPI table with the specified signature in RSDT or XSDT.
1207 @param Signature ACPI table signature.
1208 @param TablePointerSize Size of table pointer: 4 or 8.
[all...] |
| /device/linaro/bootloader/edk2/SecurityPkg/Tcg/Tcg2Smm/ |
| Tcg2Smm.c | 2 It updates TPM2 items in ACPI table and registers SMI2 callback
224 Find the operation region in TCG ACPI table by given Name and Size,
227 @param[in, out] Table The TPM item in ACPI table.
228 @param[in] Name The name string to find in TPM table.
236 EFI_ACPI_DESCRIPTION_HEADER *Table,
250 for (OpRegion = (AML_OP_REGION_32_8 *) (Table + 1);
251 OpRegion <= (AML_OP_REGION_32_8 *) ((UINT8 *) Table + Table->Length);
272 ACPI table is "$PV". [all...] |
| /external/capstone/arch/SystemZ/ |
| SystemZDisassembler.c | 305 uint8_t *Table; 311 Table = DecoderTable16; 314 Table = DecoderTable32; 317 Table = DecoderTable48; 335 return decodeInstruction(Table, MI, Inst, address, info, 0);
|
| /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/flatbuffers/tests/MyGame/Example/ |
| TypeAliases.go | 10 _tab flatbuffers.Table 25 func (rcv *TypeAliases) Table() flatbuffers.Table {
|
| /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/python/cpython2/Lib/msilib/ |
| __init__.py | 32 class Table: 80 return "CREATE TABLE %s (%s PRIMARY KEY %s)" % (self.name, fields, keys) 100 def add_data(db, table, values): 101 v = db.OpenView("SELECT * FROM `%s`" % table) 121 raise MSIError("Could not insert "+repr(values)+" into "+table) 147 # Fill the validation table 176 for table in module.tables: 177 add_data(db, table, getattr(module, table)) 228 """Create a new directory in the Directory table. There is a current componen [all...] |
| /external/python/cpython3/Lib/msilib/ |
| __init__.py | 31 class Table: 79 return "CREATE TABLE %s (%s PRIMARY KEY %s)" % (self.name, fields, keys) 99 def add_data(db, table, values): 100 v = db.OpenView("SELECT * FROM `%s`" % table) 120 raise MSIError("Could not insert "+repr(values)+" into "+table) 146 # Fill the validation table 175 for table in module.tables: 176 add_data(db, table, getattr(module, table)) 227 """Create a new directory in the Directory table. There is a current componen [all...] |
| /frameworks/av/media/libmedia/include/media/ |
| TypeConverter.h | 138 struct Table { 143 static const Table mTable[]; 238 template<> const OutputDeviceConverter::Table OutputDeviceConverter::mTable[]; 239 template<> const InputDeviceConverter::Table InputDeviceConverter::mTable[]; 240 template<> const OutputFlagConverter::Table OutputFlagConverter::mTable[]; 241 template<> const InputFlagConverter::Table InputFlagConverter::mTable[]; 242 template<> const FormatConverter::Table FormatConverter::mTable[]; 243 template<> const OutputChannelConverter::Table OutputChannelConverter::mTable[]; 244 template<> const InputChannelConverter::Table InputChannelConverter::mTable[]; 245 template<> const ChannelIndexConverter::Table ChannelIndexConverter::mTable[] [all...] |
| /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ |
| wsdxmldom.h | 15 const BYTE *Table;
|
| /art/runtime/ |
| oat_file.h | 395 typedef AllocationTrackingSafeMap<StringPiece, const OatDexFile*, kAllocatorTagOatFile> Table; 401 Table oat_dex_files_; 410 mutable Table secondary_oat_dex_files_ GUARDED_BY(secondary_lookup_lock_); 440 // May return null if the OatDexFile only contains a type lookup table. This case only happens 509 // Create only with a type lookup table, used by the compiler to speed up compilation.
|
| /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...] |