Lines Matching refs:bytes_left
79 lldb::offset_t bytes_left = byte_size; in GetAPInt() local
83 while (bytes_left > 0) { in GetAPInt()
84 if (bytes_left >= 8) { in GetAPInt()
86 bytes_left -= 8; in GetAPInt()
88 u64 = data.GetMaxU64(offset_ptr, (uint32_t)bytes_left); in GetAPInt()
89 bytes_left = 0; in GetAPInt()
97 while (bytes_left > 0) { in GetAPInt()
98 if (bytes_left >= 8) { in GetAPInt()
102 bytes_left -= 8; in GetAPInt()
104 be_offset -= bytes_left; in GetAPInt()
106 u64 = data.GetMaxU64(&temp_offset, (uint32_t)bytes_left); in GetAPInt()
107 bytes_left = 0; in GetAPInt()