Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/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()
/freebsd-14.2/contrib/llvm-project/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()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/ABI/RISCV/
H A DABISysV_riscv.cpp145 static inline size_t AugmentArgSize(bool is_rv64, size_t size_in_bytes) { in AugmentArgSize() argument
147 return llvm::alignTo(size_in_bytes, word_size); in AugmentArgSize()
368 uint8_t size_in_bytes, bool is_signed) { in SetSizedInteger() argument
369 switch (size_in_bytes) { in SetSizedInteger()
394 uint8_t size_in_bytes) { in SetSizedFloat() argument
395 switch (size_in_bytes) { in SetSizedFloat()
/freebsd-14.2/contrib/llvm-project/lldb/source/Core/
H A DDynamicLoader.cpp330 int size_in_bytes) { in ReadUnsignedIntWithSizeInBytes() argument
333 m_process->ReadUnsignedIntegerFromMemory(addr, size_in_bytes, 0, error); in ReadUnsignedIntWithSizeInBytes()
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Target/
H A DDynamicLoader.h372 int64_t ReadUnsignedIntWithSizeInBytes(lldb::addr_t addr, int size_in_bytes);
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/ObjectFile/Minidump/
H A DMinidumpFileBuilder.cpp147 llvm::support::ulittle32_t to_write_size(to_write_utf16.size_in_bytes() - 2); in WriteString()
150 buffer->AppendData(to_write_utf16.data(), to_write_utf16.size_in_bytes()); in WriteString()
/freebsd-14.2/sys/dev/qlnx/qlnxe/
H A Decore_rdma.c60 u32 size_in_bytes; in ecore_rdma_bmap_alloc() local
71 size_in_bytes = sizeof(unsigned long) * in ecore_rdma_bmap_alloc()
74 bmap->bitmap = OSAL_ZALLOC(p_hwfn->p_dev, GFP_KERNEL, size_in_bytes); in ecore_rdma_bmap_alloc()
H A Decore_dbg_fw_funcs.c4566 u32 size_in_bytes, in ecore_mcp_trace_read_meta() argument
4574 status = ecore_nvram_read(p_hwfn, p_ptt, nvram_offset_in_bytes, size_in_bytes, buf); in ecore_mcp_trace_read_meta()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ADT/
H A DSmallVector.h291 size_type size_in_bytes() const { return size() * sizeof(T); } in size_in_bytes() function
/freebsd-14.2/contrib/llvm-project/clang/lib/CodeGen/
H A DCGObjCMac.cpp2719 CharUnits size_in_bytes = in getBitmapBlockLayout() local
2725 size_in_bytes += gap; in getBitmapBlockLayout()
2729 residue_in_bytes = size_in_bytes % WordSizeInBytes; in getBitmapBlockLayout()
2730 size_in_bytes -= residue_in_bytes; in getBitmapBlockLayout()
2734 unsigned size_in_words = size_in_bytes.getQuantity() / WordSizeInBytes; in getBitmapBlockLayout()