HomeSort by relevance Sort by last modified time
    Searched defs:Table (Results 126 - 150 of 198) sorted by null

1 2 3 4 56 7 8

  /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...]
AsmWriterEmitter.cpp 268 // Build an aggregate string, and build a table of offsets into it.
276 // Add all strings to the string table upfront so it can generate an optimized
315 // in the opcode-indexed table.
341 // Otherwise, we can include this in the initial lookup table. Add it in.
363 // Emit the string table itself.
370 unsigned Table = 0, Shift = 0;
377 // Figure out how big this table section needs to be, but no bigger than 4.
382 O << " static const uint" << TableSize << "_t OpInfo" << Table
389 // Emit string to combine the individual table lookups.
394 BitsOS << "OpInfo" << Table << "[MI->getOpcode()] << " << Shift << ";\n"
    [all...]
  /external/python/cpython2/Tools/msi/
msilib.py 81 class Table:
129 return "CREATE TABLE %s (%s PRIMARY KEY %s)" % (self.name, fields, keys)
153 f.write("from msilib import Table\n")
159 f.write("\n%s = Table('%s')\n" % (name,name))
168 # Fill the _Validation table
175 # Table, Column, Nullable
210 table = r.StringData(1)
211 tables.append(table)
212 f.write("%s = [\n" % table)
213 v1 = seqmsi.OpenView("SELECT * FROM `%s`" % table)
    [all...]
  /external/spirv-llvm/lib/SPIRV/libSPIRV/
