/external/sfntly/cpp/src/test/ |
serialization_test.h | 20 #include "sfntly/table/table.h" 24 bool VerifyHHEA(Table* original, Table* target); 25 bool VerifyGLYF(Table* original, Table* target); 26 bool VerifyHMTX(Table* original, Table* target); 27 bool VerifyLOCA(Table* original, Table* target) [all...] |
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/WebAssembly/ |
WebAssemblyRuntimeLibcallSignatures.cpp | 15 /// table providing type signatures for all runtime library functions that LLVM 93 std::vector<RuntimeLibcallSignature> Table; 96 RuntimeLibcallSignatureTable() : Table(RTLIB::UNKNOWN_LIBCALL, unsupported) { 98 Table[RTLIB::SHL_I16] = i16_func_i16_i16; 99 Table[RTLIB::SHL_I32] = i32_func_i32_i32; 100 Table[RTLIB::SHL_I64] = i64_func_i64_i64; 101 Table[RTLIB::SHL_I128] = i64_i64_func_i64_i64_i32; 102 Table[RTLIB::SRL_I16] = i16_func_i16_i16; 103 Table[RTLIB::SRL_I32] = i32_func_i32_i32; 104 Table[RTLIB::SRL_I64] = i64_func_i64_i64 [all...] |
/external/tensorflow/tensorflow/core/lib/io/ |
table.h | 25 namespace table { namespace in namespace:tensorflow 32 // A Table is a sorted map from strings to strings. Tables are 33 // immutable and persistent. A Table may be safely accessed from 35 class Table { 37 // Attempt to open the table that is stored in bytes [0..file_size) 39 // retrieving data from the table. 41 // If successful, returns ok and sets "*table" to the newly opened 42 // table. The client should delete "*table" when no longer needed. 43 // If there was an error while initializing the table, sets "*table [all...] |
/external/sfntly/cpp/src/sfntly/table/ |
subtable_container_table.h | 20 #include "sfntly/table/table.h" 24 class SubTableContainerTable : public Table { 26 class Builder : public Table::Builder { 29 : Table::Builder(header, data) { 33 : Table::Builder(header, data) { 40 : Table(header, data) {
|
table.cc | 21 #include "sfntly/table/table.h" 25 #include "sfntly/table/bitmap/ebdt_table.h" 26 #include "sfntly/table/bitmap/eblc_table.h" 27 #include "sfntly/table/bitmap/ebsc_table.h" 28 #include "sfntly/table/core/cmap_table.h" 29 #include "sfntly/table/core/font_header_table.h" 30 #include "sfntly/table/core/horizontal_device_metrics_table.h" 31 #include "sfntly/table/core/horizontal_header_table.h" 32 #include "sfntly/table/core/horizontal_metrics_table.h [all...] |
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/DebugInfo/PDB/ |
HashTableTest.cpp | 40 HashTableInternals Table; 41 EXPECT_EQ(0u, Table.size()); 42 EXPECT_GT(Table.capacity(), 0u); 44 Table.set_as(3u, 7); 45 EXPECT_EQ(1u, Table.size()); 46 ASSERT_NE(Table.end(), Table.find_as(3u)); 47 EXPECT_EQ(7u, Table.get(3u)); 51 HashTableInternals Table; 52 EXPECT_EQ(0u, Table.size()) [all...] |
StringTableBuilderTest.cpp | 28 // Create /names table contents. 62 PDBStringTable Table; 63 EXPECT_THAT_ERROR(Table.reload(Reader), Succeeded()); 65 EXPECT_EQ(6U, Table.getNameCount()); 66 EXPECT_EQ(1U, Table.getHashVersion()); 68 EXPECT_THAT_EXPECTED(Table.getStringForID(FooID), HasValue("foo")); 69 EXPECT_THAT_EXPECTED(Table.getStringForID(BarID), HasValue("bar")); 70 EXPECT_THAT_EXPECTED(Table.getStringForID(BazID), HasValue("baz")); 71 EXPECT_THAT_EXPECTED(Table.getStringForID(BuzzID), HasValue("buzz")); 72 EXPECT_THAT_EXPECTED(Table.getStringForID(BazzID), HasValue("bazz")) [all...] |
/device/linaro/bootloader/edk2/BaseTools/Source/Python/Table/ |
TableQuery.py | 2 # This file is used to create/update/query/erase table for Queries
19 from Table import Table
23 # This class defined a table used for Query
28 class TableQuery(Table):
30 Table.__init__(self, Cursor)
31 self.Table = 'Query'
33 ## Create table
35 # Create table Query
44 SqlCommand = """create table IF NOT EXISTS %s(ID INTEGER PRIMARY KEY, [all...] |
TableDec.py | 2 # This file is used to create/update/query/erase table for dec datas
19 from Table import Table
24 # This class defined a table used for data model
29 class TableDec(Table):
31 Table.__init__(self, Cursor)
32 self.Table = 'Dec'
34 ## Create table
36 # Create table Dec
53 SqlCommand = """create table IF NOT EXISTS %s (ID INTEGER PRIMARY KEY, [all...] |
TableDsc.py | 2 # This file is used to create/update/query/erase table for dsc datas
19 from Table import Table
24 # This class defined a table used for data model
29 class TableDsc(Table):
31 Table.__init__(self, Cursor)
32 self.Table = 'Dsc'
34 ## Create table
36 # Create table Dsc
53 SqlCommand = """create table IF NOT EXISTS %s (ID INTEGER PRIMARY KEY, [all...] |
TableEotReport.py | 2 # This file is used to create/update/query/erase table for ECC reports
19 from Table import Table
26 # This class defined a table used for data model
31 class TableEotReport(Table):
33 Table.__init__(self, Cursor)
34 self.Table = 'Report'
36 ## Create table
38 # Create table report
42 SqlCommand = """create table IF NOT EXISTS %s (ID INTEGER PRIMARY KEY, [all...] |
TableFdf.py | 2 # This file is used to create/update/query/erase table for fdf datas
19 from Table import Table
24 # This class defined a table used for data model
29 class TableFdf(Table):
31 Table.__init__(self, Cursor)
32 self.Table = 'Fdf'
34 ## Create table
36 # Create table Fdf
53 SqlCommand = """create table IF NOT EXISTS %s (ID INTEGER PRIMARY KEY, [all...] |
TableInf.py | 2 # This file is used to create/update/query/erase table for inf datas
19 from Table import Table
24 # This class defined a table used for data model
29 class TableInf(Table):
31 Table.__init__(self, Cursor)
32 self.Table = 'Inf'
34 ## Create table
36 # Create table Inf
55 SqlCommand = """create table IF NOT EXISTS %s (ID INTEGER PRIMARY KEY, [all...] |
TableDataModel.py | 2 # This file is used to create/update/query/erase table for data models
19 from Table import Table
24 # This class defined a table used for data model
29 class TableDataModel(Table):
31 Table.__init__(self, Cursor)
32 self.Table = 'DataModel'
34 ## Create table
36 # Create table DataModel
44 SqlCommand = """create table IF NOT EXISTS %s (ID INTEGER PRIMARY KEY, [all...] |
TableFunction.py | 2 # This file is used to create/update/query/erase table for functions
18 from Table import Table
23 # This class defined a table used for function
25 # @param Table: Inherited from Table class
27 class TableFunction(Table):
29 Table.__init__(self, Cursor)
30 self.Table = 'Function'
32 ## Create table
[all...] |
TableIdentifier.py | 2 # This file is used to create/update/query/erase table for Identifiers
19 from Table import Table
23 # This class defined a table used for Identifier
28 class TableIdentifier(Table):
30 Table.__init__(self, Cursor)
31 self.Table = 'Identifier'
33 ## Create table
35 # Create table Identifier
51 SqlCommand = """create table IF NOT EXISTS %s(ID INTEGER PRIMARY KEY, [all...] |
TablePcd.py | 2 # This file is used to create/update/query/erase table for pcds
18 from Table import Table
23 # This class defined a table used for pcds
28 class TablePcd(Table):
30 Table.__init__(self, Cursor)
31 self.Table = 'Pcd'
33 ## Create table
35 # Create table Pcd
51 SqlCommand = """create table IF NOT EXISTS %s (ID INTEGER PRIMARY KEY, [all...] |
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/Dxe/EfiDriverLib/ |
EfiGetConfigTable.c | 28 OUT VOID **Table
34 Get table from configuration table by name
38 TableGuid - Table name to search
40 Table - Pointer to the table caller wants
44 EFI_NOT_FOUND - Not found the table
46 EFI_SUCCESS - Found the table
52 *Table = NULL;
55 *Table = gST->ConfigurationTable[Index].VendorTable; [all...] |
/external/lua/src/ |
ltable.h | 38 /* returns the key, given the value of a table entry */ 43 LUAI_FUNC const TValue *luaH_getint (Table *t, lua_Integer key); 44 LUAI_FUNC void luaH_setint (lua_State *L, Table *t, lua_Integer key, 46 LUAI_FUNC const TValue *luaH_getshortstr (Table *t, TString *key); 47 LUAI_FUNC const TValue *luaH_getstr (Table *t, TString *key); 48 LUAI_FUNC const TValue *luaH_get (Table *t, const TValue *key); 49 LUAI_FUNC TValue *luaH_newkey (lua_State *L, Table *t, const TValue *key); 50 LUAI_FUNC TValue *luaH_set (lua_State *L, Table *t, const TValue *key); 51 LUAI_FUNC Table *luaH_new (lua_State *L); 52 LUAI_FUNC void luaH_resize (lua_State *L, Table *t, unsigned int nasize [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/ |
ltable.h | 20 /* returns the key, given the value of a table entry */ 25 LUAI_FUNC const TValue *luaH_getint (Table *t, int key); 26 LUAI_FUNC void luaH_setint (lua_State *L, Table *t, int key, TValue *value); 27 LUAI_FUNC const TValue *luaH_getstr (Table *t, TString *key); 28 LUAI_FUNC const TValue *luaH_get (Table *t, const TValue *key); 29 LUAI_FUNC TValue *luaH_newkey (lua_State *L, Table *t, const TValue *key); 30 LUAI_FUNC TValue *luaH_set (lua_State *L, Table *t, const TValue *key); 31 LUAI_FUNC Table *luaH_new (lua_State *L); 32 LUAI_FUNC void luaH_resize (lua_State *L, Table *t, int nasize, int nhsize); 33 LUAI_FUNC void luaH_resizearray (lua_State *L, Table *t, int nasize) [all...] |
/frameworks/av/services/audiopolicy/common/managerdefinitions/include/ |
TypeConverter.h | 37 const DeviceCategoryConverter::Table DeviceCategoryConverter::mTable[]; 39 const MixTypeConverter::Table MixTypeConverter::mTable[]; 41 const RouteFlagTypeConverter::Table RouteFlagTypeConverter::mTable[]; 43 const RuleTypeConverter::Table RuleTypeConverter::mTable[];
|
/external/ltp/testcases/open_posix_testsuite/stress/threads/sem_init/ |
s-c1.c | 429 struct row *Table = NULL; 509 Table = calloc(N, sizeof(struct row)); 511 if (Table == NULL) { 524 Table[N].X = (long)cur->nsem; 525 Table[N].LnX = log((double)cur->nsem); 528 Table[N]._x = Table[N].X - Xavg; 529 Table[N]._lnx = Table[N].LnX - LnXavg; 530 Table[N].Y_o = cur->_data_open [all...] |
/external/ltp/testcases/open_posix_testsuite/stress/threads/sem_open/ |
s-c1.c | 439 struct row *Table = NULL; 519 Table = calloc(N, sizeof(struct row)); 521 if (Table == NULL) { 533 Table[N].X = (long)cur->nsem; 534 Table[N].LnX = log((double)cur->nsem); 537 Table[N]._x = Table[N].X - Xavg; 538 Table[N]._lnx = Table[N].LnX - LnXavg; 539 Table[N].Y_o = cur->_data_open [all...] |
/external/flatbuffers/python/flatbuffers/ |
__init__.py | 16 from .table import Table
|
/external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/ |
HashBasedTableTest.java | 29 @Override protected Table<String, Integer, Character> create( 31 Table<String, Integer, Character> table = HashBasedTable.create(); local 32 table.put("foo", 4, 'a'); 33 table.put("cat", 1, 'b'); 34 table.clear(); 35 populate(table, data); 36 return table; 40 Table<String, Integer, Character> table1 = HashBasedTable.create(100, 20); 44 Table<String, Integer, Character> table2 = HashBasedTable.create(100, 0) [all...] |