Home
last modified time | relevance | path

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

/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/ABI/ARC/
HDABISysV_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-13-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
HDsanitizer_allocator_dlsym.h34 static void *Allocate(uptr size_in_bytes) { in Allocate()
35 void *ptr = InternalAlloc(size_in_bytes, nullptr, kWordSize); in Allocate()
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/ABI/RISCV/
HDABISysV_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-13-stable/sys/contrib/octeon-sdk/
HDcvmx-log.h115 void cvmx_log_structure(const char *type, void *data, int size_in_bytes) CVMX_LOG_DISABLE_PC_LOGGIN…
HDcvmx-log.c367 void cvmx_log_structure(const char *type, void *data, int size_in_bytes) in cvmx_log_structure() argument
369 uint64_t size_in_dwords = (size_in_bytes + 7) >> 3; in cvmx_log_structure()
/freebsd-13-stable/contrib/llvm-project/lldb/source/Core/
HDDynamicLoader.cpp348 int size_in_bytes) { in ReadUnsignedIntWithSizeInBytes() argument
351 m_process->ReadUnsignedIntegerFromMemory(addr, size_in_bytes, 0, error); in ReadUnsignedIntWithSizeInBytes()
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Target/
HDDynamicLoader.h380 int64_t ReadUnsignedIntWithSizeInBytes(lldb::addr_t addr, int size_in_bytes);
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/ObjectFile/Minidump/
HDMinidumpFileBuilder.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-13-stable/sys/dev/qlnx/qlnxe/
HDecore_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()
HDecore_dbg_fw_funcs.c4563 u32 size_in_bytes, in ecore_mcp_trace_read_meta() argument
4571 status = ecore_nvram_read(p_hwfn, p_ptt, nvram_offset_in_bytes, size_in_bytes, buf); in ecore_mcp_trace_read_meta()
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/ADT/
HDSmallVector.h292 size_type size_in_bytes() const { return size() * sizeof(T); } in size_in_bytes() function
/freebsd-13-stable/contrib/llvm-project/clang/lib/CodeGen/
HDCGObjCMac.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()