/external/mesa3d/src/hgl/ |
GLDispatcher.h | 36 struct _glapi_table* Table(); 64 BGLDispatcher::Table()
|
/frameworks/av/media/libeffects/lvm/lib/Common/src/ |
LVM_Mixer_TimeConstant.c | 76 LVM_FLOAT Table[] = {ALPHA_Float_0, /* Log spaced look-up table */ 137 /* Normalize to get the table index and interpolation factor */ 157 Diff = (Table[Shift] - Table[Shift + 1]); 159 ProductFloat = Table[Shift + 1] + Diff; 173 LVM_UINT32 Table[] = {ALPHA_0, /* Log spaced look-up table */ 235 /* Normalize to get the table index and interpolation factor */ 254 Diff = (LVM_INT32)(Table[Shift] - Table[Shift+1]) [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...] |
/frameworks/support/room/compiler/src/test/kotlin/androidx/room/parser/ |
SqlParserTest.kt | 85 `is`(setOf(Table("users", "users")))) 87 `is`(setOf(Table("users", "ux")))) 89 `is`(setOf(Table("books", "books")))) 91 `is`(setOf(Table("books", "books")))) 97 `is`(setOf(Table("users", "users")))) 99 `is`(setOf(Table("users", "users")))) 101 `is`(setOf(Table("users", "users")))) 121 assertThat(query.tables, `is`(setOf(Table("user", "a"), 122 Table("book", "b")))) 130 assertThat(query.tables, `is`(setOf(Table("user", "a") [all...] |
/device/linaro/bootloader/OpenPlatformPkg/Chips/Hisilicon/Pv660/Drivers/UnInstallAcpiTableDxe/ |
UnInstallAcpiTable.c | 41 EFI_ACPI_SDT_HEADER *Table;
75 DEBUG((EFI_D_ERROR, "Current SataEnable Flag is Sata, try to uninstall Sas SSDT table\n"));
79 DEBUG((EFI_D_ERROR, "Current SataEnable Flag is Sas, try to uninstall Sata SSDT table\n"));
86 DEBUG((EFI_D_ERROR,"Unable to locate ACPI table protocol\n"));
98 // Search for SSDT Table and delete the matched SSDT table
100 Status = AcpiTableProtocol->GetAcpiTable(i, &Table, &TableVersion, &TableKey);
103 if (Table->Signature == EFI_ACPI_3_0_SECONDARY_SYSTEM_DESCRIPTION_TABLE_SIGNATURE) {
105 if(*(UINT64*)Table->OemTableId == SsdtName) {
108 DEBUG((EFI_D_ERROR,"Successfully remove the SSDT table\n")); [all...] |
/external/guava/guava-tests/test/com/google/common/collect/ |
ForwardingTableTest.java | 26 private Table<String, Integer, Boolean> forward; 36 final Table<String, Integer, Boolean> table = local 37 createProxyInstance(Table.class); 39 @Override protected Table<String, Integer, Boolean> delegate() { 40 return table; 112 assertEquals("[putAll(Table)]", getCalls());
|
TableCollectionTest.java | 25 import com.google.common.collect.Table.Cell; 53 * Collection tests for {@link Table} implementations. 118 // Not testing rowKeySet() or columnKeySet() of Table.transformValues() 123 Table<String, Integer, Character> table 126 populateForRowKeySet(table, elements); 127 return table.rowKeySet(); 139 Table<String, Integer, Character> table = HashBasedTable.create(); 140 populateForRowKeySet(table, elements) 619 Table<String, Integer, Character> table = createTable(); local 676 Table<Character, String, Integer> table = makeTable(); local 749 Table<Character, String, Integer> table = HashBasedTable.create(); local 754 Table<Character, String, Integer> table = HashBasedTable.create(); local 769 Table<Character, String, Integer> table = HashBasedTable.create(); local 774 Table<Character, String, Integer> table = HashBasedTable.create(); local 789 RowSortedTable<Character, String, Integer> table = TreeBasedTable.create(); local 794 RowSortedTable<Character, String, Integer> table = TreeBasedTable.create(); local 817 Table<String, Character, Integer> table = makeTable(); local 883 Table<String, Character, Integer> table = HashBasedTable.create(); local 888 Table<String, Character, Integer> table = HashBasedTable.create(); local 903 Table<String, Character, Integer> table = HashBasedTable.create(); local 908 Table<String, Character, Integer> table = HashBasedTable.create(); local 923 RowSortedTable<String, Character, Integer> table = TreeBasedTable.create(); local 928 RowSortedTable<String, Character, Integer> table = TreeBasedTable.create(); local 1001 Table<String, Integer, Character> table = makeTable(); local 1059 TreeBasedTable<String, Integer, Character> table = local 1067 TreeBasedTable<String, Integer, Character> table = makeTable(); local 1087 TreeBasedTable<String, Integer, Character> table = local 1095 TreeBasedTable<String, Integer, Character> table = makeTable(); local 1115 TreeBasedTable<String, Integer, Character> table = local 1124 TreeBasedTable<String, Integer, Character> table = makeTable(); local 1158 Table<String, Integer, String> table = HashBasedTable.create(); local 1178 Table<String, Integer, Character> table = HashBasedTable.create(); local 1198 RowSortedTable<String, Integer, Character> table = TreeBasedTable.create(); local 1217 Table<Integer, String, Character> table = makeTable(); local 1277 Table<Integer, String, String> table = HashBasedTable.create(); local 1297 Table<Integer, String, Character> table = HashBasedTable.create(); local 1317 RowSortedTable<Integer, String, Character> table = TreeBasedTable.create(); local [all...] |
ImmutableTableTest.java | 31 @Override protected Table<String, Integer, Character> create(Object... data) { 48 Table<Character, Integer, String> expectedTable = HashBasedTable.create(); 52 Table<Character, Integer, String> otherTable = HashBasedTable.create(); 101 Table.Cell<Character, Integer, String> mutableCell = 160 private static <R, C, V> void validateTableCopies(Table<R, C, V> original) { 161 Table<R, C, V> copy = ImmutableTable.copyOf(original); 165 Table<R, C, V> built 172 Table<R, C, V> original, Table<R, C, V> copy) { 179 Table<Character, Integer, String> table = TreeBasedTable.create() local 194 Table<Character, Integer, String> table = TreeBasedTable.create(); local 208 Table<Character, Integer, String> table = TreeBasedTable.create(); local 221 Table<Character, Integer, String> table = HashBasedTable.create(); local 251 Table<Character, Integer, String> table = builder.build(); local 273 Table<Character, Integer, String> table = builder.build(); local 295 Table<Character, Integer, String> table = builder.build(); local 312 Table<Character, Integer, String> table = builder.build(); local 330 Table<Character, Integer, String> table = builder.build(); local 347 Table<Character, Integer, String> table = builder.build(); local [all...] |
AbstractTableReadTest.java | 30 * Test cases for {@link Table} read operations. 36 protected Table<String, Integer, Character> table; field in class:AbstractTableReadTest 39 * Creates a table with the specified data. 41 * @param data the table data, repeating the sequence row key, column key, 47 protected abstract Table<String, Integer, Character> 51 assertEquals(expectedSize, table.size()); 56 table = create(); 60 table = create("foo", 1, 'a', "bar", 1, 'b', "foo", 3, 'c'); 61 assertTrue(table.contains("foo", 1)) [all...] |
/external/jacoco/org.jacoco.report.test/src/org/jacoco/report/internal/html/page/ |
PageTestBase.java | 28 import org.jacoco.report.internal.html.table.LabelColumn; 29 import org.jacoco.report.internal.html.table.Table; 49 final Table table = new Table(); local 50 table.add("Element", null, new LabelColumn(), true); 61 public Table getTable() { 62 return table;
|
/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...] |
/frameworks/compile/mclinker/include/mcld/LD/ |
NamePool.h | 33 typedef HashTable<ResolveInfo, hash::StringHash<hash::DJB> > Table; 34 typedef Table::iterator syminfo_iterator; 35 typedef Table::const_iterator const_syminfo_iterator; 87 /// @return the StringRef points to the hash table 123 Table m_Table;
|
/external/python/cpython3/Lib/msilib/ |
schema.py | 1 from . import Table 3 _Validation = Table('_Validation') 4 _Validation.add_field(1,'Table',11552) 15 ActionText = Table('ActionText') 20 AdminExecuteSequence = Table('AdminExecuteSequence') 25 Condition = Table('Condition') 30 AdminUISequence = Table('AdminUISequence') 35 AdvtExecuteSequence = Table('AdvtExecuteSequence') 40 AdvtUISequence = Table('AdvtUISequence') 45 AppId = Table('AppId' [all...] |
/art/runtime/ |
reference_table.h | 35 // Maintain a table of references. Used for JNI monitor references and 59 TrackingAllocator<GcRoot<mirror::Object>, kAllocatorTagReferenceTable>> Table; 60 static void Dump(std::ostream& os, Table& entries) 66 Table entries_;
|
/external/sfntly/cpp/src/test/ |
verify_hmtx.cc | 19 #include "sfntly/table/core/horizontal_metrics_table.h" 49 static bool VerifyHMTX(Table* table) { 50 HorizontalMetricsTablePtr hmtx = down_cast<HorizontalMetricsTable*>(table); 70 bool VerifyHMTX(Table* original, Table* target) {
|
verify_maxp.cc | 20 #include "sfntly/table/core/maximum_profile_table.h" 40 static bool VerifyMAXP(Table* table) { 41 MaximumProfileTablePtr maxp = down_cast<MaximumProfileTable*>(table); 66 bool VerifyMAXP(Table* original, Table* target) {
|
verify_name.cc | 19 #include "sfntly/table/core/name_table.h" 40 static bool VerifyNAME(Table* table) { 43 NameTablePtr name = down_cast<NameTable*>(table); 62 bool VerifyNAME(Table* original, Table* target) {
|
/device/linaro/bootloader/edk2/BaseTools/Source/Python/Common/ |
Parsing.py | 23 # Search whole table to find all defined Macro and replaced them with the real values
25 def ParseDefineMacro2(Table, RecordSets, GlobalMacro):
32 and Enabled > -1""" % (Table.Table, MODEL_META_DATA_DEFINE)
33 RecordSet = Table.Exec(SqlCommand)
53 # Search whole table to find all defined Macro and replaced them with the real values
55 def ParseDefineMacro(Table, GlobalMacro):
62 and Enabled > -1""" % (Table.Table, MODEL_META_DATA_DEFINE)
63 RecordSet = Table.Exec(SqlCommand) [all...] |
/external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/ |
ImmutableTableTest.java | 30 @Override protected Table<String, Integer, Character> create(Object... data) { 47 Table<Character, Integer, String> expectedTable = HashBasedTable.create(); 51 Table<Character, Integer, String> otherTable = HashBasedTable.create(); 100 Table.Cell<Character, Integer, String> mutableCell = 159 private static <R, C, V> void validateTableCopies(Table<R, C, V> original) { 160 Table<R, C, V> copy = ImmutableTable.copyOf(original); 164 Table<R, C, V> built 171 Table<R, C, V> original, Table<R, C, V> copy) { 178 Table<Character, Integer, String> table = TreeBasedTable.create() local 193 Table<Character, Integer, String> table = TreeBasedTable.create(); local 207 Table<Character, Integer, String> table = TreeBasedTable.create(); local 220 Table<Character, Integer, String> table = HashBasedTable.create(); local 250 Table<Character, Integer, String> table = builder.build(); local 272 Table<Character, Integer, String> table = builder.build(); local 294 Table<Character, Integer, String> table = builder.build(); local 311 Table<Character, Integer, String> table = builder.build(); local 329 Table<Character, Integer, String> table = builder.build(); local 346 Table<Character, Integer, String> table = builder.build(); local [all...] |
AbstractTableReadTest.java | 28 * Test cases for {@link Table} read operations. 34 protected Table<String, Integer, Character> table; field in class:AbstractTableReadTest 37 * Creates a table with the specified data. 39 * @param data the table data, repeating the sequence row key, column key, 45 protected abstract Table<String, Integer, Character> 49 assertEquals(expectedSize, table.size()); 54 table = create(); 58 table = create("foo", 1, 'a', "bar", 1, 'b', "foo", 3, 'c'); 59 assertTrue(table.contains("foo", 1)) [all...] |
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/Dxe/Print/ |
BoxDraw.c | 132 UNICODE_TO_CHAR *Table;
143 for (Table = UnicodeToPcAnsiOrAscii; Table->Unicode != 0x0000; Table++) {
144 if (Graphic == Table->Unicode) {
146 *PcAnsi = Table->PcAnsi;
149 *Ascii = Table->Ascii;
|
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/Dxe/PrintLite/ |
BoxDraw.c | 132 UNICODE_TO_CHAR *Table;
143 for (Table = UnicodeToPcAnsiOrAscii; Table->Unicode != 0x0000; Table++) {
144 if (Graphic == Table->Unicode) {
146 *PcAnsi = Table->PcAnsi;
149 *Ascii = Table->Ascii;
|
/device/linaro/bootloader/edk2/BaseTools/Source/Python/Eot/ |
Database.py | 23 from Table.TableDataModel import TableDataModel
24 from Table.TableFile import TableFile
25 from Table.TableFunction import TableFunction
26 from Table.TableIdentifier import TableIdentifier
27 from Table.TableEotReport import TableEotReport
28 from Table.TableInf import TableInf
29 from Table.TableDec import TableDec
30 from Table.TableDsc import TableDsc
31 from Table.TableFdf import TableFdf
32 from Table.TableQuery import TableQuery [all...] |
/prebuilts/go/darwin-x86/src/hash/crc32/ |
crc32_generic.go | 8 // The simple (and slow) CRC32 implementation only uses a 256*4 bytes table. 11 // table (8*256*4 bytes). 15 // simpleMakeTable allocates and constructs a Table for the specified 16 // polynomial. The table is suitable for use with the simple algorithm 18 func simpleMakeTable(poly uint32) *Table { 19 t := new(Table) 24 // simplePopulateTable constructs a Table for the specified polynomial, suitable 26 func simplePopulateTable(poly uint32, t *Table) { 40 // simpleUpdate uses the simple algorithm to update the CRC, given a table that 42 func simpleUpdate(crc uint32, tab *Table, p []byte) uint32 [all...] |
/prebuilts/go/linux-x86/src/hash/crc32/ |
crc32_generic.go | 8 // The simple (and slow) CRC32 implementation only uses a 256*4 bytes table. 11 // table (8*256*4 bytes). 15 // simpleMakeTable allocates and constructs a Table for the specified 16 // polynomial. The table is suitable for use with the simple algorithm 18 func simpleMakeTable(poly uint32) *Table { 19 t := new(Table) 24 // simplePopulateTable constructs a Table for the specified polynomial, suitable 26 func simplePopulateTable(poly uint32, t *Table) { 40 // simpleUpdate uses the simple algorithm to update the CRC, given a table that 42 func simpleUpdate(crc uint32, tab *Table, p []byte) uint32 [all...] |