Home
last modified time | relevance | path

Searched refs:type_width (Results 1 – 4 of 4) sorted by relevance

/NextBSD/contrib/llvm/tools/lldb/source/DataFormatters/
HDStringPrinter.cpp540 const int type_width = sizeof(SourceDataType); in ReadUTFBufferAndDumpToStream() local
541 const int origin_encoding = 8 * type_width ; in ReadUTFBufferAndDumpToStream()
562 const int bufferSPSize = sourceSize * type_width; in ReadUTFBufferAndDumpToStream()
573 … process_sp->ReadStringFromMemory(options.GetLocation(), buffer, bufferSPSize, error, type_width); in ReadUTFBufferAndDumpToStream()
/NextBSD/cddl/contrib/opensolaris/lib/libdtrace/common/
HDdt_consume.c1558 int type_width; member
1607 if (sz > cbdatap->type_width) in dt_print_type_width()
1608 cbdatap->type_width = sz; in dt_print_type_width()
1632 int type_width = roundup(cbdatap->type_width + 1, 4); in dt_print_type_data() local
1637 …dt_printf(cbdatap->dtp, cbdatap->fp, "%*s%-*s%s%-*s = ",cbdatap->indent * 4,"",type_width,buf,cbda… in dt_print_type_data()
1652 cbdata.type_width = 0; in dt_print_type_data()
1841 cbdata.type_width = 0; in dt_print_type()
/NextBSD/contrib/llvm/tools/lldb/source/Target/
HDProcess.cpp2628 size_t type_width) in ReadStringFromMemory() argument
2631 if (dst && max_bytes && type_width && max_bytes >= type_width) in ReadStringFromMemory()
2635 size_t bytes_left = max_bytes - type_width; in ReadStringFromMemory()
2638 assert(sizeof(terminator) >= type_width && in ReadStringFromMemory()
2656 size_t aligned_start = total_bytes_read - total_bytes_read % type_width; in ReadStringFromMemory()
2657 … for (size_t i = aligned_start; i + type_width <= total_bytes_read + bytes_read; i += type_width) in ReadStringFromMemory()
2658 if (::strncmp(&dst[i], terminator, type_width) == 0) in ReadStringFromMemory()
/NextBSD/contrib/llvm/tools/lldb/include/lldb/Target/
HDProcess.h2161 size_t type_width = 1);