Home
last modified time | relevance | path

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

/freebsd/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()
385 uint8_t size_in_bytes, bool is_signed) { in SetSizedInteger() argument
386 switch (size_in_bytes) { in SetSizedInteger()
411 uint8_t size_in_bytes) { in SetSizedFloat() argument
412 switch (size_in_bytes) { in SetSizedFloat()
429 uint8_t size_in_bytes) { in ReadRawValue() argument
437 if (sizeof(uint64_t) == size_in_bytes) in ReadRawValue()
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_allocator_dlsym.h36 static void *Allocate(uptr size_in_bytes, uptr align = kWordSize) {
37 void *ptr = InternalAlloc(size_in_bytes, nullptr, align);
/freebsd/contrib/llvm-project/lldb/source/Plugins/ABI/RISCV/
H A DABISysV_riscv.cpp153 static inline size_t AugmentArgSize(bool is_rv64, size_t size_in_bytes) { in AugmentArgSize() argument
155 return llvm::alignTo(size_in_bytes, word_size); in AugmentArgSize()
447 uint8_t size_in_bytes, bool is_signed) { in SetSizedInteger() argument
448 switch (size_in_bytes) { in SetSizedInteger()
473 uint8_t size_in_bytes) { in SetSizedFloat() argument
474 switch (size_in_bytes) { in SetSizedFloat()
/freebsd/contrib/llvm-project/lldb/source/Plugins/ABI/LoongArch/
H A DABISysV_loongarch.cpp335 uint8_t size_in_bytes, bool is_signed) { in SetSizedInteger() argument
336 switch (size_in_bytes) { in SetSizedInteger()
361 uint8_t size_in_bytes) { in SetSizedFloat() argument
362 switch (size_in_bytes) { in SetSizedFloat()
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DDynamicLoader.cpp365 int size_in_bytes) { in ReadUnsignedIntWithSizeInBytes() argument
368 m_process->ReadUnsignedIntegerFromMemory(addr, size_in_bytes, 0, error); in ReadUnsignedIntWithSizeInBytes()
/freebsd/contrib/llvm-project/lldb/include/lldb/Target/
H A DDynamicLoader.h392 int64_t ReadUnsignedIntWithSizeInBytes(lldb::addr_t addr, int size_in_bytes);
/freebsd/contrib/llvm-project/lldb/source/Plugins/ObjectFile/Minidump/
H A DMinidumpFileBuilder.cpp242 llvm::support::ulittle32_t to_write_size(to_write_utf16.size_in_bytes() - 2); in WriteString()
245 buffer->AppendData(to_write_utf16.data(), to_write_utf16.size_in_bytes()); in WriteString()
/freebsd/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/contrib/llvm-project/llvm/include/llvm/ADT/
H A DSmallVector.h279 size_type size_in_bytes() const { return size() * sizeof(T); } in size_in_bytes() function
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGObjCMac.cpp2638 CharUnits size_in_bytes = in getBitmapBlockLayout() local
2644 size_in_bytes += gap; in getBitmapBlockLayout()
2648 residue_in_bytes = size_in_bytes % WordSizeInBytes; in getBitmapBlockLayout()
2649 size_in_bytes -= residue_in_bytes; in getBitmapBlockLayout()
2653 unsigned size_in_words = size_in_bytes.getQuantity() / WordSizeInBytes; in getBitmapBlockLayout()