/device/linaro/bootloader/edk2/BaseTools/Source/Python/Table/ |
Table.py | 2 # This file is used to create/update/query/erase a common table
21 # This class defined a common table
26 # @param TableName: Name of the table
28 class Table(object):
31 self.Table = ''
34 ## Create table
36 # Create a table
43 ## Insert table
45 # Insert a record into a table
50 ## Query table
[all...] |
TableReport.py | 2 # This file is used to create/update/query/erase table for ECC reports
19 from Table import Table
27 # This class defined a table used for data model
32 class TableReport(Table):
34 Table.__init__(self, Cursor)
35 self.Table = 'Report'
37 ## Create table
39 # Create table report
49 SqlCommand = """create table IF NOT EXISTS %s (ID INTEGER PRIMARY KEY, [all...] |
/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...] |
/device/linaro/bootloader/edk2/MdeModulePkg/Core/Dxe/Misc/ |
DebugImageInfo.c | 2 Support functions for managing debug image info table when loading and unloading
32 Creates and initializes the DebugImageInfo Table. Also creates the configuration
33 table and registers it into the system table.
131 // Configuration Table
139 Update the CRC32 in the Debug Table.
158 Adds a new DebugImageInfo structure to the DebugImageInfo Table. Re-Allocates
159 the table if it's not large enough to accomidate another entry.
174 EFI_DEBUG_IMAGE_INFO *Table;
180 // Set the flag indicating that we're in the process of updating the table. [all...] |
InstallConfigurationTable.c | 22 Boot Service called to add, modify, or remove a system configuration table from
23 the EFI System Table.
27 @param Table Pointer to the configuration table for the entry to add,
30 @return EFI_SUCCESS Guid, Table pair added, updated, or removed.
40 IN VOID *Table
56 // Search all the table for an entry that matches Guid
68 if (Table != NULL) {
70 // If Table is not NULL, then this is a modify operation.
71 // Modify the table enty and return. [all...] |
/external/libtextclassifier/common/ |
fastexp.cc | 30 const FastMathClass::Table FastMathClass::cache_ = {
|
/frameworks/av/services/audiopolicy/common/managerdefinitions/src/ |
TypeConverter.cpp | 27 const DeviceCategoryConverter::Table DeviceCategoryConverter::mTable[] = { 36 const MixTypeConverter::Table MixTypeConverter::mTable[] = { 44 const RouteFlagTypeConverter::Table RouteFlagTypeConverter::mTable[] = { 52 const RuleTypeConverter::Table RuleTypeConverter::mTable[] = {
|
/external/guava/guava-tests/test/com/google/common/collect/ |
HashBasedTableTest.java | 32 @Override protected Table<String, Integer, Character> create( 34 Table<String, Integer, Character> table = HashBasedTable.create(); local 35 table.put("foo", 4, 'a'); 36 table.put("cat", 1, 'b'); 37 table.clear(); 38 populate(table, data); 39 return table; 43 Table<String, Integer, Character> table1 = HashBasedTable.create(100, 20); 47 Table<String, Integer, Character> table2 = HashBasedTable.create(100, 0) [all...] |
/external/sfntly/cpp/src/sfntly/table/ |
table_based_table_builder.h | 20 #include "sfntly/table/table.h" 24 class TableBasedTableBuilder : public Table::Builder { 39 // C++ port: renamed table() to GetTable() 40 virtual Table* GetTable();
|
table.h | 26 #include "sfntly/table/font_data_table.h" 27 #include "sfntly/table/header.h" 32 // A concrete implementation of a root level table in the font. This is the base 33 // class used for all specific table implementations and is used as the generic 34 // table for all tables which have no specific implementations. 35 class Table : public FontDataTable { 37 // Note: original version is Builder<T extends Table> 44 virtual void NotifyPostTableBuild(FontDataTable* table); 46 // Get a builder for the table type specified by the data in the header. 47 // @param header the header for the table [all...] |
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/extensions/compactnotation/ |
Table.java | 20 public class Table { 25 public Table(String id, String name) {
|
/device/linaro/bootloader/edk2/BaseTools/Source/Python/Workspace/ |
MetaDataTable.py | 2 # This file is used to create/update/query/erase table for files
29 # This class defined a common table
34 # @param TableName: Name of the table
36 class Table(object):
44 self.Table = Name
50 return self.Table
52 ## Create table
54 # Create a table
61 SqlCommand = """create temp table IF NOT EXISTS %s (%s)""" % (self.Table, self._COLUMN_) [all...] |
/external/lzma/CS/7zip/Common/ |
CRC.cs | 7 public static readonly uint[] Table;
11 Table = new uint[256];
21 Table[i] = r;
31 _value = Table[(((byte)(_value)) ^ b)] ^ (_value >> 8);
37 _value = Table[(((byte)(_value)) ^ data[offset + i])] ^ (_value >> 8);
|
/prebuilts/go/darwin-x86/src/hash/crc64/ |
crc64.go | 24 // Table is a 256-word table representing the polynomial for efficient processing. 25 type Table [256]uint64 32 // MakeTable returns a Table constructed from the specified polynomial. 33 // The contents of this Table must not be modified. 34 func MakeTable(poly uint64) *Table { 45 func makeTable(poly uint64) *Table { 46 t := new(Table) 61 func makeSlicingBy8Table(t *Table) *[8]Table { [all...] |
/prebuilts/go/linux-x86/src/hash/crc64/ |
crc64.go | 24 // Table is a 256-word table representing the polynomial for efficient processing. 25 type Table [256]uint64 32 // MakeTable returns a Table constructed from the specified polynomial. 33 // The contents of this Table must not be modified. 34 func MakeTable(poly uint64) *Table { 45 func makeTable(poly uint64) *Table { 46 t := new(Table) 61 func makeSlicingBy8Table(t *Table) *[8]Table { [all...] |
/device/linaro/bootloader/edk2/QuarkPlatformPkg/Acpi/DxeSmm/SmmPowerManagement/ |
Ppm.c | 58 // Patch FADT table to enable C2,C3
63 // Load all the power management acpi tables and patch IST table
77 EFI_ACPI_DESCRIPTION_HEADER *Table;
104 Table = NULL;
105 Status = gBS->AllocatePool (EfiBootServicesData, CurrentTable->Length, (VOID **) &Table);
106 ASSERT (Table != NULL);
107 CopyMem (Table, CurrentTable, CurrentTable->Length);
109 FadtPointer = (EFI_ACPI_3_0_FIXED_ACPI_DESCRIPTION_TABLE*) Table;
112 // Update the ACPI table and recalculate checksum
126 ((EFI_ACPI_SDT_HEADER *)Table)->Checksum = 0; [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...] |
/device/linaro/bootloader/edk2/MdeModulePkg/Core/PiSmmCore/ |
InstallConfigurationTable.c | 2 System Management System Table Services SmmInstallConfigurationTable service
24 Table. The list is stored as an array of (GUID, Pointer) pairs. The list
27 @param SystemTable A pointer to the SMM System Table (SMST).
29 @param Table A pointer to the buffer of the table to add.
30 @param TableSize The size of the table to install.
32 @retval EFI_SUCCESS The (Guid, Table) pair was added, updated, or removed.
43 IN VOID *Table,
60 // Search all the table for an entry that matches Guid
72 if (Table != NULL) { [all...] |
/device/linaro/bootloader/edk2/DuetPkg/DxeIpl/ |
LegacyTable.c | 132 EFI_ACPI_DESCRIPTION_HEADER *Table;
140 Table = (EFI_ACPI_DESCRIPTION_HEADER*)((UINTN)(*EntryPtr));
141 if (Table->Signature == Signature) {
142 *FoundTable = Table;
161 EFI_ACPI_DESCRIPTION_HEADER *Table;
170 Table = (EFI_ACPI_DESCRIPTION_HEADER*)((UINTN)(EntryPtr));
171 if (Table->Signature == Signature) {
172 *FoundTable = Table;
194 // Check ACPI2.0 table
196 if ((int)Hob->Acpi20.Table != -1) { [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...] |
/art/runtime/ |
reference_table.h | 36 // Maintain a table of references. Used for JNI monitor references and 58 TrackingAllocator<GcRoot<mirror::Object>, kAllocatorTagReferenceTable>> Table; 59 static void Dump(std::ostream& os, Table& entries) 64 Table entries_;
|
/external/sfntly/cpp/src/test/ |
verify_glyf.cc | 19 #include "sfntly/table/truetype/glyph_table.h" 33 static bool VerifyGLYF(Table* table) { 34 GlyphTablePtr glyf_table = down_cast<GlyphTable*>(table); 53 bool VerifyGLYF(Table* original, Table* target) {
|
verify_hhea.cc | 20 #include "sfntly/table/core/horizontal_header_table.h" 35 static bool VerifyHHEA(Table* table) { 36 HorizontalHeaderTablePtr hhea = down_cast<HorizontalHeaderTable*>(table); 57 bool VerifyHHEA(Table* original, Table* target) {
|
verify_loca.cc | 19 #include "sfntly/table/truetype/loca_table.h" 40 static bool VerifyLOCA(Table* table) { 41 LocaTablePtr loca = down_cast<LocaTable*>(table); 56 bool VerifyLOCA(Table* original, Table* target) {
|
/external/flatbuffers/tests/MyGame/Example2/ |
Monster.go | 10 _tab flatbuffers.Table 25 func (rcv *Monster) Table() flatbuffers.Table {
|