HomeSort by relevance Sort by last modified time
    Searched refs:Table (Results 451 - 475 of 792) sorted by null

<<11121314151617181920>>

  /external/llvm/utils/TableGen/
IntrinsicEmitter.cpp 75 // Emit the intrinsic ID -> name table.
78 // Emit the intrinsic ID -> overload table.
134 OS << "// Intrinsic ID to name table\n";
404 // LongEncodingTable, and use its offset in the 32-bit table instead.
407 // This is a placehold that we'll replace after the table is laid out.
413 OS << "// Global intrinsic function declaration type table.\n";
422 // If the entry fit in the table, just emit it.
432 // Otherwise, emit the offset into the long encoding table. We emit it this
439 // Emit the shared table of register lists.
499 assert(AttrNum < 256 && "Too many unique attributes for table!");
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/PDB/DIA/
DIASession.cpp 389 CComPtr<IDiaTable> Table;
395 while (ET->Next(1, &Table, &Count) == S_OK && Count == 1) {
396 // There is only one table that matches the given iid
397 if (S_OK == Table->QueryInterface(__uuidof(T), (void **)&Enumerator))
399 Table.Release();
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AMDGPU/Disassembler/
AMDGPUDisassembler.h 68 DecodeStatus tryDecodeInst(const uint8_t* Table, MCInst &MI, uint64_t Inst,
  /external/tensorflow/tensorflow/core/util/tensor_bundle/
tensor_bundle.h 30 // The ".index" file is a string-string immutable table
31 // (tensorflow::table::Table). Each key is a name of a tensor and its value is
76 #include "tensorflow/core/lib/io/table.h"
98 // The empty string, hence always the first key in the metadata table. Its
102 // Builds a string-string table of tensor names to BundleEntryProto (metadata).
124 // A slice of a full tensor is stored in two entries in the metadata table:
290 table::Table* table_;
291 table::Iterator* iter_
    [all...]
  /external/v8/src/debug/
interface-types.h 47 * Consists of the disassembly string and an offset table mapping wasm byte
49 * The offset table entries are ordered by the byte_offset.
140 virtual void Table(const ConsoleCallArguments& args,
  /external/vboot_reference/utility/
efidecompress.c 184 OUT UINT16 *Table
190 Creates Huffman Code mapping table according to code length array.
197 TableBits - The width of the mapping table
198 Table - The table
203 BAD_TABLE - The table is corrupted.
256 Table[Index++] = 0;
275 Table[Index] = Char;
281 Pointer = &Table[Index3 >> JuBits];
390 BAD_TABLE - Table is corrupted
    [all...]
  /frameworks/base/cmds/incident_helper/src/parsers/
CpuInfoParser.cpp 49 vector<int> columnIndices; // task table can't be split by purely delimiter, needs column positions.
57 Table table(CpuInfoProto::Task::_FIELD_NAMES, CpuInfoProto::Task::_FIELD_IDS, CpuInfoProto::Task::_FIELD_COUNT);
58 table.addEnumTypeMap("s", CpuInfoProto::Task::_ENUM_STATUS_NAMES,
60 table.addEnumTypeMap("pcy", CpuInfoProto::Task::_ENUM_POLICY_NAMES,
144 if (!table.insertField(&proto, header[i], record[i])) {
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Object/
COFFObjectFile.cpp 68 // Decode a string table entry in base 64 (//AAAAAA). Expects \arg Str without
109 // Verify that the symbol points to a valid entry in the symbol table.
123 // Verify that the section points to a valid entry in the section table.
125 report_fatal_error("Section was outside of section table.");
146 llvm_unreachable("no symbol table pointer!");
349 // The field for the number of relocations in COFF section table is only
402 // Initialize the pointer to the symbol table.
416 // Find string table. The first four byte of the string table contains the
417 // total size of the string table, including the size field itself. If th
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-pdbutil/
DumpOutputStyle.cpp     [all...]
  /device/linaro/bootloader/edk2/OvmfPkg/ResetVector/Ia32/
PageTables64.asm 77 ; Page Table Entries (2048 * 2MB entries => 4GB)
  /device/linaro/bootloader/edk2/UefiCpuPkg/ResetVector/Vtf0/Ia16/
Real16ToFlat32.asm 90 ; The Global Descriptor Table (GDT)
  /device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/AcpiPlatform/
AcpiPlatformHooks.c 194 Called for every ACPI table found in the BIOS flash.
195 Returns whether a table is active or not. Inactive tables
196 are not published in the ACPI table list.
199 enabling/disabling specific functionality (e.g. SPCR table)
205 @param[in] *Table Pointer to the active table.
207 @retval EFI_SUCCESS if the table is active.
208 @retval EFI_UNSUPPORTED if the table is not active.
213 IN OUT EFI_ACPI_COMMON_HEADER *Table
218 TableHeader = (EFI_ACPI_DESCRIPTION_HEADER *) Table;
    [all...]
  /external/flatbuffers/tests/MyGame/Example/
Monster.java 14 public final class Monster extends Table {
39 public Table test(Table obj) { int o = __offset(20); return o != 0 ? __union(obj, o) : null; }
152 public Table anyUnique(Table obj) { int o = __offset(92); return o != 0 ? __union(obj, o) : null; }
155 public Table anyAmbiguous(Table obj) { int o = __offset(96); return o != 0 ? __union(obj, o) : null; }
255 byte[] byteKey = key.getBytes(Table.UTF8_CHARSET.get());
Stat.cs 13 private Table __p;
  /external/jacoco/org.jacoco.report.test/src/org/jacoco/report/internal/html/table/
TableTest.java 12 package org.jacoco.report.internal.html.table;
40 * Unit tests for {@link Table}.
54 private Table table; field in class:TableTest
64 table = new Table();
107 table.add("Header", null, recorder, false);
108 table.render(body, items, createTotal("Sum", 6), resources, root);
137 table.add("Header", null, column, false);
138 table.render(body, items, createTotal("Sum", 1), resources, root)
    [all...]
  /external/sfntly/cpp/src/sfntly/table/core/
font_header_table.cc 17 #include "sfntly/table/core/font_header_table.h"
94 : Table(header, data) {
117 FontDataTablePtr table = new FontHeaderTable(header(), data); local
118 return table.Detach();
242 Table* table = GetTable(); local
243 if (!table)
245 return down_cast<FontHeaderTable*>(table)->IndexToLocFormat();
  /external/testng/src/main/resources/
testng-reports.js 117 var table = new google.visualization.Table(document.getElementById(div));
118 table.draw(data, {
  /external/turbine/java/com/google/turbine/binder/
JimageClassBinder.java 29 import com.google.common.collect.Table;
96 private final Table<String, String, ClassSymbol> packageClassesBySimpleName =
  /device/linaro/bootloader/edk2/PcAtChipsetPkg/PcatRealTimeClockRuntimeDxe/
PcRtc.c 1204 This function find ACPI table with the specified signature in RSDT or XSDT.
1207 @param Signature ACPI table signature.
1208 @param TablePointerSize Size of table pointer: 4 or 8.
    [all...]
  /external/elfutils/tests/
run-readelf-zdebug.sh 70 Table at offset 0:
362 Table at offset 0:
390 Directory table:
392 File name table:
504 Call frame search table section [17] '.eh_frame_hdr':
511 Table:
  /external/flatbuffers/tests/rust_usage_test/tests/
integration_test.rs 263 let table: flatbuffers::Table<'static> = flatbuffers::Table::new(&DATA, 0);
265 table.get::<&'static str>(0, None);
    [all...]
  /external/google-styleguide/include/
styleguide.js 46 var tocText = document.createTextNode('Table of Contents');
49 // Add table and tbody
50 var tocTable = document.createElement('table');
114 // Adds a master Table of Content heading
117 // Add the table row scaffolding
133 // Add the container table cell for its children
143 // Adds Table of Contents element to a master heading as children
  /external/llvm/include/llvm/Object/
COFF.h 432 // VirtualAddress field of the first relocation table entry.
849 llvm_unreachable("null symbol table pointer!");
891 // The iterator for the import directory table.
895 ImportDirectoryEntryRef(const import_directory_table_entry *Table, uint32_t I,
897 : ImportTable(Table), Index(I), OwningObject(Owner) {}
924 : Table(T), Index(I), OwningObject(Owner) {}
939 const delay_import_directory_table_entry *Table;
    [all...]
  /external/mesa3d/docs/specs/
MESA_texture_signed_rgba.spec 96 in Table 2.9 for component conversions. That conversion says:
100 The Table 2.9 conversion is incapable of exactly representing
201 Add to Table 3.16 (page 154): Sized internal formats
  /external/tensorflow/tensorflow/lite/schema/
schema_generated.h     [all...]

Completed in 1732 milliseconds

<<11121314151617181920>>