Lines Matching refs:src_pos
407 const uint16_t *src_pos = src; in GetU16() local
409 *dst_pos = ReadSwapInt16(src_pos); in GetU16()
411 ++src_pos; in GetU16()
456 const uint32_t *src_pos = src; in GetU32() local
458 *dst_pos = ReadSwapInt32(src_pos); in GetU32()
460 ++src_pos; in GetU32()
504 const uint64_t *src_pos = src; in GetU64() local
506 *dst_pos = ReadSwapInt64(src_pos); in GetU64()
508 ++src_pos; in GetU64()
887 const uint8_t *src_pos = src; in Skip_LEB128() local
888 while ((src_pos < end) && (*src_pos++ & 0x80)) in Skip_LEB128()
890 *offset_ptr += src_pos - src; in Skip_LEB128()