Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/Utility/
H A DDataExtractor.cpp404 uint16_t *dst_pos = static_cast<uint16_t *>(void_dst); in GetU16() local
405 uint16_t *dst_end = dst_pos + count; in GetU16()
407 while (dst_pos < dst_end) { in GetU16()
408 *dst_pos = ReadSwapInt16(src_pos); in GetU16()
409 ++dst_pos; in GetU16()
453 uint32_t *dst_pos = static_cast<uint32_t *>(void_dst); in GetU32() local
454 uint32_t *dst_end = dst_pos + count; in GetU32()
456 while (dst_pos < dst_end) { in GetU32()
457 *dst_pos = ReadSwapInt32(src_pos); in GetU32()
458 ++dst_pos; in GetU32()
[all …]
/freebsd/contrib/less/
H A Dcvt.c69 size_t dst_pos = ptr_diff(dst, odst); in cvt_text()
100 chpos[dst_pos++] = (int) src_pos; /*{{type-issue}}*/ in cvt_text()
68 int dst_pos = (int) (dst - odst); cvt_text() local