HomeSort by relevance Sort by last modified time
    Searched defs:Tables (Results 1 - 25 of 157) sorted by null

1 2 3 4 5 6 7

  /external/swiftshader/third_party/LLVM/utils/TableGen/
DisassemblerEmitter.cpp 33 /// The emitter produces the tables that the disassembler uses to translate
34 /// instructions. The emitter generates the following tables:
43 /// returned.) This allows considerable space savings in other tables.
44 /// - Six tables (ONEBYTE_SYM, TWOBYTE_SYM, THREEBYTE38_SYM, THREEBYTE3A_SYM,
54 /// occupy the same space in the decode tables. These conflicts are resolved as
58 /// (that is, the attributes specified for it in the LLVM tables specify
75 /// (2) to fix the tables (X86.td and its subsidiaries) so the opcodes are
77 /// (3) to fix the tables to reflect the actual context (for example, required
85 /// X86DisassemblerTables.h contains the interface for the instruction tables,
88 /// tables
    [all...]
X86DisassemblerTables.h 1 //===- X86DisassemblerTables.h - Disassembler tables ------------*- C++ -*-===//
11 // It contains the interface of the disassembler tables.
31 /// DisassemblerTables - Encapsulates all the decode tables being generated by
32 /// the table emitter. Contains functions to populate the tables as well as
37 /// The decoder tables. There is one for each opcode type:
44 ContextDecision* Tables[6];
56 /// of the instruction as listed in the LLVM tables.
81 /// nnnn is the number of a table for looking up these values. The tables
82 /// are written separately so that tables consisting entirely of zeros will
117 /// stream and indent level for the UID tables generated b
    [all...]
  /device/linaro/bootloader/edk2/OvmfPkg/SmbiosPlatformDxe/
Qemu.c 32 FIRMWARE_CONFIG_ITEM Tables;
40 Status = QemuFwCfgFindFile ("etc/smbios/smbios-tables", &Tables,
50 QemuFwCfgSelectItem (Tables);
  /external/llvm/utils/TableGen/
DisassemblerEmitter.cpp 31 /// The emitter produces the tables that the disassembler uses to translate
32 /// instructions. The emitter generates the following tables:
41 /// returned.) This allows considerable space savings in other tables.
42 /// - Six tables (ONEBYTE_SYM, TWOBYTE_SYM, THREEBYTE38_SYM, THREEBYTE3A_SYM,
52 /// occupy the same space in the decode tables. These conflicts are resolved as
56 /// (that is, the attributes specified for it in the LLVM tables specify
73 /// (2) to fix the tables (X86.td and its subsidiaries) so the opcodes are
75 /// (3) to fix the tables to reflect the actual context (for example, required
83 /// X86DisassemblerTables.h contains the interface for the instruction tables,
86 /// tables
    [all...]
X86DisassemblerTables.h 1 //===- X86DisassemblerTables.h - Disassembler tables ------------*- C++ -*-===//
11 // It contains the interface of the disassembler tables.
30 /// DisassemblerTables - Encapsulates all the decode tables being generated by
31 /// the table emitter. Contains functions to populate the tables as well as
36 /// The decoder tables. There is one for each opcode type:
44 ContextDecision* Tables[7];
69 /// nnnn is the number of a table for looking up these values. The tables
70 /// are written separately so that tables consisting entirely of zeros will
104 /// stream and indent level for the UID tables generated by
107 /// @param o1 - The output stream to print the ID tables generated b
    [all...]
  /device/linaro/bootloader/edk2/OvmfPkg/PlatformPei/
Xen.h 35 EFI_PHYSICAL_ADDRESS Tables;
  /device/linaro/bootloader/edk2/OvmfPkg/Library/SmbiosVersionLib/
DetectSmbiosVersionLib.c 39 FIRMWARE_CONFIG_ITEM Anchor, Tables;
57 "etc/smbios/smbios-tables", &Tables, &TablesSize)) ||
106 // "etc/smbios/smbios-tables" from QEMU.
  /external/skia/include/core/
