OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Sizes
(Results
1 - 12
of
12
) sorted by relevancy
/src/external/apache2/llvm/dist/llvm/tools/llvm-dwarfdump/
SectionSizes.cpp
1
//===-- SectionSizes.cpp - Debug section
sizes
----------------------------===//
17
static size_t getNameColumnWidth(const SectionSizes &
Sizes
,
21
for (const auto &It :
Sizes
.DebugSectionSizes)
26
static size_t getSizeColumnWidth(const SectionSizes &
Sizes
,
30
for (const auto &It :
Sizes
.DebugSectionSizes) {
38
const SectionSizes &
Sizes
,
43
size_t NameColWidth = getNameColumnWidth(
Sizes
, SectionNameTitle);
44
size_t SizeColWidth = getSizeColumnWidth(
Sizes
, SectionSizeTitle);
60
for (const auto &It :
Sizes
.DebugSectionSizes) {
66
It.second / static_cast<double>(
Sizes
.TotalObjectSize) * 100
[
all
...]
Statistics.cpp
647
static void printSectionSizes(json::OStream &J, const SectionSizes &
Sizes
) {
648
for (const auto &It :
Sizes
.DebugSectionSizes)
746
/// Collect the
sizes
of debug sections.
747
SectionSizes
Sizes
;
748
calculateSectionSizes(Obj,
Sizes
, Filename);
874
// Print the debug section
sizes
.
875
printSectionSizes(J,
Sizes
);
/src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/tests/
sanitizer_ring_buffer_test.cc
38
const size_t
Sizes
[] = {1, 2, 3, 5, 8, 16, 20, 40, 10000};
39
for (size_t Size :
Sizes
) {
/src/external/apache2/llvm/dist/llvm/lib/Analysis/
Delinearization.cpp
86
SmallVector<const SCEV *, 3> Subscripts,
Sizes
;
87
SE->delinearize(AccessFn, Subscripts,
Sizes
, SE->getElementSize(&Inst));
88
if (Subscripts.size() == 0 ||
Sizes
.size() == 0 ||
89
Subscripts.size() !=
Sizes
.size()) {
98
O << "[" << *
Sizes
[i] << "]";
99
O << " with elements of " << *
Sizes
[Size - 1] << " bytes.\n";
StackSafetyAnalysis.cpp
318
ConstantRange
Sizes
= SE.getSignedRange(Expr);
319
if (
Sizes
.getUpper().isNegative() || isUnsafe(
Sizes
))
321
Sizes
=
Sizes
.sextOrTrunc(PointerSize);
323
Sizes
.getUpper() - 1);
DependenceAnalysis.cpp
3353
"Expected equal number of entries in the list of
sizes
and "
3427
// Second step: find subscript
sizes
.
3428
SmallVector<const SCEV *, 4>
Sizes
;
3429
SE->findArrayDimensions(Terms,
Sizes
, ElementSize);
3432
SE->computeAccessFunctions(SrcAR, SrcSubscripts,
Sizes
);
3433
SE->computeAccessFunctions(DstAR, DstSubscripts,
Sizes
);
3446
// FIXME: It may be better to record these
sizes
and add them as constraints
3453
if (!isKnownLessThan(SrcSubscripts[I],
Sizes
[I - 1]))
3459
if (!isKnownLessThan(DstSubscripts[I],
Sizes
[I - 1]))
/src/external/apache2/llvm/dist/llvm/lib/DebugInfo/CodeView/
TypeIndexDiscovery.cpp
47
constexpr uint32_t
Sizes
[] = {
61
return 2 +
Sizes
[N - LF_NUMERIC];
/src/external/apache2/llvm/dist/llvm/lib/DebugInfo/MSF/
MSFBuilder.cpp
290
// The stream
sizes
should be re-allocated as a stable pointer and the stream
293
ulittle32_t *
Sizes
= Allocator.Allocate<ulittle32_t>(StreamData.size());
294
L.StreamSizes = ArrayRef<ulittle32_t>(
Sizes
, StreamData.size());
297
Sizes
[I] = StreamData[I].first;
/src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGOpenMPRuntime.h
153
///
Sizes
of the reduction items in chars.
154
SmallVector<std::pair<llvm::Value *, llvm::Value *>, 4>
Sizes
;
214
return
Sizes
[N];
1647
/// The array of
sizes
passed to the runtime library.
CGOpenMPRuntime.cpp
797
Sizes
.reserve(Shareds.size());
831
Sizes
.emplace_back(
853
Sizes
.emplace_back(SizeInChars, Size);
868
assert(!Size && !
Sizes
[N].second &&
4717
SmallVector<llvm::Value *, 4>
Sizes
;
4765
Sizes
.push_back(Size);
4767
return
Sizes
;
4859
SmallVector<llvm::Value *, 4>
Sizes
=
4861
for (llvm::Value *Size :
Sizes
) {
6108
// required because runtime does not provide the way to pass the
sizes
o
[
all
...]
/src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
AMDGPURegisterBankInfo.cpp
307
unsigned
Sizes
[NumOps];
310
Sizes
[I] = getSizeInBits(Reg, MRI, *TRI);
323
Operands[OpIdx] = AMDGPU::getValueMapping(Entry.RegBanks[I],
Sizes
[I]);
/src/external/apache2/llvm/dist/clang/include/clang/AST/
OpenMPClause.h
797
/// This represents the '
sizes
' clause in the '#pragma omp tile' directive.
800
/// #pragma omp tile
sizes
(5,5)
813
/// Number of tile
sizes
in the clause.
822
/// Build a '
sizes
' AST node.
825
/// \param StartLoc Location of the '
sizes
' identifier.
828
/// \param
Sizes
Content of the clause.
831
ArrayRef<Expr *>
Sizes
);
833
/// Build an empty '
sizes
' AST node for deserialization.
869
MutableArrayRef<Expr *>
Sizes
= getSizesRefs();
870
return child_range(reinterpret_cast<Stmt **>(
Sizes
.begin())
[
all
...]
Completed in 40 milliseconds
Indexes created Mon Jun 08 00:24:58 UTC 2026