Searched refs:TU (Results 1 - 9 of 9) sorted by relevance
/third_party/typescript/tests/baselines/reference/ |
H A D | genericCallWithGenericSignatureArguments2.js | 41 module TU { 114 var TU;
variable 115 (function (TU) {
147 })(TU || (TU = {}));
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/DWARF/ |
H A D | DWARFAcceleratorTable.cpp | 371 W.printNumber("Local TU count", LocalTypeUnitCount); in dump() 372 W.printNumber("Foreign TU count", ForeignTypeUnitCount); in dump() 586 uint64_t DWARFDebugNames::NameIndex::getLocalTUOffset(uint32_t TU) const { 587 assert(TU < Hdr.LocalTypeUnitCount); 588 uint64_t Offset = CUsBase + 4 * (Hdr.CompUnitCount + TU); 592 uint64_t DWARFDebugNames::NameIndex::getForeignTUSignature(uint32_t TU) const { 593 assert(TU < Hdr.ForeignTypeUnitCount); 595 CUsBase + 4 * (Hdr.CompUnitCount + Hdr.LocalTypeUnitCount) + 8 * TU; 696 for (uint32_t TU = 0; TU < Hd [all...] |
H A D | DWARFGdbIndex.cpp | 40 for (const TypeUnitEntry &TU : TuList) in dumpTUList() 43 I++, TU.Offset, TU.TypeOffset, TU.TypeSignature); in dumpTUList()
|
H A D | DWARFTypeUnit.cpp | 45 if (DWARFDie TU = getUnitDIE(false)) in dump() 46 TU.dump(OS, 0, DumpOpts); in dump()
|
H A D | DWARFDebugLine.cpp | 1117 for (const auto &TU : TUs) in buildLineToUnitMap() 1118 if (auto TUDIE = TU->getUnitDIE()) in buildLineToUnitMap() 1120 LineToUnit.insert(std::make_pair(*StmtOffset, &*TU)); in buildLineToUnitMap()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/ |
H A D | DependenceAnalysis.cpp | 1539 APInt TU(APInt::getSignedMaxValue(Bits)); in exactSIVtest() 1548 TU = minAPInt(TU, floorOfQuotient(UM - X, TMUL)); in exactSIVtest() 1549 LLVM_DEBUG(dbgs() << "\t TU = " << TU << "\n"); in exactSIVtest() 1553 TU = minAPInt(TU, floorOfQuotient(-X, TMUL)); in exactSIVtest() 1554 LLVM_DEBUG(dbgs() << "\t TU = " << TU << "\n"); in exactSIVtest() 1567 TU in exactSIVtest() [all...] |
/third_party/mbedtls/library/ |
H A D | bignum.c | 1884 mbedtls_mpi G, TA, TU, U1, U2, TB, TV, V1, V2; in mbedtls_mpi_inv_mod() local 1890 mbedtls_mpi_init(&TA); mbedtls_mpi_init(&TU); mbedtls_mpi_init(&U1); mbedtls_mpi_init(&U2); in mbedtls_mpi_inv_mod() 1902 MBEDTLS_MPI_CHK(mbedtls_mpi_copy(&TU, &TA)); in mbedtls_mpi_inv_mod() 1912 while ((TU.p[0] & 1) == 0) { in mbedtls_mpi_inv_mod() 1913 MBEDTLS_MPI_CHK(mbedtls_mpi_shift_r(&TU, 1)); in mbedtls_mpi_inv_mod() 1936 if (mbedtls_mpi_cmp_mpi(&TU, &TV) >= 0) { in mbedtls_mpi_inv_mod() 1937 MBEDTLS_MPI_CHK(mbedtls_mpi_sub_mpi(&TU, &TU, &TV)); in mbedtls_mpi_inv_mod() 1941 MBEDTLS_MPI_CHK(mbedtls_mpi_sub_mpi(&TV, &TV, &TU)); in mbedtls_mpi_inv_mod() 1945 } while (mbedtls_mpi_cmp_int(&TU, in mbedtls_mpi_inv_mod() [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/DWARF/ |
H A D | DWARFAcceleratorTable.h | 304 /// Returns the Offset of the DIE within the containing CU or TU. 424 /// Reads offset of local type unit TU, TU is 0-based. 425 uint64_t getLocalTUOffset(uint32_t TU) const; 428 /// Reads signature of foreign type unit TU. TU is 0-based. 429 uint64_t getForeignTUSignature(uint32_t TU) const;
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/AsmPrinter/ |
H A D | DwarfDebug.cpp | 2978 for (const auto &TU : TypeUnitsToAdd) 2979 TypeSignatures.erase(TU.second); 2991 for (auto &TU : TypeUnitsToAdd) { 2992 InfoHolder.computeSizeAndOffsetsForUnit(TU.first.get()); 2993 InfoHolder.emitUnit(TU.first.get(), useSplitDwarf());
|
Completed in 14 milliseconds