Home
last modified time | relevance | path

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

/NextBSD/contrib/llvm/tools/lldb/source/DataFormatters/
HDStringPrinter.cpp341 uint32_t sourceSize, in DumpUTFBufferToStream() argument
351 if (sourceSize == 0) in DumpUTFBufferToStream()
354 sourceSize = bufferSPSize/(origin_encoding / 4); in DumpUTFBufferToStream()
358 const SourceDataType *data_end_ptr = data_ptr + sourceSize; in DumpUTFBufferToStream()
551 uint32_t sourceSize = options.GetSourceSize(); in ReadUTFBufferAndDumpToStream() local
554 if (!sourceSize) in ReadUTFBufferAndDumpToStream()
556 sourceSize = process_sp->GetTarget().GetMaximumSizeOfStringSummary(); in ReadUTFBufferAndDumpToStream()
560 sourceSize = std::min(sourceSize,process_sp->GetTarget().GetMaximumSizeOfStringSummary()); in ReadUTFBufferAndDumpToStream()
562 const int bufferSPSize = sourceSize * type_width; in ReadUTFBufferAndDumpToStream()
585 …a, *options.GetStream(), options.GetPrefixToken(), options.GetQuote(), sourceSize, options.GetEsca… in ReadUTFBufferAndDumpToStream()