/external/flatbuffers/tests/namespace_test/NamespaceA/ |
SecondTableInA.go | 10 _tab flatbuffers.Table 25 func (rcv *SecondTableInA) Table() flatbuffers.Table {
|
/external/llvm/lib/Target/AMDGPU/Utils/ |
AMDKernelCodeTUtils.cpp | 25 static StringRef const Table[] = { 31 return makeArrayRef(Table); 75 static const PrintFx Table[] = { 80 return makeArrayRef(Table); 147 static const ParseFx Table[] = { 152 return makeArrayRef(Table);
|
/device/linaro/bootloader/edk2/BaseTools/Source/Python/Ecc/ |
Check.py | [all...] |
/device/linaro/bootloader/edk2/SecurityPkg/Tcg/TcgSmm/ |
TcgSmm.c | 2 It updates TPM items in ACPI table and registers SMI callback
293 Find the operation region in TCG ACPI table by given Name and Size,
296 @param[in, out] Table The TPM item in ACPI table.
297 @param[in] Name The name string to find in TPM table.
305 EFI_ACPI_DESCRIPTION_HEADER *Table,
319 for (OpRegion = (AML_OP_REGION_32_8 *) (Table + 1);
320 OpRegion <= (AML_OP_REGION_32_8 *) ((UINT8 *) Table + Table->Length);
340 Initialize and publish TPM items in ACPI table. [all...] |
/device/linaro/bootloader/edk2/SecurityPkg/Tcg/TrEESmm/ |
TrEESmm.c | 2 It updates TPM2 items in ACPI table and registers SMI2 callback
289 Find the operation region in TCG ACPI table by given Name and Size,
292 @param[in, out] Table The TPM item in ACPI table.
293 @param[in] Name The name string to find in TPM table.
301 EFI_ACPI_DESCRIPTION_HEADER *Table,
315 for (OpRegion = (AML_OP_REGION_32_8 *) (Table + 1);
316 OpRegion <= (AML_OP_REGION_32_8 *) ((UINT8 *) Table + Table->Length);
336 Initialize and publish TPM items in ACPI table. [all...] |
/external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/ |
TablesTransformValuesTest.java | 39 @Override protected Table<String, Integer, Character> create( 41 Table<String, Integer, String> table = HashBasedTable.create(); local 46 table.put((String) data[i], (Integer) data[i + 1], value); 48 return Tables.transformValues(table, FIRST_CHARACTER); 51 // Null support depends on the underlying table and function. 56 table.put("foo", 1, 'a'); 63 table = create("foo", 1, 'a', "bar", 1, 'b', "foo", 3, 'c'); 64 Table<String, Integer, Character> other = HashBasedTable.create(); 69 table.putAll(other) [all...] |
/external/guava/guava-tests/test/com/google/common/collect/ |
TablesTransformValuesTest.java | 40 @Override protected Table<String, Integer, Character> create( 42 Table<String, Integer, String> table = HashBasedTable.create(); local 47 table.put((String) data[i], (Integer) data[i + 1], value); 49 return Tables.transformValues(table, FIRST_CHARACTER); 52 // Null support depends on the underlying table and function. 59 table.put("foo", 1, 'a'); 66 table = create("foo", 1, 'a', "bar", 1, 'b', "foo", 3, 'c'); 67 Table<String, Integer, Character> other = HashBasedTable.create(); 72 table.putAll(other) [all...] |
/external/llvm/lib/DebugInfo/CodeView/ |
ListRecordBuilder.cpp | 36 // The type table inserts a 16 bit size field before each list, so factor that 75 TypeIndex ListRecordBuilder::writeListRecord(TypeTableBuilder &Table) { 89 TypeIndex ContinuationIndex = Table.writeRecord(LastRec); 99 ContinuationIndex = Table.writeRecord(Rec);
|
/external/sfntly/cpp/src/sfntly/table/bitmap/ |
ebsc_table.cc | 17 #include "sfntly/table/bitmap/ebsc_table.h" 35 : Table(header, data) { 77 : Table::Builder(header, data) { 81 : Table::Builder(header, data) {
|
/device/linaro/bootloader/OpenPlatformPkg/Platforms/ARM/Juno/AcpiTables/ |
Dbg2.asl | 32 * [DBG2] ACPI Table 36 [0004] Signature : "DBG2" [Debug Port table type 2] 37 [0004] Table Length : 0000005A 41 [0008] Oem Table ID : "ARM-JUNO"
|
Spcr.asl | 32 * [SPCR] ACPI Table 36 [0004] Signature : "SPCR" [Serial Port Console Redirection table] 37 [0004] Table Length : 00000050 41 [0008] Oem Table ID : "ARM-JUNO"
|
/device/linaro/bootloader/OpenPlatformPkg/Platforms/ARM/VExpress/AcpiTables/rtsm_ve-aemv8a/ |
dbg2.asl | 32 * [DBG2] ACPI Table 36 [0004] Signature : "DBG2" [Debug Port table type 2] 37 [0004] Table Length : 0000005A 41 [0008] Oem Table ID : "RTSMVEV8"
|
spcr.asl | 32 * [SPCR] ACPI Table 36 [0004] Signature : "SPCR" [Serial Port Console Redirection table] 37 [0004] Table Length : 00000050 41 [0008] Oem Table ID : "RTSMVEV8"
|
/device/linaro/bootloader/edk2/BaseTools/Source/Python/Ecc/MetaFileWorkspace/ |
MetaFileTable.py | 2 # This file is used to create/update/query/erase a meta file table
22 from MetaDataTable import Table
27 class MetaFileTable(Table):
42 Table.__init__(self, Cursor, TableName, 0, Temporary)
46 ## Python class representation of table storing module data
65 # used as table end flag, in case the changes to database is not committed to db file
72 ## Insert a record into table Inf
90 return Table.Insert(
108 ## Query table
125 SqlCommand = "SELECT %s FROM %s WHERE %s" % (ValueString, self.Table, ConditionString) [all...] |
/external/flatbuffers/tests/MyGame/Example2/ |
Monster.py | 19 self._tab = flatbuffers.table.Table(buf, pos)
|
/external/guava/guava/src/com/google/common/collect/ |
RowSortedTable.java | 28 * Interface that extends {@code Table} and whose rows are sorted. 32 * {@link Map} specified by the {@link Table} interface. 39 public interface RowSortedTable<R, C, V> extends Table<R, C, V> { 44 * specified in the {@link Table} interface. 52 * specified in the {@link Table} interface.
|
Tables.java | 27 import com.google.common.collect.Table.Cell; 41 * Provides static methods that involve a {@code Table}. 126 * Creates a transposed view of a given table that flips its row and column 128 * generated table always returns the same value as calling {@code 129 * get(rowKey, columnKey)} on the original table. Updating the original table 130 * changes the contents of the transposed table and vice versa. 132 * <p>The returned table supports update operations as long as the input table 139 public static <R, C, V> Table<C, R, V> transpose(Table<R, C, V> table) [all...] |
/external/llvm/lib/DebugInfo/PDB/ |
PDBContext.cpp | 73 DILineInfoTable Table; 76 return Table; 81 Table.push_back(std::make_pair(LineInfo->getVirtualAddress(), LineEntry)); 83 return Table;
|
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/extensions/compactnotation/ |
CompactConstructorErrorsTest.java | 38 assertEquals("java.lang.ClassNotFoundException: Table", e.getMessage()); 82 "java.lang.NoSuchMethodException: org.yaml.snakeyaml.extensions.compactnotation.Table.<init>(java.lang.String)"); 96 Table table = (Table) load("error4.yaml"); local 97 List<Row> rows = table.getRows(); 110 Table table = (Table) load("error5.yaml"); local 111 List<Row> rows = table.getRows() [all...] |
/frameworks/base/core/java/com/android/internal/app/procstats/ |
DurationsTable.java | 20 * Sparse mapping table to store durations of processes, etc running in different 23 public class DurationsTable extends SparseMappingTable.Table { 29 * Add all of the durations from the other table into this one. 30 * Resultant durations will be the sum of what is currently in the table 44 * Resultant duration will be the sum of what is currently in the table
|
/packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/ |
Entry.java | 37 public @interface Table {
|
/prebuilts/clang/host/linux-x86/clang-3859424/prebuilt_include/llvm/lib/Fuzzer/ |
FuzzerTracePC.h | 24 // We record the arguments of CMP instructions in this table unconditionally 28 // this table to populate a Dictionary. 37 Table[Idx].A = Arg1; 38 Table[Idx].B = Arg2; 41 Pair Get(size_t I) { return Table[I % kSize]; } 43 Pair Table[kSize];
|
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/elf/ |
dwarf2-3.d | 31 The Directory Table is empty. 33 The File Name Table \(offset 0x.*\):
|
/external/llvm/utils/TableGen/ |
FixedLenDecoderEmitter.cpp | 72 DecoderTable Table; 98 // Emit the decoder state machine table. 99 void emitTable(formatted_raw_ostream &o, DecoderTable &Table, 268 // Emit table entries to decode instructions given a segment or segments of 314 // Lookup table for the operand decoding of instructions. 439 // Emits table entries to decode the singleton. 583 static void resolveTableFixups(DecoderTable &Table, const FixupList &Fixups, 596 // Our NumToSkip entries are 16-bits. Make sure our table isn't too 598 assert(Delta < 65536U && "disassembler decoding table too large!"); 599 Table[FixupIdx] = (uint8_t)Delta [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ |
netioapi.h | 116 MIB_IF_ROW2 Table[ANY_SIZE]; 159 MIB_IPINTERFACE_ROW Table[ANY_SIZE]; 174 MIB_IFSTACK_ROW Table[ANY_SIZE]; 179 MIB_INVERTEDIFSTACK_ROW Table[ANY_SIZE]; 204 MIB_UNICASTIPADDRESS_ROW Table[ANY_SIZE]; 216 MIB_ANYCASTIPADDRESS_ROW Table[ANY_SIZE]; 228 MIB_MULTICASTIPADDRESS_ROW Table[ANY_SIZE]; 256 MIB_IPFORWARD_ROW2 Table[ANY_SIZE]; 279 MIB_IPPATH_ROW Table[ANY_SIZE]; 304 MIB_IPNET_ROW2 Table[ANY_SIZE] [all...] |