| /netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-dwarfdump/ |
| H A D | SectionSizes.cpp | 17 static size_t getNameColumnWidth(const SectionSizes &Sizes, in getNameColumnWidth() argument 21 for (const auto &It : Sizes.DebugSectionSizes) in getNameColumnWidth() 26 static size_t getSizeColumnWidth(const SectionSizes &Sizes, in getSizeColumnWidth() argument 30 for (const auto &It : Sizes.DebugSectionSizes) { in getSizeColumnWidth() 38 const SectionSizes &Sizes, in prettyPrintSectionSizes() argument 43 size_t NameColWidth = getNameColumnWidth(Sizes, SectionNameTitle); in prettyPrintSectionSizes() 44 size_t SizeColWidth = getSizeColumnWidth(Sizes, SectionSizeTitle); in prettyPrintSectionSizes() 60 for (const auto &It : Sizes.DebugSectionSizes) { in prettyPrintSectionSizes() 66 It.second / static_cast<double>(Sizes.TotalObjectSize) * 100) in prettyPrintSectionSizes() 71 OS << " Total Size: " << Sizes.TotalDebugSectionsSize << " (" in prettyPrintSectionSizes() [all …]
|
| H A D | Statistics.cpp | 647 static void printSectionSizes(json::OStream &J, const SectionSizes &Sizes) { in printSectionSizes() argument 648 for (const auto &It : Sizes.DebugSectionSizes) in printSectionSizes() 747 SectionSizes Sizes; in collectStatsForObjectFile() local 748 calculateSectionSizes(Obj, Sizes, Filename); in collectStatsForObjectFile() 875 printSectionSizes(J, Sizes); in collectStatsForObjectFile()
|
| H A D | llvm-dwarfdump.h | 34 void calculateSectionSizes(const object::ObjectFile &Obj, SectionSizes &Sizes,
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/AST/ |
| H A D | OpenMPClause.cpp | 930 ArrayRef<Expr *> Sizes) { in Create() argument 931 OMPSizesClause *Clause = CreateEmpty(C, Sizes.size()); in Create() 935 Clause->setSizesRefs(Sizes); in Create() 1089 OMPMappableExprListSizeTy Sizes; in Create() local 1090 Sizes.NumVars = Vars.size(); in Create() 1091 Sizes.NumUniqueDeclarations = getUniqueDeclarationsTotalNumber(Declarations); in Create() 1092 Sizes.NumComponentLists = ComponentLists.size(); in Create() 1093 Sizes.NumComponents = getComponentsTotalNumber(ComponentLists); in Create() 1108 2 * Sizes.NumVars, Sizes.NumUniqueDeclarations, in Create() 1109 Sizes.NumUniqueDeclarations + Sizes.NumComponentLists, in Create() [all …]
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/Native/ |
| H A D | TpiStreamBuilder.cpp | 45 void TpiStreamBuilder::updateTypeIndexOffsets(ArrayRef<uint16_t> Sizes) { in updateTypeIndexOffsets() argument 47 for (uint16_t Size : Sizes) { in updateTypeIndexOffsets() 77 ArrayRef<uint16_t> Sizes, in addTypeRecords() argument 81 assert(Sizes.empty() && Hashes.empty()); in addTypeRecords() 88 assert(Sizes.size() == Hashes.size() && "sizes and hashes should be in sync"); in addTypeRecords() 89 assert(std::accumulate(Sizes.begin(), Sizes.end(), 0U) == Types.size() && in addTypeRecords() 91 updateTypeIndexOffsets(Sizes); in addTypeRecords()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Analysis/ |
| H A D | Delinearization.cpp | 86 SmallVector<const SCEV *, 3> Subscripts, Sizes; in printDelinearization() local 87 SE->delinearize(AccessFn, Subscripts, Sizes, SE->getElementSize(&Inst)); in printDelinearization() 88 if (Subscripts.size() == 0 || Sizes.size() == 0 || in printDelinearization() 89 Subscripts.size() != Sizes.size()) { in printDelinearization() 98 O << "[" << *Sizes[i] << "]"; in printDelinearization() 99 O << " with elements of " << *Sizes[Size - 1] << " bytes.\n"; in printDelinearization()
|
| H A D | LoopCacheAnalysis.cpp | 132 for (const SCEV *Size : R.Sizes) in operator <<() 282 const SCEV *ElemSize = Sizes.back(); in computeRefCost() 293 const SCEV *ElemSize = Sizes.back(); in computeRefCost() 325 assert(Sizes.empty() && "Sizes should be empty"); in delinearize() 349 SE.delinearize(AccessFn, Subscripts, Sizes, in delinearize() 352 if (Subscripts.empty() || Sizes.empty() || in delinearize() 353 Subscripts.size() != Sizes.size()) { in delinearize() 360 Sizes.clear(); in delinearize() 379 Sizes.push_back(ElemSize); in delinearize() 420 const SCEV *ElemSize = Sizes.back(); in isConsecutive()
|
| H A D | StackSafetyAnalysis.cpp | 318 ConstantRange Sizes = SE.getSignedRange(Expr); in getMemIntrinsicAccessRange() local 319 if (Sizes.getUpper().isNegative() || isUnsafe(Sizes)) in getMemIntrinsicAccessRange() 321 Sizes = Sizes.sextOrTrunc(PointerSize); in getMemIntrinsicAccessRange() 323 Sizes.getUpper() - 1); in getMemIntrinsicAccessRange()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/ |
| H A D | AMDGPUPrintfRuntimeBinding.cpp | 202 raw_string_ostream Sizes(AStreamHolder); in lowerPrintfForGpu() local 204 Sizes << CI->getNumArgOperands() - 1; in lowerPrintfForGpu() 205 Sizes << ':'; in lowerPrintfForGpu() 278 Sizes << ArgSize << ':'; in lowerPrintfForGpu() 288 Sizes << "\\a"; in lowerPrintfForGpu() 291 Sizes << "\\b"; in lowerPrintfForGpu() 294 Sizes << "\\f"; in lowerPrintfForGpu() 297 Sizes << "\\n"; in lowerPrintfForGpu() 300 Sizes << "\\r"; in lowerPrintfForGpu() 303 Sizes << "\\v"; in lowerPrintfForGpu() [all …]
|
| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/PDB/Native/ |
| H A D | TpiStreamBuilder.h | 57 void addTypeRecords(ArrayRef<uint8_t> Types, ArrayRef<uint16_t> Sizes, 69 void updateTypeIndexOffsets(ArrayRef<uint16_t> Sizes);
|
| /netbsd-src/external/gpl2/groff/dist/doc/ |
| H A D | groff-3 | 59 * .ps register, in comparison with .psr: Fractional Type Sizes. 61 * .s register, in comparison with .sr: Fractional Type Sizes. 66 * .V register, and vs: Changing Type Sizes. (line 93) 195 * \H, with fractional type sizes: Fractional Type Sizes. 223 * \s, with fractional type sizes: Fractional Type Sizes. 334 * baseline: Sizes. (line 6) 404 * changing type sizes (ps, \s): Changing Type Sizes. (line 11) 405 * changing vertical line spacing (vs): Changing Type Sizes. (line 87) 546 * cs request, with fractional type sizes: Fractional Type Sizes. 648 * double-spacing (vs, pvs): Changing Type Sizes. (line 124) [all …]
|
| H A D | groff | 181 Node: Sizes255325 182 Node: Sizes-Footnotes256161 183 Ref: Sizes-Footnote-1256212 184 Node: Changing Type Sizes256624 185 Node: Fractional Type Sizes262096
|
| /netbsd-src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/tests/ |
| H A D | sanitizer_ring_buffer_test.cc | 38 const size_t Sizes[] = {1, 2, 3, 5, 8, 16, 20, 40, 10000}; in TestRB() local 39 for (size_t Size : Sizes) { in TestRB()
|
| /netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/ |
| H A D | OpenMPClause.h | 831 ArrayRef<Expr *> Sizes); 869 MutableArrayRef<Expr *> Sizes = getSizesRefs(); in children() local 870 return child_range(reinterpret_cast<Stmt **>(Sizes.begin()), in children() 871 reinterpret_cast<Stmt **>(Sizes.end())); in children() 874 ArrayRef<Expr *> Sizes = getSizesRefs(); in children() local 875 return const_child_range(reinterpret_cast<Stmt *const *>(Sizes.begin()), in children() 876 reinterpret_cast<Stmt *const *>(Sizes.end())); in children() 4960 const OMPMappableExprListSizeTy &Sizes, bool SupportsMapper = false, 4964 Sizes.NumVars), 4965 NumUniqueDeclarations(Sizes.NumUniqueDeclarations), [all …]
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/DebugInfo/MSF/ |
| H A D | MSFBuilder.cpp | 293 ulittle32_t *Sizes = Allocator.Allocate<ulittle32_t>(StreamData.size()); in generateLayout() local 294 L.StreamSizes = ArrayRef<ulittle32_t>(Sizes, StreamData.size()); in generateLayout() 297 Sizes[I] = StreamData[I].first; in generateLayout()
|
| /netbsd-src/external/cddl/dtracetoolkit/dist/Docs/Examples/ |
| H A D | crash_example.txt | 65 Sizes,
|
| /netbsd-src/external/cddl/dtracetoolkit/dist/Examples/ |
| H A D | crash_example.txt | 65 Sizes,
|
| /netbsd-src/external/bsd/file/dist/magic/magdir/ |
| H A D | pgf | 49 # Level-Sizes
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/ |
| H A D | CGOpenMPRuntime.cpp | 797 Sizes.reserve(Shareds.size()); in ReductionCodeGen() 831 Sizes.emplace_back( in emitAggregateType() 853 Sizes.emplace_back(SizeInChars, Size); in emitAggregateType() 868 assert(!Size && !Sizes[N].second && in emitAggregateType() 4717 SmallVector<llvm::Value *, 4> Sizes; in emitDepobjElementsSizes() local 4765 Sizes.push_back(Size); in emitDepobjElementsSizes() 4767 return Sizes; in emitDepobjElementsSizes() 4859 SmallVector<llvm::Value *, 4> Sizes = in emitDependClause() local 4861 for (llvm::Value *Size : Sizes) { in emitDependClause() 6197 auto Sizes = RCG.getSizes(N); in emitTaskReductionFixups() local [all …]
|
| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/ |
| H A D | LoopCacheAnalysis.h | 138 SmallVector<const SCEV *, 3> Sizes; variable
|
| H A D | ScalarEvolution.h | 1058 SmallVectorImpl<const SCEV *> &Sizes, 1075 SmallVectorImpl<const SCEV *> &Sizes); 1088 SmallVectorImpl<int> &Sizes); 1155 SmallVectorImpl<const SCEV *> &Sizes,
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/DebugInfo/CodeView/ |
| H A D | TypeIndexDiscovery.cpp | 47 constexpr uint32_t Sizes[] = { in getEncodedIntegerLength() local 61 return 2 + Sizes[N - LF_NUMERIC]; in getEncodedIntegerLength()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Serialization/ |
| H A D | ASTReader.cpp | 11853 OMPMappableExprListSizeTy Sizes; in readClause() local 11854 Sizes.NumVars = Record.readInt(); in readClause() 11855 Sizes.NumUniqueDeclarations = Record.readInt(); in readClause() 11856 Sizes.NumComponentLists = Record.readInt(); in readClause() 11857 Sizes.NumComponents = Record.readInt(); in readClause() 11858 C = OMPMapClause::CreateEmpty(Context, Sizes); in readClause() 11886 OMPMappableExprListSizeTy Sizes; in readClause() local 11887 Sizes.NumVars = Record.readInt(); in readClause() 11888 Sizes.NumUniqueDeclarations = Record.readInt(); in readClause() 11889 Sizes.NumComponentLists = Record.readInt(); in readClause() [all …]
|
| /netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/ |
| H A D | uni.d | 4807 enum hasASCII = staticIndexOf!(1, Sizes) >= 0; in Utf8Matcher() 4808 alias UniSizes = Erase!(1, Sizes); in Utf8Matcher() 4820 static if (Sizes.length == 4) //covers all code unit cases in Utf8Matcher() 4850 static if (Sizes.length == 4) // can skip iff can detect all encodings in Utf8Matcher() 4911 struct Impl(Sizes...) in Utf8Matcher() 4914 static assert(allSatisfy!(validSize, Sizes), in Utf8Matcher() 4918 alias OurTabs = staticMap!(Table, Sizes); in Utf8Matcher() 4988 struct CherryPick(I, Sizes...) in Utf8Matcher() 4991 static assert(allSatisfy!(validSize, Sizes), in Utf8Matcher() 5082 static if (Sizes.length == 2) in Utf16Matcher() [all …]
|
| /netbsd-src/external/public-domain/xz/dist/tests/files/ |
| H A D | README | 195 bad-2-index-1.xz has wrong Unpadded Sizes in Index. 197 bad-2-index-2.xz has wrong Uncompressed Sizes in Index.
|