| /external/flatbuffers/tests/ |
| go_test.go | 232 // initialize a Table from a union field Test(...) 233 var table2 flatbuffers.Table 238 // initialize a Monster from the Table from the union 509 table := &flatbuffers.Table{ 520 check("bool", boolVal, table.GetBoolSlot(f, false)) 522 check("int8", int8Val, table.GetInt8Slot(f, 0)) 524 check("uint8", uint8Val, table.GetUint8Slot(f, 0)) 526 check("int16", int16Val, table.GetInt16Slot(f, 0)) 528 check("uint16", uint16Val, table.GetUint16Slot(f, 0) [all...] |
| /external/pdfium/third_party/lcms/src/ |
| cmslut.c | 548 // Allocates a 16-bit multidimensional CLUT. This is evaluated at 16-bit precision. Table may have different 554 const cmsUInt16Number* Table) 595 if (Table != NULL) { 597 NewElem ->Tab.T[i] = Table[i]; 614 const cmsUInt16Number* Table) 623 return cmsStageAllocCLut16bitGranular(ContextID, Dimensions, inputChan, outputChan, Table); 631 const cmsFloat32Number* Table) 640 return cmsStageAllocCLutFloatGranular(ContextID, Dimensions, inputChan, outputChan, Table); 645 cmsStage* CMSEXPORT cmsStageAllocCLutFloatGranular(cmsContext ContextID, const cmsUInt32Number clutPoints[], cmsUInt32Number inputChan, cmsUInt32Number outputChan, const cmsFloat32Number* Table) 686 if (Table != NULL) [all...] |
| /external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/ |
| SelectionDAGISel.cpp | [all...] |
| /device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/ |
| lvm.c | 31 /* limit for table tag-method chains (to avoid loops) */ 114 if (ttistable(t)) { /* `t' is a table? */ 115 Table *h = hvalue(t); 140 if (ttistable(t)) { /* `t' is a table? */ 141 Table *h = hvalue(t); 144 in the table; moreover, a metamethod has no relevance */ 148 /* no metamethod; is there a previous entry in the table? */ 161 else /* not a table; check metamethod */ 186 static const TValue *get_equalTM (lua_State *L, Table *mt1, Table *mt2 [all...] |
| /external/flatbuffers/tests/MyGame/Example/ |
| Monster.py | 20 self._tab = flatbuffers.table.Table(buf, pos) 94 from flatbuffers.table import Table 95 obj = Table(bytearray(), 0) 574 from flatbuffers.table import Table 575 obj = Table(bytearray(), 0) 591 from flatbuffers.table import Table [all...] |
| 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/flatbuffers/include/flatbuffers/ |
| reflection_generated.h | 102 struct Type FLATBUFFERS_FINAL_CLASS : private flatbuffers::Table { 162 struct KeyValue FLATBUFFERS_FINAL_CLASS : private flatbuffers::Table { 233 struct EnumVal FLATBUFFERS_FINAL_CLASS : private flatbuffers::Table { 343 struct Enum FLATBUFFERS_FINAL_CLASS : private flatbuffers::Table { 472 struct Field FLATBUFFERS_FINAL_CLASS : private flatbuffers::Table { 657 struct Object FLATBUFFERS_FINAL_CLASS : private flatbuffers::Table { 796 struct RPCCall FLATBUFFERS_FINAL_CLASS : private flatbuffers::Table { 911 struct Service FLATBUFFERS_FINAL_CLASS : private flatbuffers::Table { [all...] |
| /external/icu/android_icu4j/src/main/java/android/icu/text/ |
| RelativeDateTimeFormatter.java | 1119 UResource.Table table = value.getTable(); local [all...] |
| DateIntervalInfo.java | 434 // Iterate over all the calendar entries and only pick the 'intervalFormats' table. 435 UResource.Table dateIntervalData = value.getTable(); 447 } else if (value.getType() == ICUResourceBundle.TABLE) { 448 // Iterate over all the skeletons in the 'intervalFormat' table. 449 UResource.Table skeletonData = value.getTable(); 451 if (value.getType() == ICUResourceBundle.TABLE) { 461 /** Processes the patterns for a skeleton table. */ 463 // Iterate over all the patterns in the current skeleton table 465 UResource.Table patternData = value.getTable(); [all...] |
| /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
| RelativeDateTimeFormatter.java | 1182 UResource.Table table = value.getTable(); local [all...] |
| DateIntervalInfo.java | 444 // Iterate over all the calendar entries and only pick the 'intervalFormats' table. 445 UResource.Table dateIntervalData = value.getTable(); 457 } else if (value.getType() == ICUResourceBundle.TABLE) { 458 // Iterate over all the skeletons in the 'intervalFormat' table. 459 UResource.Table skeletonData = value.getTable(); 461 if (value.getType() == ICUResourceBundle.TABLE) { 471 /** Processes the patterns for a skeleton table. */ 473 // Iterate over all the patterns in the current skeleton table 475 UResource.Table patternData = value.getTable(); [all...] |
| /external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/SelectionDAG/ |
| SelectionDAGISel.cpp | [all...] |
| /external/swiftshader/third_party/llvm-7.0/llvm/lib/ObjectYAML/ |
| WasmYAML.cpp | 227 ECase(TABLE); 245 void MappingTraits<WasmYAML::Table>::mapping(IO &IO, WasmYAML::Table &Table) { 246 IO.mapRequired("ElemType", Table.ElemType); 247 IO.mapRequired("Limits", Table.TableLimits); 311 IO.mapRequired("Table", Import.TableImport); 465 ECase(TABLE);
|
| /device/linaro/bootloader/edk2/OvmfPkg/Sec/ |
| SecMain.c | 732 volatile UINT8 *Table;
739 Table = (UINT8*)(UINTN)FixedPcdGet64 (PcdGuidedExtractHandlerTableAddress);
743 Table[Index] = 0;
921 // Rebase IDT table in permanent memory
|
| /external/guava/guava/src/com/google/common/collect/ |
| ArrayTable.java | 40 * Fixed-size {@link Table} implementation backed by a two-dimensional array. 42 * <p>The allowed row and column keys must be supplied when the table is 43 * created. The table always contains a mapping for every row key / column pair. 47 * <p>The table's size is constant: the product of the number of supplied row 49 * clear} methods are not supported by the table or its views. The {@link 52 * <p>The ordering of the row and column keys provided when the table is 54 * table's views. None of the view iterators support {@link Iterator#remove}. 55 * If the table is modified after an iterator is created, the iterator remains 59 * TreeBasedTable} implementations, except when the table is sparse. 73 * visible, synchronize access to the table. Unlike other {@code Table [all...] |
| /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ |
| ArrayTable.java | 38 * Fixed-size {@link Table} implementation backed by a two-dimensional array. 40 * <p>The allowed row and column keys must be supplied when the table is 41 * created. The table always contains a mapping for every row key / column pair. 45 * <p>The table's size is constant: the product of the number of supplied row 47 * clear} methods are not supported by the table or its views. The {@link 50 * <p>The ordering of the row and column keys provided when the table is 52 * table's views. None of the view iterators support {@link Iterator#remove}. 53 * If the table is modified after an iterator is created, the iterator remains 57 * TreeBasedTable} implementations, except when the table is sparse. 71 * visible, synchronize access to the table. Unlike other {@code Table [all...] |
| /external/icu/android_icu4j/src/main/java/android/icu/util/ |
| MeasureUnit.java | 261 UResource.Table unitTypesTable = value.getTable(); 269 UResource.Table unitNamesTable = value.getTable(); 284 UResource.Table codesTable = value.getTable(); [all...] |
| /external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/ |
| MeasureUnit.java | 269 UResource.Table unitTypesTable = value.getTable(); 277 UResource.Table unitNamesTable = value.getTable(); 292 UResource.Table codesTable = value.getTable(); [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/MC/ |
| MCContext.h | 147 /// We now emit a line table for each compile unit. To reduce the prologue 148 /// size of each line table, the files and directories used by each compile 361 /// getSymbols - Get a reference for the symbol table for clients that 363 /// still want any modifications to the table itself to use the MCContext 547 for (const auto &Table : MCDwarfLineTablesCUMap) 548 if (!Table.second.getMCDwarfFiles().empty() || Table.second.getLabel()) 575 /// in the line number table with this information and the address of the
|
| /external/swiftshader/third_party/llvm-7.0/llvm/tools/yaml2obj/ |
| yaml2wasm.cpp | 339 for (auto &Table : Section.Tables) { 340 writeUint8(OS, Table.ElemType); 341 writeLimits(Table.TableLimits, OS);
|
| /device/linaro/bootloader/OpenPlatformPkg/Chips/Hisilicon/Hi1616/D05AcpiTables/ |
| D05Iort.asl | 6 * Template for [IORT] ACPI Table (static data table)
9 [0004] Signature : "IORT" [IO Remapping Table]
10 [0004] Table Length : 000002e4
14 [0008] Oem Table ID : "HIP07 "
|
| /external/llvm/lib/IR/ |
| Function.cpp | 284 // Delete all of the method arguments and unlink from symbol table... 288 // Remove the function from the on-the-side GC table. 365 // Metadata is stored in a side-table. 456 /// Table of string intrinsic names indexed by enum value. 750 // Check to see if the intrinsic's type was expressible by the table. 765 // into a single word in the table itself, decode it now. 775 // Okay, decode the table into the output vector of IITDescriptors. 863 SmallVector<IITDescriptor, 8> Table; 864 getIntrinsicInfoTableEntries(id, Table); 866 ArrayRef<IITDescriptor> TableRef = Table; [all...] |
| /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Object/ |
| COFF.h | 451 // VirtualAddress field of the first relocation table entry. [all...] |
| /art/runtime/ |
| reference_table.cc | 121 os << name_ << " reference table dump:\n"; 125 void ReferenceTable::Dump(std::ostream& os, Table& entries) { 261 // Make a copy of the table and sort it, only adding non null and not cleared elements. 262 Table sorted_entries; 348 // Dump a summary of the whole table.
|