Home
last modified time | relevance | path

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

/openbsd-src/gnu/usr.bin/perl/t/
H A Dcharset_tools.pl118 my $expected_bytes = $ord < 0x80
134 if ($byte_count != $expected_bytes) {
136 $ord, $expected_bytes, $byte_count;
/openbsd-src/gnu/llvm/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationClient.cpp665 size_t expected_bytes = response.GetBytesLeft() / 2; in ReadMemoryTags() local
666 WritableDataBufferSP buffer_sp(new DataBufferHeap(expected_bytes, 0)); in ReadMemoryTags()
670 if (response.GetBytesLeft() || (expected_bytes != got_bytes)) { in ReadMemoryTags()