| /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...] |
| /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 Message(Table* table) [all...] |
| /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];
|
| /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/lib/Fuzzer/ |
| FuzzerTracePC.h | 25 // We record the arguments of CMP instructions in this table unconditionally 29 // this table to populate a Dictionary. 39 Table[Idx].A = Arg1; 40 Table[Idx].B = Arg2; 43 Pair Get(size_t I) { return Table[I % kSize]; } 45 Pair Table[kSize];
|
| /prebuilts/clang/host/linux-x86/clang-4393122/prebuilt_include/llvm/lib/Fuzzer/ |
| FuzzerTracePC.h | 25 // We record the arguments of CMP instructions in this table unconditionally 29 // this table to populate a Dictionary. 39 Table[Idx].A = Arg1; 40 Table[Idx].B = Arg2; 43 Pair Get(size_t I) { return Table[I % kSize]; } 45 Pair Table[kSize];
|
| /prebuilts/clang/host/linux-x86/clang-4479392/prebuilt_include/llvm/lib/Fuzzer/ |
| FuzzerTracePC.h | 25 // We record the arguments of CMP instructions in this table unconditionally 29 // this table to populate a Dictionary. 39 Table[Idx].A = Arg1; 40 Table[Idx].B = Arg2; 43 Pair Get(size_t I) { return Table[I % kSize]; } 45 Pair Table[kSize];
|
| /prebuilts/go/darwin-x86/src/debug/gosym/ |
| symtab.go | 10 // The table format is a variant of the format used in Plan 9's a.out 27 // A Sym represents a single symbol table entry. 89 // An Obj represents a collection of functions in a symbol table. 92 // of the symbol table format. 107 // Use the keys of Table.Files to obtain a list of source files. 115 // Table represents a Go symbol table. It stores all of the 118 type Table struct { 124 go12line *LineTable // Go 1.2 line number table 280 // NewTable decodes the Go symbol table (the ".gosymtab" section in ELF) [all...] |
| /prebuilts/go/darwin-x86/src/hash/crc64/ |
| crc64.go | 27 // Table is a 256-word table representing the polynomial for efficient processing. 28 type Table [256]uint64 35 // MakeTable returns a Table constructed from the specified polynomial. 36 // The contents of this Table must not be modified. 37 func MakeTable(poly uint64) *Table { 48 func makeTable(poly uint64) *Table { 49 t := new(Table) 64 func makeSlicingBy8Table(t *Table) *[8]Table { [all...] |
| /prebuilts/go/linux-x86/src/debug/gosym/ |
| symtab.go | 10 // The table format is a variant of the format used in Plan 9's a.out 27 // A Sym represents a single symbol table entry. 89 // An Obj represents a collection of functions in a symbol table. 92 // of the symbol table format. 107 // Use the keys of Table.Files to obtain a list of source files. 115 // Table represents a Go symbol table. It stores all of the 118 type Table struct { 124 go12line *LineTable // Go 1.2 line number table 280 // NewTable decodes the Go symbol table (the ".gosymtab" section in ELF) [all...] |
| /prebuilts/go/linux-x86/src/hash/crc64/ |
| crc64.go | 27 // Table is a 256-word table representing the polynomial for efficient processing. 28 type Table [256]uint64 35 // MakeTable returns a Table constructed from the specified polynomial. 36 // The contents of this Table must not be modified. 37 func MakeTable(poly uint64) *Table { 48 func makeTable(poly uint64) *Table { 49 t := new(Table) 64 func makeSlicingBy8Table(t *Table) *[8]Table { [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/fonttools/Lib/fontTools/ttLib/tables/ |
| otConverters.py | 9 """Given a table spec from otData.py, build a converter object for each 10 field of the table. This is called for each table in otData.py, and 41 convertersByName[cls.__name__] = Table(name, repeat, aux, cls) 46 convertersByName[cls.__name__] = Table(name, repeat, aux, cls) 181 table = self.tableClass() 182 table.decompile(reader, font) 183 return table 197 pass # NULL table, ignore 202 table = self.tableClass( [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);
|