SkICC.h 57 * transfer functions as three tables (R, G, and B).
59 * If possible, this will return tables of the same length as they were specified in
60 * the ICC profile. This means that the lengths of the three tables are not
64 * The lengths of the tables are all guaranteed to be at least 2. Entries in the
65 * tables are guaranteed to be in [0, 1].
77 struct Tables {
94 bool rawTransferFnData(Tables* tables) const;
  /external/skqp/include/core/
SkICC.h 57 * transfer functions as three tables (R, G, and B).
59 * If possible, this will return tables of the same length as they were specified in
60 * the ICC profile. This means that the lengths of the three tables are not
64 * The lengths of the tables are all guaranteed to be at least 2. Entries in the
65 * tables are guaranteed to be in [0, 1].
77 struct Tables {
94 bool rawTransferFnData(Tables* tables) const;
  /packages/providers/BlockedNumberProvider/src/com/android/providers/blockednumber/
BlockedNumberDatabaseHelper.java 39 public interface Tables {
65 db.execSQL("CREATE TABLE " + Tables.BLOCKED_NUMBERS + " (" +
71 db.execSQL("CREATE INDEX blocked_number_idx_original ON " + Tables.BLOCKED_NUMBERS +
73 db.execSQL("CREATE INDEX blocked_number_idx_e164 ON " + Tables.BLOCKED_NUMBERS + " (" +
109 getWritableDatabase().execSQL("DELETE FROM " + Tables.BLOCKED_NUMBERS);
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/util/
PropertyUtils.java 30 public interface Tables {
43 db.execSQL("CREATE TABLE " + Tables.PROPERTIES + " (" +
54 final Cursor cursor = db.query(Tables.PROPERTIES,
77 db.replace(Tables.PROPERTIES, null, values);
  /packages/apps/Settings/src/com/android/settings/fuelgauge/batterytip/
AnomalyDatabaseHelper.java 49 public interface Tables {
79 "CREATE TABLE " + Tables.TABLE_ANOMALY +
123 // We need to drop the tables and recreate them
132 // We need to drop the tables and recreate them
142 db.execSQL("DROP TABLE IF EXISTS " + Tables.TABLE_ANOMALY);
  /external/clang/lib/Serialization/
MultiOnDiskHashTable.h 1 //===--- MultiOnDiskHashTable.h - Merged set of hash tables -----*- C++ -*-===//
13 // Multiple hash tables from different files are implicitly merged to improve
30 /// \brief A collection of on-disk hash tables, merged when relevant for performance.
33 /// A handle to a file, used when overriding tables.
67 /// \brief The current set of on-disk and merged tables.
72 TableVector Tables;
74 /// \brief Files corresponding to overridden tables that we've not yet
88 /// \brief The current set of on-disk tables.
89 table_range tables() { function in class:clang::serialization::MultiOnDiskHashTable
90 auto Begin = Tables.begin(), End = Tables.end()
    [all...]
  /external/guava/guava/src/com/google/common/collect/
Tables.java 44 * "http://code.google.com/p/guava-libraries/wiki/CollectionUtilitiesExplained#Tables">
45 * {@code Tables}</a>.
52 public final class Tables {
53 private Tables() {}
440 * users with "read-only" access to internal tables. Query operations on the returned table
539 * provide users with "read-only" access to internal tables. Query operations on the returned
  /packages/apps/Settings/src/com/android/settings/slices/
SlicesDatabaseHelper.java 41 public interface Tables {
99 "CREATE VIRTUAL TABLE " + Tables.TABLE_SLICES_INDEX + " USING fts4" +
189 db.execSQL("DROP TABLE IF EXISTS " + Tables.TABLE_SLICES_INDEX);
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Object/
Wasm.h 73 const std::vector<wasm::WasmTable>& tables() const { return Tables; } function in class:llvm::object::WasmObjectFile
172 std::vector<wasm::WasmTable> Tables;
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/Object/
Wasm.h 80 const std::vector<wasm::WasmTable>& tables() const { return Tables; } function in class:llvm::object::WasmObjectFile
186 std::vector<wasm::WasmTable> Tables;
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/Object/
Wasm.h 80 const std::vector<wasm::WasmTable>& tables() const { return Tables; } function in class:llvm::object::WasmObjectFile
186 std::vector<wasm::WasmTable> Tables;
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Object/
Wasm.h 73 const std::vector<wasm::WasmTable>& tables() const { return Tables; } function in class:llvm::object::WasmObjectFile
172 std::vector<wasm::WasmTable> Tables;
  /prebuilts/clang/host/linux-x86/clang-4393122/include/llvm/Object/
Wasm.h 80 const std::vector<wasm::WasmTable>& tables() const { return Tables; } function in class:llvm::object::WasmObjectFile
186 std::vector<wasm::WasmTable> Tables;
  /prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/Object/
Wasm.h 80 const std::vector<wasm::WasmTable>& tables() const { return Tables; } function in class:llvm::object::WasmObjectFile
186 std::vector<wasm::WasmTable> Tables;
  /packages/apps/Settings/src/com/android/settings/search/
IndexDatabaseHelper.java 43 public interface Tables {
85 "CREATE VIRTUAL TABLE " + Tables.TABLE_PREFS_INDEX + " USING fts4" +
131 "CREATE TABLE " + Tables.TABLE_META_INDEX +
137 "CREATE TABLE " + Tables.TABLE_SAVED_QUERIES +
145 "CREATE VIRTUAL TABLE " + Tables.TABLE_SITE_MAP + " USING fts4" +
156 "INSERT INTO " + Tables.TABLE_META_INDEX +
160 "SELECT " + MetaColumns.BUILD + " FROM " + Tables.TABLE_META_INDEX + " LIMIT 1;";
200 // We need to drop the tables and recreate them
212 // We need to drop the tables and recreate them
221 // We need to drop the tables and recreate the
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/ObjectYAML/
WasmYAML.h 160 std::vector<Table> Tables;
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/ObjectYAML/
WasmYAML.h 171 std::vector<Table> Tables;
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/ObjectYAML/
WasmYAML.h 171 std::vector<Table> Tables;

Completed in 924 milliseconds

1 2 3 4 5 6 7