Home
last modified time | relevance | path

Searched refs:size_in_bytes (Results 1 – 10 of 10) 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()
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/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/contrib/llvm-project/lldb/source/Plugins/ABI/RISCV/
H A DABISysV_riscv.cpp146 static inline size_t AugmentArgSize(bool is_rv64, size_t size_in_bytes) { in AugmentArgSize() argument
148 return llvm::alignTo(size_in_bytes, word_size); in AugmentArgSize()
369 uint8_t size_in_bytes, bool is_signed) { in SetSizedInteger() argument
370 switch (size_in_bytes) { in SetSizedInteger()
395 uint8_t size_in_bytes) { in SetSizedFloat() argument
396 switch (size_in_bytes) { in SetSizedFloat()
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DDynamicLoader.cpp348 int size_in_bytes) { in ReadUnsignedIntWithSizeInBytes() argument
351 m_process->ReadUnsignedIntegerFromMemory(addr, size_in_bytes, 0, error); in ReadUnsignedIntWithSizeInBytes()
/freebsd/contrib/llvm-project/lldb/include/lldb/Target/
H A DDynamicLoader.h380 int64_t ReadUnsignedIntWithSizeInBytes(lldb::addr_t addr, int size_in_bytes);
/freebsd/contrib/llvm-project/lldb/source/Plugins/ObjectFile/Minidump/
H A DMinidumpFileBuilder.cpp231 llvm::support::ulittle32_t to_write_size(to_write_utf16.size_in_bytes() - 2); in WriteString()
234 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.h292 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.cpp2726 CharUnits size_in_bytes = in getBitmapBlockLayout() local
2732 size_in_bytes += gap; in getBitmapBlockLayout()
2736 residue_in_bytes = size_in_bytes % WordSizeInBytes; in getBitmapBlockLayout()
2737 size_in_bytes -= residue_in_bytes; in getBitmapBlockLayout()
2741 unsigned size_in_words = size_in_bytes.getQuantity() / WordSizeInBytes; in getBitmapBlockLayout()