/freebsd/sys/contrib/libsodium/test/default/ |
H A D | box_easy2.c | 27 size_t m_size; in main() local 32 m2_size = m_size = 7U + randombytes_uniform(1000); in main() 33 c_size = crypto_box_MACBYTES + m_size; in main() 34 m = (unsigned char *) sodium_malloc(m_size); in main() 47 mlen = (size_t) randombytes_uniform((uint32_t) m_size) + 1U; in main()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/ |
H A D | LibCxxVariant.cpp | 208 llvm::Expected<uint32_t> CalculateNumChildren() override { return m_size; } in CalculateNumChildren() 212 size_t m_size = 0; member in __anon38861bea0211::VariantFrontEnd 217 m_size = 0; in Update() 231 m_size = 1; in Update() 237 if (idx >= m_size) in GetChildAtIndex()
|
H A D | LibCxxSliceArray.cpp | 73 size_t m_size = 0; member in lldb_private::formatters::LibcxxStdSliceArraySyntheticFrontEnd 101 return m_size; in CalculateNumChildren() 142 m_size = size->GetValueAsUnsigned(0); in Update()
|
/freebsd/contrib/llvm-project/lldb/source/Breakpoint/ |
H A D | WatchpointResource.cpp | 21 : m_id(GetNextID()), m_addr(addr), m_size(size), in WatchpointResource() 31 size_t WatchpointResource::GetByteSize() const { return m_size; } in GetByteSize() 47 if (addr >= m_addr && addr < m_addr + m_size) in Contains() 117 s->Printf("addr = 0x%8.8" PRIx64 " size = %zu", m_addr, m_size); in Dump()
|
/freebsd/contrib/llvm-project/lldb/source/Expression/ |
H A D | IRMemoryMap.cpp | 91 size_t alloc_size = back->second.m_size; in FindSpace() 180 size_t alloc_size = back->second.m_size; in FindSpace() 203 if (iter->first <= addr && iter->first + iter->second.m_size >= addr + size) in FindAllocation() 224 iter->second.m_size)) in IntersectsAllocation() 231 iter->second.m_size)) in IntersectsAllocation() 300 m_size(size), m_policy(policy), m_leak(false), m_permissions(permissions), in Allocation() 509 iter->second.m_process_start + iter->second.m_size); in Free() 522 if (address > (al.m_process_start + al.m_size)) { in GetAllocSize() 529 size = al.m_size - dif; in GetAllocSize() 533 size = al.m_size; in GetAllocSize() [all …]
|
H A D | IRExecutionUnit.cpp | 476 DataBufferHeap my_buffer(record.m_size, 0); in GetRunnableInfo() 479 record.m_size, err); in GetRunnableInfo() 493 record.m_size, lldb::eByteOrderBig, 8); in GetRunnableInfo() 494 my_extractor.PutToLog(log, 0, record.m_size, record.m_host_address, 16, in GetRunnableInfo() 1000 local_address < record.m_host_address + record.m_size) { in GetRemoteAddressForLocal() 1012 (uint64_t)record.m_host_address + (uint64_t)record.m_size, ret, in GetRemoteAddressForLocal() 1014 record.m_process_address + record.m_size); in GetRemoteAddressForLocal() 1027 local_address < record.m_host_address + record.m_size) { in GetRemoteRangeForLocal() 1031 return AddrRange(record.m_process_address, record.m_size); in GetRemoteRangeForLocal() 1072 Malloc(record.m_size, record.m_alignment, record.m_permissions, in CommitOneAllocation() [all …]
|
H A D | Materializer.cpp | 67 m_size = g_default_var_byte_size; in EntityPersistentVariable() 362 DataBufferHeap data(m_size, 0); in DumpToLog() 364 map.ReadMemory(data.GetBytes(), load_addr, m_size, err); in DumpToLog() 436 m_size = g_default_var_byte_size; in EntityVariableBase() 697 DataBufferHeap data(m_size, 0); in DumpToLog() 699 map.ReadMemory(data.GetBytes(), load_addr, m_size, err); in DumpToLog() 919 m_size = g_default_var_byte_size; in EntityResultVariable() 1118 DataBufferHeap data(m_size, 0); in DumpToLog() 1120 map.ReadMemory(data.GetBytes(), load_addr, m_size, err); in DumpToLog() 1204 m_size = g_default_var_byte_size; in EntitySymbol() [all …]
|
/freebsd/contrib/atf/atf-c/detail/ |
H A D | list.c | 216 l->m_size = 0; in atf_list_init() 240 INV(freed == l->m_size + 2); in atf_list_fini() 315 return l->m_size; in atf_list_size() 362 l->m_size++; in atf_list_append() 387 l->m_size += src->m_size; in atf_list_append_list()
|
H A D | list.h | 79 size_t m_size; member
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/ObjectFile/Placeholder/ |
H A D | ObjectFilePlaceholder.cpp | 32 m_base(base), m_size(size) { in LLDB_PLUGIN_DEFINE() 42 m_size, /*file_offset*/ 0, /*file_size*/ 0, in CreateSections() 69 GetFileSpec(), m_base, m_base + m_size); in Dump()
|
H A D | ObjectFilePlaceholder.h | 71 lldb::addr_t m_size; variable
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Utility/ |
H A D | DataBuffer.h | 129 : m_bytes(bytes), m_size(size) {} in DataBufferUnowned() 132 lldb::offset_t GetByteSize() const override { return m_size; } in GetBytesImpl() 146 lldb::offset_t m_size; 147 lldb::offset_t m_size; global() variable
|
/freebsd/usr.sbin/ppp/ |
H A D | mbuf.c | 154 bp->m_size = size - sizeof *bp; in m_get() 159 MemMap[type].octets += bp->m_size; in m_get() 172 MemMap[bp->m_type].octets -= bp->m_size; in m_free() 175 mb = M_BUCKET(bp->m_size); in m_free() 415 MemMap[bp->m_type].octets -= bp->m_size; in m_settype() 418 MemMap[type].octets += bp->m_size; in m_settype() 430 if (m->m_size - m->m_len >= sz) { in m_append()
|
/freebsd/usr.bin/mail/ |
H A D | fio.c | 87 this.m_size = 0; in setptr() 119 this.m_size = 0; in setptr() 146 this.m_size += count; in setptr() 234 message[msgCount].m_size = 0; in makemessage()
|
H A D | edit.c | 98 fp = run_editor(setinput(mp), mp->m_size, type, readonly); in edit1() 104 mp->m_size = (long)fsize(fp); in edit1()
|
/freebsd/contrib/llvm-project/lldb/source/Utility/ |
H A D | Log.cpp | 412 : m_messages(std::make_unique<std::string[]>(size)), m_size(size) {} in RotatingLogHandler() 422 size_t RotatingLogHandler::NormalizeIndex(size_t i) const { return i % m_size; } in NormalizeIndex() 425 return m_total_count < m_size ? m_total_count : m_size; in GetNumMessages() 429 return m_total_count < m_size ? 0 : m_next_index; in GetFirstMessageIndex()
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Target/ |
H A D | RegisterFlags.h | 167 unsigned GetSize() const { return m_size; } in GetSize() 192 const unsigned m_size; variable
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Expression/ |
H A D | Materializer.h | 132 uint32_t GetSize() { return m_size; } in GetSize() 140 uint32_t m_size = 0; variable
|
H A D | IRExecutionUnit.h | 343 size_t m_size; member 351 m_permissions(permissions), m_sect_type(sect_type), m_size(size), in AllocationRecord()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/TraceExporter/common/ |
H A D | TraceHTR.h | 105 : m_offset(offset), m_size(size), m_metadata(metadata) {} in HTRBlock() 131 size_t m_size; variable
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Host/common/ |
H A D | NativeBreakpointList.h | 20 size_t m_size; member
|
H A D | NativeWatchpointList.h | 20 size_t m_size; member
|
/freebsd/contrib/llvm-project/lldb/source/Target/ |
H A D | RegisterFlags.cpp | 124 unsigned register_msb = (m_size * 8) - 1; in SetFields() 151 : m_id(std::move(id)), m_size(size) { in RegisterFlags() 156 LLDB_LOG(log, "ID: \"{0}\" Size: {1}", m_id.c_str(), m_size); in DumpToLog()
|
/freebsd/contrib/llvm-project/lldb/source/DataFormatters/ |
H A D | StringPrinter.cpp | 38 DecodedCharBuffer(const uint8_t *bytes, size_t size) : m_size(size) { in DecodedCharBuffer() 49 size_t GetSize() const { return m_size; } in GetSize() 54 size_t m_size = 0; member in DecodedCharBuffer
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Breakpoint/ |
H A D | WatchpointResource.h | 144 size_t m_size; variable
|