OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:TotalSize
(Results
1 - 25
of
50
) sorted by relevancy
1
2
/src/sys/external/bsd/acpica/dist/resources/
rscalc.c
218
ACPI_RS_LENGTH
TotalSize
;
245
TotalSize
= AcpiGbl_AmlResourceSizes [Resource->Type];
259
TotalSize
--;
270
TotalSize
--;
286
TotalSize
= sizeof (AML_RESOURCE_LARGE_HEADER);
291
TotalSize
= (ACPI_RS_LENGTH)
292
(
TotalSize
+ Resource->Data.Vendor.ByteLength);
301
*SizeNeeded = AmlSizeNeeded +
TotalSize
;
313
TotalSize
= (ACPI_RS_LENGTH) (
TotalSize
[
all
...]
/src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/JITLink/
JITLinkMemoryManager.cpp
87
size_t
TotalSize
= 0;
96
TotalSize
= alignTo(
TotalSize
, sys::Process::getPageSizeEstimate());
97
TotalSize
+= Seg.getContentSize();
98
TotalSize
+= Seg.getZeroFillSize();
104
sys::Memory::allocateMappedMemory(
TotalSize
, nullptr, ReadWrite, EC);
/src/external/apache2/llvm/dist/llvm/lib/Support/
CachePruning.cpp
205
uint64_t
TotalSize
= 0;
242
TotalSize
+= StatusOrErr->getSize();
253
TotalSize
-= FileInfo->Size;
256
<< FileInfo->Size << "), new occupancy is " <<
TotalSize
273
auto AvailableSpace =
TotalSize
+ SpaceInfo.free;
283
LLVM_DEBUG(dbgs() << "Occupancy: " << ((100 *
TotalSize
) / AvailableSpace)
289
while (
TotalSize
> TotalSizeTarget && FileInfo != FileInfos.end())
/src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
HexagonStoreWidening.cpp
105
InstrGroup &OG, unsigned &
TotalSize
, unsigned MaxSize);
106
bool createWideStores(InstrGroup &OG, InstrGroup &NG, unsigned
TotalSize
);
306
InstrGroup::iterator End, InstrGroup &OG, unsigned &
TotalSize
,
384
TotalSize
= Pow2Size;
392
unsigned
TotalSize
) {
395
// - only handle a
TotalSize
of up to 4.
397
if (
TotalSize
> 4)
421
TotalSize
, OldM.getAlign(), OldM.getAAInfo());
425
unsigned WOpc = (
TotalSize
== 2) ? Hexagon::S4_storeirh_io :
426
(
TotalSize
== 4) ? Hexagon::S4_storeiri_io : 0
[
all
...]
/src/external/apache2/llvm/dist/llvm/lib/Target/ARM/MCTargetDesc/
ARMUnwindOpAsm.cpp
162
size_t
TotalSize
= Ops.size() + 1;
163
size_t RoundUpSize = (
TotalSize
+ 3) / 4 * 4;
178
size_t
TotalSize
= Ops.size() + 2;
179
size_t RoundUpSize = (
TotalSize
+ 3) / 4 * 4;
/src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/wasm/
Writer.cpp
58
size_t
TotalSize
= finalize();
59
Out.reserveExtraSpace(
TotalSize
);
/src/external/apache2/llvm/dist/llvm/lib/Target/MSP430/
MSP430BranchSelector.cpp
95
unsigned
TotalSize
= BlockOffsets[Begin->getNumber()];
97
BlockOffsets[MBB.getNumber()] =
TotalSize
;
99
TotalSize
+= TII->getInstSizeInBytes(MI);
102
return
TotalSize
;
/src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/PerfJITEvents/
PerfJITEventListener.cpp
122
uint32_t
TotalSize
; // total size of header
133
uint32_t
TotalSize
;
220
Header.
TotalSize
= sizeof(Header);
412
rec.Prefix.
TotalSize
= sizeof(rec) + // debug record itself
443
rec.Prefix.
TotalSize
= sizeof(rec); // will be increased further
453
rec.Prefix.
TotalSize
+= sizeof(LLVMPerfJitDebugEntry);
454
rec.Prefix.
TotalSize
+= line.FileName.size() + 1;
/src/external/apache2/llvm/dist/llvm/include/llvm/ProfileData/
InstrProfData.inc
356
uint32_t
TotalSize
;
410
uint32_t getSize() const { return
TotalSize
; }
552
uint32_t
TotalSize
= sizeof(ValueProfData);
559
TotalSize
+= getValueProfRecordSize(NumValueSites,
562
return
TotalSize
;
591
* DstData is not null, the caller is expected to set the
TotalSize
598
uint32_t
TotalSize
=
599
DstData ? DstData->
TotalSize
: getValueProfDataSize(Closure);
602
DstData ? DstData : Closure->AllocValueProfData(
TotalSize
);
604
VPD->
TotalSize
= TotalSize
[
all
...]
InstrProf.h
1088
inline std::unique_ptr<Summary> allocSummary(uint32_t
TotalSize
) {
1089
return std::unique_ptr<Summary>(new (::operator new(
TotalSize
))
1090
Summary(
TotalSize
));
/src/external/apache2/llvm/dist/llvm/include/llvm/ExecutionEngine/Orc/
OrcRemoteTargetClient.h
396
auto
TotalSize
= calcTotalAllocSize(Request, TargetPageSize);
397
if (!
TotalSize
)
398
return
TotalSize
.takeError();
406
sys::Memory::allocateMappedMemory(*
TotalSize
, nullptr, ReadWrite, EC);
500
size_t
TotalSize
= 0;
509
TotalSize
= alignTo(
TotalSize
, TargetPageSize);
510
TotalSize
+= Seg.getContentSize();
511
TotalSize
+= Seg.getZeroFillSize();
514
return
TotalSize
;
[
all
...]
/src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
AMDGPUPrintfRuntimeBinding.cpp
475
uint32_t
TotalSize
= EleCount * EleSize;
482
TotalSize
+= EleSize;
486
EleCount =
TotalSize
/ 64;
491
EleCount =
TotalSize
/ 64;
503
EleCount =
TotalSize
/ 64;
AMDGPUSubtarget.cpp
605
uint64_t
TotalSize
= ExplicitOffset + ExplicitArgBytes;
609
TotalSize
= alignTo(ExplicitArgBytes, Alignment) + ImplicitBytes;
613
return alignTo(
TotalSize
, 4);
/src/external/apache2/llvm/dist/llvm/lib/ProfileData/
InstrProf.cpp
873
static std::unique_ptr<ValueProfData> allocValueProfData(uint32_t
TotalSize
) {
874
return std::unique_ptr<ValueProfData>(new (::operator new(
TotalSize
))
882
if (
TotalSize
% sizeof(uint64_t))
890
if ((char *)VR - (char *)this > (ptrdiff_t)
TotalSize
)
906
uint32_t
TotalSize
= swapToHostOrder<uint32_t>(Header, Endianness);
907
if (D +
TotalSize
> BufferEnd)
910
std::unique_ptr<ValueProfData> VPD = allocValueProfData(
TotalSize
);
911
memcpy(VPD.get(), D,
TotalSize
);
928
sys::swapByteOrder<uint32_t>(
TotalSize
);
950
sys::swapByteOrder<uint32_t>(
TotalSize
);
[
all
...]
/src/sys/external/bsd/compiler_rt/dist/lib/profile/
InstrProfilingWriter.c
128
CurVData->
TotalSize
) != 0)
InstrProfData.inc
253
uint32_t
TotalSize
;
308
uint32_t getSize() const { return
TotalSize
; }
477
uint32_t
TotalSize
= sizeof(ValueProfData);
481
return
TotalSize
;
487
TotalSize
+= getValueProfRecordSize(NumValueSites,
490
return
TotalSize
;
523
uint32_t
TotalSize
= getValueProfDataSize(Closure);
526
DstData ? DstData : Closure->AllocValueProfData(
TotalSize
);
528
VPD->
TotalSize
=
TotalSize
;
[
all
...]
/src/external/apache2/llvm/dist/llvm/lib/Analysis/
TFUtils.cpp
432
int64_t
TotalSize
= TF_DataTypeSize(Type);
434
TotalSize
*= D;
437
TF_AllocateTensor(Type, Dimensions.data(), Dimensions.size(),
TotalSize
);
438
std::memset(TF_TensorData(Input[Index]), 0,
TotalSize
);
/src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/sys/windows/
psapi.d
79
SIZE_T
TotalSize
;
/src/sys/external/bsd/acpica/dist/utilities/
uttrack.c
179
AcpiGbl_GlobalList->
TotalSize
+= (UINT32) Size;
248
AcpiGbl_GlobalList->
TotalSize
+= (UINT32) Size;
/src/external/apache2/llvm/dist/llvm/include/llvm/ExecutionEngine/Orc/TargetProcess/
OrcRPCTPCServer.h
476
uint64_t
TotalSize
= 0;
487
TotalSize
+= Size;
492
auto MB = sys::Memory::allocateMappedMemory(
TotalSize
, nullptr, PF, EC);
/src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/MachO/
MachOWriter.cpp
34
size_t MachOWriter::
totalSize
() const {
515
size_t
TotalSize
=
totalSize
();
516
Buf = WritableMemoryBuffer::getNewMemBuffer(
TotalSize
);
520
Twine::utohexstr(
TotalSize
) + " bytes");
521
memset(Buf->getBufferStart(), 0,
totalSize
());
/src/external/apache2/llvm/dist/llvm/tools/obj2yaml/
coff2yaml.cpp
226
YAMLFD.
TotalSize
= ObjFD->
TotalSize
;
/src/external/apache2/llvm/dist/llvm/lib/CodeGen/
StackColoring.cpp
1233
unsigned
TotalSize
= 0;
1241
TotalSize
+= MFI->getObjectSize(i);
1244
LLVM_DEBUG(dbgs() << "Total Stack size: " <<
TotalSize
<< " bytes\n\n");
1248
if (NumMarkers < 2 ||
TotalSize
< 16 || DisableColoring ||
/src/sys/external/bsd/acpica/dist/debugger/
dbstats.c
173
List->
TotalSize
);
/src/sys/external/bsd/compiler_rt/dist/lib/fuzzer/
FuzzerLoop.cpp
742
size_t
TotalSize
= 0;
753
TotalSize
+= File.Size;
770
SizedFiles.size(), MinSize, MaxSize,
TotalSize
, GetPeakRSSMb());
Completed in 56 milliseconds
1
2
Indexes created Sat Jun 13 00:24:39 UTC 2026