OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:AllocSize
(Results
1 - 12
of
12
) sorted by relevancy
/src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
StringMapEntry.h
49
size_t
AllocSize
= EntrySize + KeyLength + 1;
50
void *Allocation = Allocator.Allocate(
AllocSize
, EntryAlign);
138
size_t
AllocSize
= sizeof(StringMapEntry) + this->getKeyLength() + 1;
140
allocator.Deallocate(static_cast<void *>(this),
AllocSize
,
/src/external/apache2/llvm/dist/llvm/lib/IR/
Mangler.cpp
103
uint64_t
AllocSize
= A.hasPassPointeeByValueCopyAttr() ?
108
ArgWords += alignTo(
AllocSize
, PtrSize);
/src/external/apache2/llvm/dist/clang/lib/AST/Interp/
Descriptor.h
60
const InterpSize
AllocSize
;
134
unsigned getAllocSize() const { return
AllocSize
; }
/src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
AMDGPULowerKernelArguments.cpp
99
uint64_t
AllocSize
= DL.getTypeAllocSize(ArgTy);
102
ExplicitArgOffset = alignTo(ExplicitArgOffset, ABITypeAlign) +
AllocSize
;
AMDGPUCallLowering.cpp
514
unsigned
AllocSize
= DL.getTypeAllocSize(ArgTy);
515
if (
AllocSize
== 0)
523
ExplicitArgOffset = alignTo(ExplicitArgOffset, ABIAlign) +
AllocSize
;
AMDGPUPromoteAlloca.cpp
780
uint64_t
AllocSize
= DL.getTypeAllocSize(GV->getValueType());
781
AllocatedSizes.emplace_back(
AllocSize
, Alignment);
900
uint32_t
AllocSize
= WorkGroupSize * DL.getTypeAllocSize(AllocaTy);
901
NewSize +=
AllocSize
;
904
LLVM_DEBUG(dbgs() << " " <<
AllocSize
AMDGPURegisterBankInfo.cpp
1258
Register
AllocSize
= MI.getOperand(1).getReg();
1261
const RegisterBank *SizeBank = getRegBank(
AllocSize
, MRI, *TRI);
1276
auto ScaledSize = B.buildShl(IntPtrTy,
AllocSize
, WaveSize);
AMDGPUISelLowering.cpp
1032
uint64_t
AllocSize
= DL.getTypeAllocSize(MemArgTy);
1035
ExplicitArgOffset = alignTo(ExplicitArgOffset, Alignment) +
AllocSize
;
/src/external/apache2/llvm/dist/llvm/lib/Demangle/
ItaniumDemangle.cpp
252
static constexpr size_t
AllocSize
= 4096;
253
static constexpr size_t UsableAllocSize =
AllocSize
- sizeof(BlockMeta);
255
alignas(long double) char InitialBuffer[
AllocSize
];
259
char* NewMeta = static_cast<char *>(std::malloc(
AllocSize
));
/src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGExprCXX.cpp
1409
ValueTy
AllocSize
;
1423
ValueTy
AllocSize
, bool PassAlignmentToPlacementDelete,
1427
OperatorDelete(OperatorDelete), Ptr(Ptr),
AllocSize
(
AllocSize
),
1460
DeleteArgs.add(Traits::get(CGF,
AllocSize
),
1489
llvm::Value *
AllocSize
,
1511
AllocSize
,
1526
DominatingValue<RValue>::save(CGF, RValue::get(
AllocSize
));
1575
llvm::Value *
allocSize
=
1601
allocatorArgs.add(RValue::get(
allocSize
), getContext().getSizeType())
[
all
...]
/src/external/apache2/llvm/dist/llvm/lib/Target/NVPTX/
NVPTXISelLowering.cpp
1453
unsigned
AllocSize
= DL.getTypeAllocSize(Ty);
1461
DAG.getConstant(
AllocSize
, dl, MVT::i32), InFlag};
1467
if ((VT.isInteger() || VT.isFloatingPoint()) &&
AllocSize
< 4) {
1471
AllocSize
= 4;
1475
DAG.getConstant(
AllocSize
* 8, dl, MVT::i32),
/src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGBuilder.cpp
3993
SDValue
AllocSize
= getValue(I.getArraySize());
3996
if (
AllocSize
.getValueType() != IntPtr)
3997
AllocSize
= DAG.getZExtOrTrunc(
AllocSize
, dl, IntPtr);
3999
AllocSize
= DAG.getNode(ISD::MUL, dl, IntPtr,
4000
AllocSize
,
4016
AllocSize
= DAG.getNode(ISD::ADD, dl,
AllocSize
.getValueType(),
AllocSize
,
4020
AllocSize
= DAG.getNode(ISD::AND, dl, AllocSize.getValueType(), AllocSize
[
all
...]
Completed in 104 milliseconds
Indexes created Sun Jun 21 00:25:28 UTC 2026