Lines Matching refs:src_pos
406 const uint16_t *src_pos = src; in GetU16() local
408 *dst_pos = ReadSwapInt16(src_pos); in GetU16()
410 ++src_pos; in GetU16()
455 const uint32_t *src_pos = src; in GetU32() local
457 *dst_pos = ReadSwapInt32(src_pos); in GetU32()
459 ++src_pos; in GetU32()
503 const uint64_t *src_pos = src; in GetU64() local
505 *dst_pos = ReadSwapInt64(src_pos); in GetU64()
507 ++src_pos; in GetU64()
886 const uint8_t *src_pos = src; in Skip_LEB128() local
887 while ((src_pos < end) && (*src_pos++ & 0x80)) in Skip_LEB128()
889 *offset_ptr += src_pos - src; in Skip_LEB128()