| /external/harfbuzz_ng/src/ |
| hb-open-type.hh | 195 static uint32_t CalcTableChecksum (const HBUINT32 *Table, uint32_t Length) 199 const HBUINT32 *EndPtr = Table + Length / HBUINT32::static_size; 201 while (Table < EndPtr) 202 Sum += *Table++; 901 * "The number of termination values that need to be included is table-specific.
|
| /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/utils/TableGen/ |
| 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/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/perfetto/src/trace_processor/ |
| args_table.cc | 28 Table::Register<ArgsTable>(db, storage, "args");
|
| /external/sfntly/cpp/src/sfntly/table/core/ |
| horizontal_header_table.cc | 17 #include "sfntly/table/core/horizontal_header_table.h" 79 : Table(header, data) { 97 FontDataTablePtr table = new HorizontalHeaderTable(header(), data); local 98 return table.Detach();
|
| maximum_profile_table.cc | 17 #include "sfntly/table/core/maximum_profile_table.h" 83 : Table(header, data) { 101 FontDataTablePtr table = new MaximumProfileTable(header(), data); local 102 return table.Detach();
|
| /external/skia/src/pdf/ |
| SkPDFTag.cpp | 11 // Table 333 in PDF 32000-1:2008 39 M(Table);
|
| /external/skqp/src/pdf/ |
| SkPDFTag.cpp | 11 // Table 333 in PDF 32000-1:2008 39 M(Table);
|
| /external/swiftshader/third_party/LLVM/docs/ |
| Makefile | 98 $(Echo) Making User LOC 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/Object/ |
| ELF.h | 165 /// Iterate over program header table. 289 return createError("index past the end of the symbol table"); 291 // The size of the table was checked in getSHNDXTable. 439 if (!Index) // no section string table. 468 return createError("section header table goes past the end of the file"); 482 return createError("section table goes past the end of file"); 486 // Section table goes past end of file! 488 return createError("section table goes past the end of file"); 544 return createError("invalid sh_type for string table, expected SHT_STRTAB"); 550 return createError("empty string table"); [all...] |
| /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ProfileData/ |
| SampleProfReader.h | 123 // and all strings are encoded in a name table. The file is organized in 156 // NAME TABLE 158 // Number of entries in the name table. 170 // Index into the name table indicating the function name. 192 // Index into the name table with the callee name. 389 /// Read the string index and check whether it overflows the table. 390 template <typename T> inline ErrorOr<uint32_t> readStringIndex(T &Table); 411 /// Read the whole name table. 414 /// Read a string indirectly via the name table. 420 /// Function name 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/utils/TableGen/ |
| 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...] |
| /external/u-boot/arch/arm/mach-uniphier/arm32/ |
| lowlevel_init.S | 31 bl setup_init_ram @ RAM area for stack and page table 34 * Now we are using the page table embedded in the Boot ROM. 35 * What we need to do next is to create a page table and switch 41 /* Disable MMU and Dcache before switching Page Table */ 53 mrc p15, 0, r0, c2, c0, 2 @ TTBCR (Translation Table Base Control Register) 58 orr r0, r12, #0x8 @ Outer Cacheability for table walks: WBWA
|
| /external/v8/src/builtins/ |
| builtins-console.cc | 25 V(Table, table) \
|
| /external/v8/src/inspector/ |
| v8-console.h | 67 void Table(const v8::debug::ConsoleCallArguments&,
|
| /external/llvm/lib/Object/ |
| COFFObjectFile.cpp | 65 // Decode a string table entry in base 64 (//AAAAAA). Expects \arg Str without 106 // Verify that the symbol points to a valid entry in the symbol table. 120 // Verify that the section points to a valid entry in the section table. 122 report_fatal_error("Section was outside of section table."); 143 llvm_unreachable("no symbol table pointer!"); 333 // The field for the number of relocations in COFF section table is only 385 // Initialize the pointer to the symbol table. 399 // Find string table. The first four byte of the string table contains the 400 // total size of the string table, including the size field itself. If th [all...] |
| /external/swiftshader/third_party/LLVM/lib/Target/X86/ |
| X86FloatingPoint.cpp | 568 // Efficient Lookup Table Support 587 static bool TableIsSorted(const TableEntry *Table, unsigned NumEntries) { 589 if (!(Table[i] < Table[i+1])) return false; 594 static int Lookup(const TableEntry *Table, unsigned N, unsigned Opcode) { 595 const TableEntry *I = std::lower_bound(Table, Table+N, Opcode); 596 if (I != Table+N && I->from == Opcode) 602 #define ASSERT_SORTED(TABLE) 604 #define ASSERT_SORTED(TABLE) \ [all...] |
| /external/fonttools/Lib/fontTools/ttLib/tables/ |
| otConverters.py | 23 """Given a table spec from otData.py, build a converter object for each 24 field of the table. This is called for each table in otData.py, and 68 convertersByName[cls.__name__] = Table(name, repeat, aux, cls) 73 convertersByName[cls.__name__] = Table(name, repeat, aux, cls) 296 xmlWriter.comment("missing from name table") 297 log.warning("name id %d missing from name table" % value) 356 Used in Apple AAT fonts in the `gcid` table. 389 table = self.tableClass() 390 table.decompile(reader, font [all...] |
| /external/guava/guava-testlib/test/com/google/common/testing/ |
| FreshValueGeneratorTest.java | 59 import com.google.common.collect.Table; 573 assertFreshInstance(new TypeToken<Table<String, ?, ?>>() {}); 575 Table<String, Integer, Object> expected = HashBasedTable.create(); 580 new TypeToken<Table<String, Integer, List<String>>>() {})); 581 assertNotInstantiable(new TypeToken<Table<EmptyEnum, String, Integer>>() {}); [all...] |
| /device/linaro/bootloader/edk2/BaseTools/Source/Python/Ecc/MetaFileWorkspace/ |
| MetaFileParser.py | 107 # @param Table Database used to retrieve module/package information
144 # @param Table Database used to retrieve module/package information
149 def __init__(self, FilePath, FileType, Table, Owner=-1, From=-1):
150 self._Table = Table
151 self._RawTable = Table
183 ## Store the parsed data in table
195 ## Set parsing complete flag in both class and table
213 ## Use [] style to query data in table, just for readability
412 # @param Table Database used to retrieve module/package information
447 # @param Table Database used to retrieve module/package information [all...] |
| /device/linaro/bootloader/edk2/BaseTools/Source/Python/Workspace/ |
| MetaFileParser.py | 110 # @param Table Database used to retrieve module/package information
148 # @param Table Database used to retrieve module/package information
152 def __init__(self, FilePath, FileType, Arch, Table, Owner= -1, From= -1):
153 self._Table = Table
154 self._RawTable = Table
185 ## Store the parsed data in table
197 ## Set parsing complete flag in both class and table
224 ## Use [] style to query data in table, just for readability
468 # @param Table Database used to retrieve module/package information
504 # @param Table Database used to retrieve module/package information [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...] |