/external/swiftshader/third_party/llvm-7.0/llvm/utils/TableGen/ |
FixedLenDecoderEmitter.cpp | 84 DecoderTable Table; 107 // Emit the decoder state machine table. 108 void emitTable(formatted_raw_ostream &o, DecoderTable &Table, 283 // Emit table entries to decode instructions given a segment or segments of 331 // Lookup table for the operand decoding of instructions. 455 // Emits table entries to decode the singleton. 597 static void resolveTableFixups(DecoderTable &Table, const FixupList &Fixups, 610 // Our NumToSkip entries are 24-bits. Make sure our table isn't too 613 Table[FixupIdx] = (uint8_t)Delta; 614 Table[FixupIdx + 1] = (uint8_t)(Delta >> 8) [all...] |
GlobalISelEmitter.cpp | 78 "optimize-match-table", 79 cl::desc("Generate an optimized version of the match table"), 368 /// value that will be emitted to the table with some formatting but it can also 426 /// Useful if a Match Table Record gets optimized out 433 /// For Jump Table generation purposes 440 const MatchTable &Table) const; 449 /// An unique identifier for the table. The generated table will be named 452 /// The records that make up the table. Also includes comments describing the 457 /// Tracks the sum of MatchTableRecord::NumElements as the table is built [all...] |
/frameworks/av/media/libmedia/include/media/ |
TypeConverter.h | 117 struct Table { 122 static const Table mTable[]; 218 template<> const OutputDeviceConverter::Table OutputDeviceConverter::mTable[]; 219 template<> const InputDeviceConverter::Table InputDeviceConverter::mTable[]; 220 template<> const OutputFlagConverter::Table OutputFlagConverter::mTable[]; 221 template<> const InputFlagConverter::Table InputFlagConverter::mTable[]; 222 template<> const FormatConverter::Table FormatConverter::mTable[]; 223 template<> const OutputChannelConverter::Table OutputChannelConverter::mTable[]; 224 template<> const InputChannelConverter::Table InputChannelConverter::mTable[]; 225 template<> const ChannelIndexConverter::Table ChannelIndexConverter::mTable[] [all...] |
/external/clang/lib/Basic/ |
Builtins.cpp | 81 void Builtin::Context::initializeBuiltins(IdentifierTable &Table, 86 Table.get(BuiltinInfo[i].Name).setBuiltinID(i); 92 Table.get(TSRecords[i].Name).setBuiltinID(i + Builtin::FirstTSBuiltin); 96 Table.get(AuxTSRecords[i].Name) 100 void Builtin::Context::forgetBuiltin(unsigned ID, IdentifierTable &Table) { 101 Table.get(getRecord(ID).Name).setBuiltinID(0);
|
/external/elfutils/tests/ |
run-readelf-aranges.sh | 118 Table at offset 0: 128 Table at offset 32: 139 Table at offset 72:
|
/external/flatbuffers/tests/MyGame/Example/ |
Ability.go | 18 func (rcv *Ability) Table() flatbuffers.Table { 19 return rcv._tab.Table
|
Referrable.go | 10 _tab flatbuffers.Table 25 func (rcv *Referrable) Table() flatbuffers.Table {
|
Test.go | 18 func (rcv *Test) Table() flatbuffers.Table { 19 return rcv._tab.Table
|
TestSimpleTableWithEnum.go | 10 _tab flatbuffers.Table 25 func (rcv *TestSimpleTableWithEnum) Table() flatbuffers.Table {
|
/external/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/ |
StructInNestedNS.go | 18 func (rcv *StructInNestedNS) Table() flatbuffers.Table { 19 return rcv._tab.Table
|
TableInNestedNS.go | 10 _tab flatbuffers.Table 25 func (rcv *TableInNestedNS) Table() flatbuffers.Table {
|
/external/flatbuffers/tests/namespace_test/NamespaceA/ |
SecondTableInA.go | 12 _tab flatbuffers.Table 27 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);
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/PDB/Native/ |
PDBStringTableBuilder.cpp | 1 //===- PDBStringTableBuilder.cpp - PDB String Table -------------*- C++ -*-===// 26 StringTableHashTraits::StringTableHashTraits(PDBStringTableBuilder &Table) 27 : Table(&Table) {} 30 return Table->getIdForString(S); 34 return Table->getStringForId(Offset); 38 return Table->insert(S); 116 uint32_t Size = sizeof(uint32_t); // Hash table begins with 4-byte size field. 157 // Write a hash table.
|
/device/linaro/bootloader/edk2/BaseTools/Source/Python/Ecc/ |
Check.py | [all...] |
/device/linaro/bootloader/OpenPlatformPkg/Chips/Hisilicon/Pv660/Drivers/IoInitDxe/ |
Smmu.c | 301 VOID *Table;
304 Table = SmmuAllocateTable (SMMU_S2CBT_SIZE, LShiftU64 (1, SMMU_S2CBT_SHIFT));
305 if (Table == NULL) {
306 DEBUG ((EFI_D_ERROR, "[%a]:[%dL] Allocate table failed!\n", __FUNCTION__, __LINE__));
309 ZeroMem (Table, SMMU_S2CBT_SIZE);
312 MmioWrite32 ((UINTN)Table + SMMU_CB_S1CTBAR(Index), 0);
313 MmioWrite32 ((UINTN)Table + SMMU_CB_S2CR(Index), S2CR_TYPE_BYPASS);
315 return Table;
321 VOID *Table;
323 Table = SmmuAllocateTable (SMMU_S1CBT_SIZE, LShiftU64 (1, SMMU_S1CBT_SHIFT)); [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) {
|
/external/flatbuffers/tests/MyGame/Example2/ |
Monster.py | 19 self._tab = flatbuffers.table.Table(buf, pos)
|
/external/flatbuffers/tests/MyGame/ |
InParentNamespace.py | 19 self._tab = flatbuffers.table.Table(buf, pos)
|
/external/flatbuffers/tests/union_vector/ |
BookReader.php | 5 use \Google\FlatBuffers\Table;
|