SPIRVEntry.cpp 76 static TableEntry Table[] = {
83 static const OpToFactoryMapTy OpToFactoryMap(std::begin(Table),
84 std::end(Table));
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/BinaryFormat/
Wasm.h 89 WasmTable Table;
178 WASM_SEC_TABLE = 4, // Indirect function table and other tables
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ObjectYAML/
WasmYAML.h 53 struct Table {
84 Table TableImport;
242 std::vector<Table> Tables;
326 LLVM_YAML_IS_SEQUENCE_VECTOR(llvm::WasmYAML::Table)
394 template <> struct MappingTraits<WasmYAML::Table> {
395 static void mapping(IO &IO, WasmYAML::Table &Table);
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Object/
WindowsResource.cpp 304 // If the node does not point to data, it must have a directory table pointing
376 // We have reached the address of the symbol table.
382 FileSize += 4; // four null bytes for the string table.
513 // Now write the symbol table.
577 // Just 4 null bytes for the string table.
597 auto *Table = reinterpret_cast<coff_resource_dir_table *>(BufferStart +
599 Table->Characteristics = CurrentNode->getCharacteristics();
600 Table->TimeDateStamp = 0;
601 Table->MajorVersion = CurrentNode->getMajorVersion();
602 Table->MinorVersion = CurrentNode->getMinorVersion()
    [all...]
WasmObjectFile.cpp 200 wasm::WasmTable Table;
201 Table.ElemType = readUint8(Ctx);
202 Table.Limits = readLimits(Ctx);
203 return Table;
737 Im.Table = readTable(Ctx);
738 if (Im.Table.ElemType != wasm::WASM_TYPE_ANYFUNC)
739 return make_error<GenericBinaryError>("Invalid table element type",
777 return make_error<GenericBinaryError>("Invalid table element type",
782 return make_error<GenericBinaryError>("Table section ended prematurely",
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-rc/
ResourceScriptParser.cpp 673 auto Table = llvm::make_unique<StringTableResource>(std::move(*OptStatements),
684 Table->addString(*IDResult, *StrResult);
687 return std::move(Table);
  /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...]
SearchableTableEmitter.cpp 31 #define DEBUG_TYPE "searchable-table-emitter"
175 void emitGenericTable(const GenericTable &Table, raw_ostream &OS);
177 void emitLookupDeclaration(const GenericTable &Table,
179 void emitLookupFunction(const GenericTable &Table, const SearchIndex &Index,
185 parseSearchIndex(GenericTable &Table, StringRef Name,
190 void collectTableEntries(GenericTable &Table,
296 void SearchableTableEmitter::emitLookupFunction(const GenericTable &Table,
301 emitLookupDeclaration(Table, Index, OS);
310 IndexTypeName = Table.CppTypeName;
311 IndexName = Table.Name
    [all...]
AsmWriterEmitter.cpp 286 // Build an aggregate string, and build a table of offsets into it.
294 // Add all strings to the string table upfront so it can generate an optimized
333 // in the opcode-indexed table.
359 // Otherwise, we can include this in the initial lookup table. Add it in.
381 // Emit the string table itself.
388 unsigned Table = 0, Shift = 0;
395 // Figure out how big this table section needs to be, but no bigger than 4.
400 O << " static const uint" << TableSize << "_t OpInfo" << Table
407 // Emit string to combine the individual table lookups.
412 BitsOS << "OpInfo" << Table << "[MI->getOpcode()] << " << Shift << ";\n"
    [all...]
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Csm/LegacyBiosDxe/
LegacyBootSupport.c 41 Print the BBS Table.
43 @param BbsTable The BBS table.
111 Print the BBS Table.
113 @param HddInfo The HddInfo table.
558 // Assumption is table is built from low bus to high bus numbers.
628 @param Id Table/Data identifier
632 @retval EFI_OUT_OF_RESOURCES no resource to get data or table
641 VOID *Table;
670 (VOID *) &Table,
678 DEBUG ((EFI_D_INFO, " Table - %x, Size - %x, Location - %x, Alignment - %x\n", (UINTN)Table, (UINTN)TableSize, (UINTN)Location (…)
    [all...]
  /external/bcc/src/python/bcc/
__init__.py 28 from .table import Table, PerfEventArray
217 Table = Table
468 raise Exception("Failed to load BPF Table %s key desc" % name)
473 raise Exception("Failed to load BPF Table %s leaf desc" % name)
475 return Table(self, map_id, map_fd, keytype, leaftype, reducer=reducer)
    [all...]
  /external/flatbuffers/tests/MyGame/Example/
Monster.go 13 _tab flatbuffers.Table
28 func (rcv *Monster) Table() flatbuffers.Table {
126 func (rcv *Monster) Test(obj *flatbuffers.Table) bool {
673 func (rcv *Monster) AnyUnique(obj *flatbuffers.Table) bool {
694 func (rcv *Monster) AnyAmbiguous(obj *flatbuffers.Table) bool {
  /external/llvm/lib/MC/
MCStreamer.cpp 176 MCDwarfLineTable &Table = getContext().getMCDwarfLineTable(CUID);
177 if (!Table.getLabel()) {
179 Table.setLabel(
182 return Table.getLabel();
  /external/llvm/tools/llvm-readobj/
COFFDumper.cpp 119 /// Given a .debug$S section, find the string table and file checksum table.
    [all...]
  /external/mesa3d/src/mesa/drivers/x11/
glxapi.c 27 * This is the GLX API dispatcher. It uses a dispatch table but that's
28 * not really needed anymore since the table always points to the "fake"
47 struct _glxapi_table *Table;
101 prevTable = d->Table;
102 return d->Table; /* done! */
108 /* Setup the dispatch table */
117 d->Table = t;
136 #define GET_DISPATCH(DPY, TABLE) \
138 TABLE = prevTable; \
141 TABLE = NULL;
    [all...]
  /external/pdfium/third_party/lcms/include/
lcms2_plugin.h 300 const void *Table; // Points to the actual interpolation table
526 cmsUInt16Number* T; // Points to the table 16 bits table
527 cmsFloat32Number* TFloat; // Points to the cmsFloat32Number table
  /external/python/apitools/samples/fusiontables_sample/fusiontables_v1/
fusiontables_v1_messages.py 38 """Specifies the id, name and type of a column in a table.
49 graph_predicate: Optional column predicate. Used to map table to graph
62 columnId: The id of the column in the base table from which this column
64 tableIndex: Offset to the entry in the list of base tables in the table
81 """Represents a list of columns in a table.
88 totalItems: Total number of columns for the table.
102 tableId: Table from which the column is being deleted.
118 tableId: Table to which the column belongs.
130 tableId: Table for which a new column is being added.
144 tableId: Table whose columns are being listed
367 table = _messages.MessageField('Table', 2) variable in class:FusiontablesTablePatchRequest
383 table = _messages.MessageField('Table', 2) variable in class:FusiontablesTableUpdateRequest
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/DWARF/
DWARFVerifier.cpp 563 // Make sure we don't get a valid line table back if the offset is wrong.
565 // Skip this line table as it isn't valid. No need to create an error
579 // Already verified this line table before, no need to do it again.
590 // If there is no line table we will have created an error in the
774 << " in accelerator table does not match Tag "
849 warn() << formatv("Name Index @ {0:x} does not contain a hash table.\n",
881 // table is covered in the loop below.
896 error() << formatv("Name Index @ {0:x}: Name table entries [{1}, {2}] "
897 "are not covered by the hash table.\n",
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/IR/
Function.cpp 227 // We only need a symbol table for a function if the context keeps value names
249 // Delete all of the method arguments and unlink from symbol table...
253 // Remove the function from the on-the-side GC table.
351 // Metadata is stored in a side-table.
487 /// Table of string intrinsic names indexed by enum value.
495 /// Table of per-target intrinsic name tables.
501 /// target as \c Name, or the generic table if \c Name is not target specific.
529 // an index into a sub-table.
853 // Check to see if the intrinsic's type was expressible by the table.
868 // into a single word in the table itself, decode it now
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/InstCombine/
InstCombineSimplifyDemanded.cpp     [all...]
  /external/v8/src/inspector/
v8-console.cc 241 void V8Console::Table(const v8::debug::ConsoleCallArguments& info,
699 context, commandLineAPI, data, "table",
700 &V8Console::call<&V8Console::Table>,
701 "function table(data, [columns]) { [Command Line API] }");
    [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...]

Completed in 1105 milliseconds

1 2 3 4 56 7 8