| /external/llvm/lib/LibDriver/ |
| LibDriver.cpp | 109 LibOptTable Table; 113 Table.ParseArgs(ArgsArr.slice(1), MissingIndex, MissingCount);
|
| /external/python/cpython2/Lib/ctypes/test/ |
| test_pointers.py | 80 # The int pointer points to a table containing the numbers 1..10 117 class Table(Structure): 122 pt = pointer(Table(1, 2, 3)) 131 del _pointer_type_cache[Table]
|
| /external/python/cpython3/Lib/ctypes/test/ |
| test_pointers.py | 83 # The int pointer points to a table containing the numbers 1..10 120 class Table(Structure): 125 pt = pointer(Table(1, 2, 3)) 134 del _pointer_type_cache[Table]
|
| /external/sfntly/cpp/src/sfntly/table/ |
| 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/swiftshader/third_party/llvm-7.0/llvm/lib/Target/X86/ |
| X86EvexToVex.cpp | 253 // Use the VEX.L bit to select the 128 or 256-bit table. 254 ArrayRef<X86EvexToVexCompressTableEntry> Table = 258 auto I = std::lower_bound(Table.begin(), Table.end(), MI.getOpcode()); 259 if (I == Table.end() || I->EvexOpcode != MI.getOpcode())
|
| X86InstrFMA3Info.cpp | 149 ArrayRef<X86InstrFMA3Group> Table; 151 Table = makeArrayRef(RoundGroups); 153 Table = makeArrayRef(BroadcastGroups); 155 Table = makeArrayRef(Groups); 162 auto I = std::lower_bound(Table.begin(), Table.end(), Opcode, 167 assert(I != Table.end() && I->Opcodes[FormIndex] == Opcode &&
|
| /external/swiftshader/third_party/llvm-7.0/llvm/lib/ToolDrivers/llvm-lib/ |
| LibDriver.cpp | 109 LibOptTable Table; 113 Table.ParseArgs(ArgsArr.slice(1), MissingIndex, MissingCount); 126 Table.PrintHelp(outs(), ArgsArr[0], "LLVM Lib");
|
| /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...] |
| /external/tensorflow/tensorflow/core/common_runtime/ |
| graph_runner.cc | 86 typedef std::unordered_map<string, Tensor> Table; 89 Table table_ GUARDED_BY(mu_);
|
| /frameworks/base/cmds/incident_helper/src/ |
| ih_util.h | 47 * When a text has a table format like this 53 * parseHeader is used to parse the firse line of the table and returns a list of strings in lower case 69 * When a text-format table aligns by its vertical position, it is not possible to split them by purely delimiters. 124 * The Table class is constructed from two arrays generated by the given message with 129 * This class then allows users to insert the table values to proto based on its header. 135 class Table 139 Table(const char* names[], const uint64_t ids[], const int count); 140 ~Table(); 159 * Reconstructs a typical proto message given its message Table, adds submessage fields explicitly. 165 explicit Message(Table* table) [all...] |
| /art/runtime/ |
| intern_table.h | 112 // Interns a potentially new string in the 'strong' table. May cause thread suspension. 122 // Interns a potentially new string in the 'strong' table. May cause thread suspension. 126 // Interns a potentially new string in the 'strong' table. May cause thread suspension. 131 // Interns a potentially new string in the 'weak' table. May cause thread suspension. 170 // Visit all of the interns in the table. 177 // Count the number of intern strings in the table. 185 // Add all of the strings in the image's intern table into this intern table. This is required so 186 // the intern table is correct. 193 // Add a new intern table for inserting to, previous intern tables are still there but n [all...] |
| /device/linaro/bootloader/edk2/ArmPlatformPkg/Library/EblCmdLib/Arm/ |
| EblCmdMmu.c | 72 UINT32* Table;
78 IN UINT32* Table,
84 Entry.Value = Table[Index];
85 Entry.Table = Table;
129 } else if ((Entry.Value & 0x3) == 1) { // Level2 Table
164 } else if ((Entry.Value & 0x3) == 1) { // Level2 Table split 1MB section
292 IN UINT32* Table,
307 for (; (Index < Count) && (!MmuEntryIsValidAddress(Level,Table[Index])); Index++);
309 LastEntry = MmuEntryCreate(Level,Table,Index); [all...] |
| /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/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...] |
| /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Universal/Acpi/AcpiSupportDxe/ |
| AcpiSupport.h | 47 // ACPI Table Linked List Signature.
52 // ACPI Table Linked List Entry definition.
56 // Version is the versions of the ACPI tables that this table belongs in.
57 // Table is a pointer to the table.
58 // PageAddress is the address of the pages allocated for the table.
60 // Handle is used to identify a particular table.
66 EFI_ACPI_COMMON_HEADER *Table;
97 EFI_ACPI_DESCRIPTION_HEADER *Rsdt1; // Pointer to RSDT table header
98 EFI_ACPI_DESCRIPTION_HEADER *Rsdt3; // Pointer to RSDT table header [all...] |
| /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Universal/Console/VgaClassDxe/ |
| VgaClass.c | 312 @param SystemTable A pointer to the EFI System Table.
429 UNICODE_TO_CHAR *Table;
440 // Search UnicodeToPcAnsiOrAscii table for matching entry.
442 for (Table = UnicodeToPcAnsiOrAscii; Table->Unicode != 0x0000; Table++) {
443 if (Graphic == Table->Unicode) {
445 *PcAnsi = Table->PcAnsi;
449 *Ascii = Table->Ascii;
457 // If value is not found in UnicodeToPcAnsiOrAscii table, then return FALSE. [all...] |
| /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Acpi/AcpiTableDxe/ |
| AcpiTable.h | 2 ACPI Table Protocol Driver
53 // ACPI Table Linked List Signature.
58 // ACPI Table Linked List Entry definition.
62 // Version is the versions of the ACPI tables that this table belongs in.
63 // Table is a pointer to the table.
64 // PageAddress is the address of the pages allocated for the table.
66 // Handle is used to identify a particular table.
72 EFI_ACPI_COMMON_HEADER *Table;
79 // Containment record for ACPI Table linked list. [all...] |
| AcpiTableProtocol.c | 2 ACPI Table Protocol Implementation
32 This function adds an ACPI table to the table list. It will detect FACS and
33 allocate the correct type of memory and properly align the table.
36 @param Table Table to add.
37 @param Checksum Does the table require checksumming.
38 @param Version The version of the list to add the table to.
43 @return EFI_ABORTED The table is a duplicate of a table that is required [all...] |
| /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Console/TerminalDxe/ |
| TerminalConOut.c | 883 UNICODE_TO_CHAR *Table;
893 for (Table = UnicodeToPcAnsiOrAscii; Table->Unicode != 0x0000; Table++) {
894 if (Graphic == Table->Unicode) {
896 *PcAnsi = Table->PcAnsi;
900 *Ascii = Table->Ascii;
|
| /device/linaro/bootloader/edk2/NetworkPkg/IScsiDxe/ |
| IScsiIbft.c | 2 Implementation for iSCSI Boot Firmware Table publication.
21 Initialize the header of the iSCSI Boot Firmware Table.
23 @param[out] Header The header of the iSCSI Boot Firmware Table.
25 @param[in] OemTableId The OEM table ID for the iBFT.
46 Initialize the control section of the iSCSI Boot Firmware Table.
48 @param[in] Table The ACPI table.
53 IN EFI_ACPI_ISCSI_BOOT_FIRMWARE_TABLE_HEADER *Table
59 Control = (EFI_ACPI_ISCSI_BOOT_FIRMWARE_TABLE_CONTROL_STRUCTURE *) (Table + 1);
120 Fill the Initiator section of the iSCSI Boot Firmware Table. [all...] |
| /external/clang/lib/StaticAnalyzer/Checkers/ |
| DebugCheckers.cpp | 165 typedef AnalyzerOptions::ConfigTable Table; 167 static int compareEntry(const Table::MapEntryTy *const *LHS, 168 const Table::MapEntryTy *const *RHS) { 176 const Table &Config = mgr.options.Config; 178 SmallVector<const Table::MapEntryTy *, 32> Keys; 179 for (Table::const_iterator I = Config.begin(), E = Config.end(); I != E;
|
| /external/flatbuffers/java/com/google/flatbuffers/ |
| Table.java | 29 public class Table { 38 /** The underlying ByteBuffer to hold the data of the Table. */ 49 * @return Returns the Table's ByteBuffer. 56 * @param vtable_offset An `int` offset to the vtable in the Table's ByteBuffer. 71 * @param offset An `int` index into the Table's ByteBuffer containing the relative offset. 90 * @param offset An `int` index into the Table's ByteBuffer. 102 * @param offset An `int` index into the Table's ByteBuffer. 114 * @param offset An `int` index into the Table's ByteBuffer. 165 * Initialize any Table-derived type to point to the union at the given `offset`. 167 * @param t A `Table`-derived type that should point to the union at `offset` [all...] |
| /external/guava/guava/src/com/google/common/collect/ |
| Table.java | 30 * column key, with a single value. A table may be sparse, with only a small 40 * underlying table. Updating the table can change the contents of those 41 * collections, and updating the collections will change the table. 43 * <p>All methods that modify the table are optional, and the views returned by 44 * the table may or may not be modifiable. When modification isn't supported, 48 * "http://code.google.com/p/guava-libraries/wiki/NewCollectionTypesExplained#Table"> 49 * {@code Table}</a>. 52 * @param <R> the type of the table row keys 53 * @param <C> the type of the table column key [all...] |
| /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);
|
| /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AMDGPU/ |
| AMDGPULibFunc.cpp | 74 // Table for all lib functions with unmangled names. 75 static const UnmangledFuncInfo Table[]; 77 // Number of entries in Table. 85 (*this)[Table[I].Name] = I; 95 // Get index to Table by function name. 109 static unsigned getNumArgs(ID Id) { return Table[toIndex(Id)].NumArgs; } 110 static StringRef getName(ID Id) { return Table[toIndex(Id)].Name; } 119 // This table describes function formal argument type rules. The order of rules 345 const UnmangledFuncInfo UnmangledFuncInfo::Table[] = { 353 sizeof(UnmangledFuncInfo::Table) / sizeof(UnmangledFuncInfo::Table[0]) [all...] |