Home
last modified time | relevance | path

Searched refs:bytes_used (Results 1 – 3 of 3) sorted by relevance

/llvm-project-15.0.7/openmp/libomptarget/plugins/amdgpu/impl/
H A Dmsgpack.h133 const uint64_t bytes_used = bytes_used_fixed(ty); in handle_msgpack_given_type() local
134 if (available < bytes_used) { in handle_msgpack_given_type()
137 const uint64_t available_post_header = available - bytes_used; in handle_msgpack_given_type()
147 return start + bytes_used; in handle_msgpack_given_type()
156 return start + bytes_used; in handle_msgpack_given_type()
165 return start + bytes_used; in handle_msgpack_given_type()
175 f.cb_string(N, start + bytes_used); in handle_msgpack_given_type()
176 return start + bytes_used + N; in handle_msgpack_given_type()
183 return f.cb_array(N, {start + bytes_used, end}); in handle_msgpack_given_type()
189 return f.cb_map(N, {start + bytes_used, end}); in handle_msgpack_given_type()
[all …]
/llvm-project-15.0.7/lldb/include/lldb/Utility/
H A DConstString.h401 size_t GetBytesUsed() const { return bytes_used; } in GetBytesUsed()
402 size_t GetBytesUnused() const { return bytes_total - bytes_used; } in GetBytesUnused()
404 size_t bytes_used = 0; member
/llvm-project-15.0.7/lldb/source/Utility/
H A DConstString.cpp168 stats.bytes_used += alloc.getBytesAllocated(); in GetMemoryStats()