OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:SizeInBytes
(Results
1 - 15
of
15
) sorted by relevancy
/src/external/apache2/llvm/dist/llvm/lib/Target/AVR/MCTargetDesc/
AVRMCELFStreamer.cpp
24
const MCSymbol *Sym, unsigned
SizeInBytes
, SMLoc Loc,
29
if (
SizeInBytes
== SIZE_LONG)
31
else if (
SizeInBytes
== SIZE_WORD)
40
SizeInBytes
, Loc);
/src/external/apache2/llvm/dist/llvm/lib/IR/
User.cpp
90
intptr_t
SizeInBytes
;
103
assert(DI->
SizeInBytes
!= 0 && "Should not have had a descriptor otherwise!");
106
reinterpret_cast<uint8_t *>(DI) - DI->
SizeInBytes
, DI->
SizeInBytes
);
141
DescInfo->
SizeInBytes
= DescBytes;
190
uint8_t *Storage = reinterpret_cast<uint8_t *>(DI) - DI->
SizeInBytes
;
/src/sys/external/bsd/compiler_rt/dist/lib/fuzzer/
FuzzerCorpus.h
56
size_t
SizeInBytes
() const {
/src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_ring_buffer.h
27
void *Ptr = MmapOrDie(
SizeInBytes
(Size), "RingBuffer");
29
uptr End = reinterpret_cast<uptr>(Ptr) +
SizeInBytes
(Size);
34
UnmapOrDie(this,
SizeInBytes
(size()));
42
static uptr
SizeInBytes
(uptr Size) {
46
uptr
SizeInBytes
() { return
SizeInBytes
(size()); }
/src/external/gpl3/gcc.old/dist/libsanitizer/sanitizer_common/
sanitizer_ring_buffer.h
26
void *Ptr = MmapOrDie(
SizeInBytes
(Size), "RingBuffer");
28
uptr End = reinterpret_cast<uptr>(Ptr) +
SizeInBytes
(Size);
33
UnmapOrDie(this,
SizeInBytes
(size()));
41
static uptr
SizeInBytes
(uptr Size) {
45
uptr
SizeInBytes
() { return
SizeInBytes
(size()); }
/src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/
sanitizer_ring_buffer.h
26
void *Ptr = MmapOrDie(
SizeInBytes
(Size), "RingBuffer");
28
uptr End = reinterpret_cast<uptr>(Ptr) +
SizeInBytes
(Size);
33
UnmapOrDie(this,
SizeInBytes
(size()));
41
static uptr
SizeInBytes
(uptr Size) {
45
uptr
SizeInBytes
() { return
SizeInBytes
(size()); }
/src/external/apache2/llvm/dist/llvm/lib/MC/
MCExpr.cpp
49
auto
SizeInBytes
= cast<MCConstantExpr>(*this).getSizeInBytes();
53
switch (
SizeInBytes
) {
196
unsigned
SizeInBytes
) {
197
return new (Ctx) MCConstantExpr(Value, PrintInHex,
SizeInBytes
);
/src/external/apache2/llvm/dist/llvm/include/llvm/Bitstream/
BitstreamReader.h
299
size_t
SizeInBytes
() const { return BitcodeBytes.size(); }
382
using SimpleBitstreamCursor::
SizeInBytes
;
/src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGNonTrivialStruct.cpp
367
llvm::Value *
SizeInBytes
=
371
CGF.Builder.CreateInBoundsGEP(CGF.Int8Ty, BC.getPointer(),
SizeInBytes
);
CGExpr.cpp
951
llvm::Value *
SizeInBytes
= EmitLoadOfScalar(AddrOfSize, /*Volatile=*/false,
954
llvm::ConstantInt::get(
SizeInBytes
->getType(), EltSize);
955
return Builder.CreateUDiv(
SizeInBytes
, SizeOfElement);
CGOpenMPRuntime.cpp
4983
CharUnits
SizeInBytes
=
4985
llvm::Value *RecSize = CGM.getSize(
SizeInBytes
);
/src/external/apache2/llvm/dist/llvm/lib/Transforms/Instrumentation/
HWAddressSanitizer.cpp
888
uint64_t
SizeInBytes
= AI.getModule()->getDataLayout().getTypeAllocSize(Ty);
889
return
SizeInBytes
* ArraySize;
1363
uint64_t
SizeInBytes
=
1365
uint64_t NewSize = alignTo(
SizeInBytes
, Mapping.getObjectAlignment());
1366
if (
SizeInBytes
!= NewSize) {
1369
std::vector<uint8_t> Init(NewSize -
SizeInBytes
, 0);
1402
for (uint64_t DescriptorPos = 0; DescriptorPos <
SizeInBytes
;
1414
uint32_t Size = std::min(
SizeInBytes
- DescriptorPos, MaxDescriptorSize);
AddressSanitizer.cpp
635
uint64_t
SizeInBytes
=
637
return
SizeInBytes
* ArraySize;
838
uint64_t getRedzoneSizeForGlobal(uint64_t
SizeInBytes
) const;
2414
const uint64_t
SizeInBytes
= DL.getTypeAllocSize(Ty);
2415
const uint64_t RightRedzoneSize = getRedzoneSizeForGlobal(
SizeInBytes
);
2503
ConstantInt::get(IntptrTy,
SizeInBytes
),
2504
ConstantInt::get(IntptrTy,
SizeInBytes
+ RightRedzoneSize),
2551
ModuleAddressSanitizer::getRedzoneSizeForGlobal(uint64_t
SizeInBytes
) const {
2556
if (
SizeInBytes
<= MinRZ / 2) {
2558
// at least 32 bytes, optimize when
SizeInBytes
is less than or equal t
[
all
...]
/src/external/apache2/llvm/dist/llvm/lib/Analysis/
ValueTracking.cpp
4113
uint64_t
SizeInBytes
= DL.getTypeStoreSize(GVTy).getFixedSize();
4114
uint64_t Length =
SizeInBytes
/ (ElementSize / 8);
/src/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
CodeViewDebug.cpp
1785
translatePtrToMemberRep(unsigned
SizeInBytes
, bool IsPMF, unsigned Flags) {
1786
//
SizeInBytes
being zero generally implies that the member pointer type was
1792
return
SizeInBytes
== 0 ? PointerToMemberRepresentation::Unknown
1804
return
SizeInBytes
== 0 ? PointerToMemberRepresentation::Unknown
1830
uint8_t
SizeInBytes
= Ty->getSizeInBits() / 8;
1832
ClassTI, translatePtrToMemberRep(
SizeInBytes
, IsPMF, Ty->getFlags()));
1833
PointerRecord PR(PointeeTI, PK, PM, PO,
SizeInBytes
, MPI);
2322
uint64_t
SizeInBytes
= Ty->getSizeInBits() / 8;
2325
SizeInBytes
, FullName, Ty->getIdentifier());
2361
uint64_t
SizeInBytes
= Ty->getSizeInBits() / 8
[
all
...]
Completed in 79 milliseconds
Indexes created Tue Feb 24 08:35:24 UTC 2026