Searched refs:RoundedSize (Results 1 – 5 of 5) sorted by relevance
/freebsd/contrib/llvm-project/compiler-rt/lib/xray/ |
H A D | xray_allocator.h | 40 uptr RoundedSize = RoundUpTo(sizeof(T), GetPageSizeCached()); in allocate() local 43 zx_status_t Status = _zx_vmo_create(RoundedSize, 0, &Vmo); in allocate() 63 uptr B = internal_mmap(NULL, RoundedSize, PROT_READ | PROT_WRITE, in allocate() 70 RoundedSize, B); in allocate() 80 uptr RoundedSize = RoundUpTo(sizeof(T), GetPageSizeCached()); in deallocate() local 83 RoundedSize); in deallocate() 85 internal_munmap(B, RoundedSize); in deallocate() 91 uptr RoundedSize = RoundUpTo(S * sizeof(T), GetPageSizeCached()); in allocateBuffer() local 94 zx_status_t Status = _zx_vmo_create(RoundedSize, 0, &Vmo); in allocateBuffer() 112 uptr B = internal_mmap(NULL, RoundedSize, PROT_READ | PROT_WRITE, in allocateBuffer() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
H A D | SIFrameLowering.cpp | 1115 uint32_t RoundedSize = NumBytes; in emitPrologue() local 1159 RoundedSize += Alignment; in emitPrologue() 1201 if (HasFP && RoundedSize != 0) { in emitPrologue() 1204 .addImm(RoundedSize * getScratchScaleFactor(ST)) in emitPrologue() 1252 uint32_t RoundedSize = FuncInfo->isStackRealigned() in emitEpilogue() local 1283 if (RoundedSize != 0 && hasFP(MF)) { in emitEpilogue() 1286 .addImm(-static_cast<int64_t>(RoundedSize * getScratchScaleFactor(ST))) in emitEpilogue()
|
H A D | AMDGPULegalizerInfo.cpp | 558 unsigned RoundedSize = NextPowerOf2(SizeInBits); in shouldWidenLoad() local 559 if (AlignInBits < RoundedSize) in shouldWidenLoad() 566 RoundedSize, AddrSpace, Align(AlignInBits / 8), in shouldWidenLoad() 6571 unsigned RoundedSize = 32 * RoundedElts; in legalizeImageIntrinsic() local 6573 ElementCount::getFixed(RoundedSize / EltSize), EltSize); in legalizeImageIntrinsic() 6574 TFETy = LLT::fixed_vector(RoundedSize / 32 + 1, S32); in legalizeImageIntrinsic()
|
/freebsd/contrib/llvm-project/compiler-rt/lib/scudo/standalone/ |
H A D | secondary.h | 628 uptr RoundedSize = in allocate() local 631 RoundedSize += Alignment - PageSize; in allocate() 634 const uptr MapSize = RoundedSize + 2 * PageSize; in allocate()
|
/freebsd/contrib/llvm-project/clang/lib/AST/ |
H A D | RecordLayoutBuilder.cpp | 2170 uint64_t RoundedSize = llvm::alignTo( in FinishLayout() local 2180 if (InferAlignment && External.Size < RoundedSize) { in FinishLayout() 2190 setSize(RoundedSize); in FinishLayout()
|