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

1 2 3 4 5 67 8

  /device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/
lobject.h 257 /* from table to same table */
259 /* to table */
435 struct Table *metatable;
436 struct Table *env;
560 typedef struct Table {
564 struct Table *metatable;
570 } Table;
  /external/clang/lib/CodeGen/
TargetInfo.cpp     [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
ICUResourceBundleReader.java 75 /** [4] max. length of any table */
292 // Faster table item search at the cost of slower startup and some heap memory.
373 return type==UResourceBundle.TABLE || type==ICUResourceBundle.TABLE16 || type==ICUResourceBundle.TABLE32;
382 private static final Table EMPTY_TABLE = new Table();
749 Table getTable(int res) {
760 return (Table)value;
762 Table table; local
764 if(type == UResourceBundle.TABLE) {
876 Table table = reader.getTable(res); local
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
ICUResourceBundleReader.java 73 /** [4] max. length of any table */
290 // Faster table item search at the cost of slower startup and some heap memory.
371 return type==UResourceBundle.TABLE || type==ICUResourceBundle.TABLE16 || type==ICUResourceBundle.TABLE32;
380 private static final Table EMPTY_TABLE = new Table();
747 Table getTable(int res) {
758 return (Table)value;
760 Table table; local
762 if(type == UResourceBundle.TABLE) {
874 Table table = reader.getTable(res); local
    [all...]
  /external/llvm/lib/Target/XCore/
XCoreISelLowering.cpp 351 SDValue Table = Op.getOperand(1);
354 JumpTableSDNode *JT = cast<JumpTableSDNode>(Table);
    [all...]
  /external/lua/src/
lobject.h 251 { TValue *io = (obj); Table *x_ = (x); \
275 /* from table to same table */
281 /* to table (define it as an expression to be used in macros) */
310 struct TString *hnext; /* linked list for hash table */
349 struct Table *metatable;
497 typedef struct Table {
505 struct Table *metatable;
507 } Table;
  /external/pdfium/third_party/lcms/src/
cmscgats.c 118 // Table. Each individual table can hold properties and rows & cols
131 } TABLE;
144 cmsUInt32Number nTable; // The actual table
146 TABLE Tab[MAXTABLES];
205 // The keyword->symbol translation table. Sorting is required.
299 {"TABLE_DESCRIPTOR", WRITE_STRINGIFY}, // Describes the purpose or contents of a data table.
301 {"TABLE_NAME", WRITE_STRINGIFY} // Provides a short name for a data table.
1003 // ---------------------------------------------------------- Table
1006 TABLE* GetTable(cmsIT8* it8
    [all...]
cmstypes.c 164 // A table of n elements is readed, where first comes n records containing offsets and sizes and
232 // Create table
357 cmsUInt16Number nChans, Table;
374 if (!_cmsReadUInt16Number(io, &Table)) goto Error;
416 if (!_cmsWriteUInt16Number(io, 0)) return FALSE; // Table
979 // parser. The provided example (Table 69 on Page 60) makes this clear.
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Target/XCore/
XCoreISelLowering.cpp 334 SDValue Table = Op.getOperand(1);
337 JumpTableSDNode *JT = cast<JumpTableSDNode>(Table);
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/MC/
MCStreamer.cpp 222 MCDwarfLineTable &Table = getContext().getMCDwarfLineTable(CUID);
223 if (!Table.getLabel()) {
225 Table.setLabel(
228 return Table.getLabel();
    [all...]
  /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...]
MachOObjectFile.cpp 432 "symbol table"))
445 Symtab.strsize, "string table"))
482 "table of contents"))
507 "module table"))
524 "reference table"))
541 "indirect table"))
558 "external relocation table"))
575 "local relocation table"))
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/XCore/
XCoreISelLowering.cpp 347 SDValue Table = Op.getOperand(1);
350 JumpTableSDNode *JT = cast<JumpTableSDNode>(Table);
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-rc/
ResourceScriptStmt.h 263 // ACCELERATORS resource. Defines a named table of accelerators for the app.
532 std::vector<std::pair<uint32_t, StringRef>> Table;
537 Table.emplace_back(ID, String);
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-readobj/
COFFDumper.cpp 140 const coff_resource_dir_table &Table,
144 const coff_resource_dir_table &Table,
150 /// Given a .debug$S section, find the string table and file checksum table.
167 getResourceDirectoryTableEntry(const coff_resource_dir_table &Table,
    [all...]
  /external/flatbuffers/include/flatbuffers/
flatbuffers.h 294 // "val" points to the new table/string, as you can obtain from
348 auto table = IndirectHelper<T>::Read(data, 0);
352 return -table->KeyCompareWithValue(*key);
884 // Converts a Field ID to a virtual table offset.
2374 auto table = reinterpret_cast<const Table *>(root); local
    [all...]
  /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/llvm/lib/Object/
MachOObjectFile.cpp 401 "extends past the end of the symbol table");
408 "command extends past the end of the symbol table");
413 "extends past the end of the symbol table");
421 "table");
426 "extends past the end of the symbol table");
433 " command extends past the end of the symbol table");
475 // getIndirectName() returns the name of the alias'ed symbol who's string table
792 static const char *const Table[] = {
803 res = Table[RType];
807 static const char *const Table[] =
    [all...]
  /external/python/apitools/samples/bigquery_sample/bigquery_v2/
bigquery_v2_messages.py 246 datasetId: Dataset ID of the destination table.
247 projectId: Project ID of the destination table.
250 tableId: Table ID of the destination table.
263 datasetId: Dataset ID of the table to read
267 projectId: Project ID of the table to read
269 tableId: Table ID of the table to read
284 datasetId: Dataset ID of the table to delete
285 projectId: Project ID of the table to delet
323 table = _messages.MessageField('Table', 3) variable in class:BigqueryTablesInsertRequest
355 table = _messages.MessageField('Table', 3) variable in class:BigqueryTablesPatchRequest
371 table = _messages.MessageField('Table', 3) variable in class:BigqueryTablesUpdateRequest
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGBuilder.cpp     [all...]
  /external/llvm/lib/IR/
Verifier.cpp     [all...]
  /external/llvm/lib/Target/Mips/
MipsISelLowering.cpp     [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Object/
COFF.h 451 // VirtualAddress field of the first relocation table entry.
    [all...]
  /external/v8/src/arm64/
simulator-logic-arm64.cc     [all...]
  /external/vixl/src/aarch64/
logic-aarch64.cc     [all...]

Completed in 1606 milliseconds

1 2 3 4 5 67 8