/external/lzma/Java/SevenZip/ |
CRC.java | 7 static public int[] Table = new int[256];
19 Table[i] = r;
33 _value = Table[(_value ^ data[offset + i]) & 0xFF] ^ (_value >>> 8);
40 _value = Table[(_value ^ data[i]) & 0xFF] ^ (_value >>> 8);
45 _value = Table[(_value ^ b) & 0xFF] ^ (_value >>> 8);
|
/external/sfntly/cpp/src/sfntly/table/ |
table_based_table_builder.cc | 17 #include "sfntly/table/table_based_table_builder.h" 44 FontDataTablePtr table = static_cast<FontDataTable*>(GetTable()); local 45 return table.Detach(); 50 : Table::Builder(header, data) { 55 : Table::Builder(header, data) { 59 : Table::Builder(header) { 62 Table* TableBasedTableBuilder::GetTable() { 66 table_.Attach(down_cast<Table*>(SubBuildTable(data)));
|
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();
|
/device/linaro/bootloader/edk2/BaseTools/Source/Python/Table/ |
TableFile.py | 2 # This file is used to create/update/query/erase table for files
18 from Table import Table
25 # This class defined a table used for file
29 class TableFile(Table):
31 Table.__init__(self, Cursor)
32 self.Table = 'File'
34 ## Create table
36 # Create table File
47 SqlCommand = """create table IF NOT EXISTS %s (ID INTEGER PRIMARY KEY, [all...] |
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/guava/guava-tests/test/com/google/common/collect/ |
TransposedTableTest.java | 29 @Override protected Table<String, Integer, Character> create( 31 Table<Integer, String, Character> original = HashBasedTable.create(); 32 Table<String, Integer, Character> table = Tables.transpose(original); local 33 table.clear(); 34 populate(table, data); 35 return table; 39 Table<Integer, String, Character> original = HashBasedTable.create(); 44 Table<Integer, String, Character> original = HashBasedTable.create(); 45 Table<String, Integer, Character> transpose = Tables.transpose(original) [all...] |
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/perfetto/src/trace_processor/ |
table.cc | 17 #include "src/trace_processor/table.h" 30 std::string TypeToString(Table::ColumnType type) { 32 case Table::ColumnType::kString: 34 case Table::ColumnType::kUint: 36 case Table::ColumnType::kLong: 38 case Table::ColumnType::kInt: 40 case Table::ColumnType::kDouble: 42 case Table::ColumnType::kUnknown: 51 bool Table::debug = false; 53 Table::Table() = default [all...] |
process_table.h | 23 #include "src/trace_processor/table.h" 29 // The implementation of the SQLite table containing each unique process with 31 class ProcessTable : public Table { 34 class Cursor : public Table::Cursor { 38 // Implementation of Table::Cursor. 56 // Table implementation. 57 base::Optional<Table::Schema> Init(int, const char* const*) override; 58 std::unique_ptr<Table::Cursor> CreateCursor() override;
|
stats_table.h | 24 #include "src/trace_processor/table.h" 30 // The stats table contains diagnostic info and errors that are either: 33 class StatsTable : public Table { 36 class Cursor : public Table::Cursor { 40 // Implementation of Table::Cursor. 63 // Table implementation. 64 base::Optional<Table::Schema> Init(int, const char* const*) override; 65 std::unique_ptr<Table::Cursor> CreateCursor() override;
|
string_table.h | 23 #include "src/trace_processor/table.h" 31 // A virtual table that allows to list and query all the strings in the db. 32 class StringTable : public Table { 39 class Cursor : public Table::Cursor { 44 // Implementation of Table::Cursor. 68 // Table implementation. 69 base::Optional<Table::Schema> Init(int, const char* const*) override; 70 std::unique_ptr<Table::Cursor> CreateCursor() override;
|
thread_table.h | 23 #include "src/trace_processor/table.h" 29 // The implementation of the SQLite table containing each unique process with 31 class ThreadTable : public Table { 34 class Cursor : public Table::Cursor { 36 Cursor(ThreadTable* table); 38 // Implementation of Table::Cursor. 64 // Table implementation. 65 base::Optional<Table::Schema> Init(int, const char* const*) override; 66 std::unique_ptr<Table::Cursor> CreateCursor() override;
|
sql_stats_table.cc | 35 Table::Register<SqlStatsTable>(db, storage, "sqlstats"); 38 base::Optional<Table::Schema> SqlStatsTable::Init(int, const char* const*) { 41 Table::Column(Column::kQuery, "query", ColumnType::kString), 42 Table::Column(Column::kTimeQueued, "queued", ColumnType::kLong), 43 Table::Column(Column::kTimeStarted, "started", ColumnType::kLong), 44 Table::Column(Column::kTimeFirstNext, "first_next", 46 Table::Column(Column::kTimeEnded, "ended", ColumnType::kLong), 51 std::unique_ptr<Table::Cursor> SqlStatsTable::CreateCursor() { 52 return std::unique_ptr<Table::Cursor>(new Cursor(this)); 60 SqlStatsTable::Cursor::Cursor(SqlStatsTable* table) [all...] |
stats_table.cc | 28 Table::Register<StatsTable>(db, storage, "stats"); 31 base::Optional<Table::Schema> StatsTable::Init(int, const char* const*) { 34 Table::Column(Column::kName, "name", ColumnType::kString), 36 Table::Column(Column::kIndex, "idx", ColumnType::kUint), 37 Table::Column(Column::kSeverity, "severity", ColumnType::kString), 38 Table::Column(Column::kSource, "source", ColumnType::kString), 39 Table::Column(Column::kValue, "value", ColumnType::kLong), 44 std::unique_ptr<Table::Cursor> StatsTable::CreateCursor() { 45 return std::unique_ptr<Table::Cursor>(new Cursor(this)); 52 StatsTable::Cursor::Cursor(StatsTable* table) [all...] |
/external/ltp/testcases/open_posix_testsuite/stress/threads/fork/ |
s-c1.c | 430 struct row *Table = NULL; 493 Table = calloc(N, sizeof(struct row)); 495 if (Table == NULL) { 507 Table[N].X = (long)cur->nprocess; 508 Table[N].LnX = log((double)cur->nprocess); 511 Table[N]._x = Table[N].X - Xavg; 512 Table[N]._lnx = Table[N].LnX - LnXavg; 513 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...] |
/external/libtextclassifier/lang_id/common/math/ |
fastexp.cc | 30 const FastMathClass::Table FastMathClass::cache_ = {
|
/external/libtextclassifier/utils/math/ |
fastexp.cc | 29 const FastMathClass::Table FastMathClass::cache_ = {
|
/frameworks/av/services/audiopolicy/common/managerdefinitions/src/ |
TypeConverter.cpp | 27 const DeviceCategoryConverter::Table DeviceCategoryConverter::mTable[] = { 37 const MixTypeConverter::Table MixTypeConverter::mTable[] = { 45 const RouteFlagTypeConverter::Table RouteFlagTypeConverter::mTable[] = { 54 const RuleTypeConverter::Table RuleTypeConverter::mTable[] = {
|
/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...] |
/device/linaro/bootloader/OpenPlatformPkg/Chips/Hisilicon/Drivers/HisiAcpiPlatformDxe/ |
UpdateAcpiTable.c | 30 IN OUT EFI_ACPI_STATIC_RESOURCE_AFFINITY_TABLE *Table,
40 CurrPtr = (UINTN) &(Table->Memory[EFI_ACPI_MEMORY_AFFINITY_STRUCTURE_COUNT]);
41 NewPtr = (UINTN) &(Table->Memory[MemoryNodeNum]);
43 CopyMem ((VOID *)NewPtr, (VOID *)CurrPtr, (UINTN)Table + Table->Header.Header.Length - CurrPtr);
45 Table->Header.Header.Length -= CurrPtr - NewPtr;
53 IN OUT EFI_ACPI_STATIC_RESOURCE_AFFINITY_TABLE *Table
85 Table->Memory[MemoryNode].ProximityDomain = NodeId;
86 Table->Memory[MemoryNode].AddressBaseLow = Base;
87 Table->Memory[MemoryNode].AddressBaseHigh = Base >> 32; [all...] |
/external/tensorflow/tensorflow/core/lib/io/ |
table.cc | 16 #include "tensorflow/core/lib/io/table.h" 27 namespace table { namespace in namespace:tensorflow 29 struct Table::Rep { 41 Status Table::Open(const Options& options, RandomAccessFile* file, uint64 size, 42 Table** table) { 43 *table = nullptr; 71 Rep* rep = new Table::Rep; 78 *table = new Table(rep) 95 Table* table = reinterpret_cast<Table*>(arg); local [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);
|