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