Home
last modified time | relevance | path

Searched refs:size_in_bytes (Results 1 – 9 of 9) sorted by relevance

/llvm-project-15.0.7/lldb/source/Plugins/ABI/ARC/
H A DABISysV_arc.cpp173 static inline size_t AugmentArgSize(size_t size_in_bytes) { in AugmentArgSize() argument
174 return llvm::alignTo(size_in_bytes, word_size); in AugmentArgSize()
384 uint8_t size_in_bytes, bool is_signed) { in SetSizedInteger() argument
385 switch (size_in_bytes) { in SetSizedInteger()
410 uint8_t size_in_bytes) { in SetSizedFloat() argument
411 switch (size_in_bytes) { in SetSizedFloat()
428 uint8_t size_in_bytes) { in ReadRawValue() argument
436 if (sizeof(uint64_t) == size_in_bytes) in ReadRawValue()
/llvm-project-15.0.7/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_allocator_dlsym.h34 static void *Allocate(uptr size_in_bytes) { in Allocate()
35 void *ptr = InternalAlloc(size_in_bytes, nullptr, kWordSize); in Allocate()
/llvm-project-15.0.7/lldb/source/Core/
H A DDynamicLoader.cpp175 int size_in_bytes) { in ReadUnsignedIntWithSizeInBytes() argument
178 m_process->ReadUnsignedIntegerFromMemory(addr, size_in_bytes, 0, error); in ReadUnsignedIntWithSizeInBytes()
/llvm-project-15.0.7/lldb/include/lldb/Target/
H A DDynamicLoader.h305 int64_t ReadUnsignedIntWithSizeInBytes(lldb::addr_t addr, int size_in_bytes);
/llvm-project-15.0.7/mlir/lib/Conversion/GPUCommon/
H A DGPUOpsLowering.cpp214 size_t formatStringSize = formatString.size_in_bytes(); in matchAndRewrite()
315 LLVM::LLVMArrayType::get(llvmI8, formatString.size_in_bytes()); in matchAndRewrite()
/llvm-project-15.0.7/lldb/source/Plugins/ObjectFile/Minidump/
H A DMinidumpFileBuilder.cpp146 llvm::support::ulittle32_t to_write_size(to_write_utf16.size_in_bytes() - 2); in WriteString()
149 buffer->AppendData(to_write_utf16.data(), to_write_utf16.size_in_bytes()); in WriteString()
/llvm-project-15.0.7/lldb/docs/use/
H A Dintel_pt.rst108 thread trace start all -s <size_in_bytes>
/llvm-project-15.0.7/llvm/include/llvm/ADT/
H A DSmallVector.h260 size_type size_in_bytes() const { return size() * sizeof(T); } in size_in_bytes() function
/llvm-project-15.0.7/clang/lib/CodeGen/
H A DCGObjCMac.cpp2722 CharUnits size_in_bytes = in getBitmapBlockLayout() local
2728 size_in_bytes += gap; in getBitmapBlockLayout()
2732 residue_in_bytes = size_in_bytes % WordSizeInBytes; in getBitmapBlockLayout()
2733 size_in_bytes -= residue_in_bytes; in getBitmapBlockLayout()
2737 unsigned size_in_words = size_in_bytes.getQuantity() / WordSizeInBytes; in getBitmapBlockLayout()