Home
last modified time | relevance | path

Searched refs:remaining (Results 1 – 9 of 9) sorted by relevance

/art/runtime/
Dindenter.h74 size_t remaining = count_; in Write() local
75 while (remaining != 0u) { in Write()
76 size_t to_write = std::min(remaining, sizeof(text_)); in Write()
78 remaining -= to_write; in Write()
Dvdex_file.cc263 ArrayRef<const uint8_t> remaining = quickening_info.SubArray(quickening_offset - 1); in GetQuickeningInfoAt() local
264 return remaining.SubArray(0u, QuickenInfoTable::SizeInBytes(remaining)); in GetQuickeningInfoAt()
Dclass_linker.cc313 size_t remaining = gap_end - current_offset; in AddFieldGap() local
314 if (remaining >= sizeof(uint32_t) && IsAligned<4>(current_offset)) { in AddFieldGap()
317 } else if (remaining >= sizeof(uint16_t) && IsAligned<2>(current_offset)) { in AddFieldGap()
/art/tools/ahat/src/main/com/android/ahat/
DHeapTable.java106 List<T> remaining = selector.remaining(); in render() local
107 if (!remaining.isEmpty()) { in render()
115 for (T elem : remaining) { in render()
DSubsetSelector.java59 public List<T> remaining() { in remaining() method in SubsetSelector
/art/cmdline/
Dtoken_range.h315 size_t remaining = string.size() - string_idx; in MatchSubstrings() local
316 if (remaining > 0) { in MatchSubstrings()
325 string_idx += remaining; in MatchSubstrings()
/art/test/
DAndroid.bp300 // This includes the remaining test functions. We should try to refactor things to
/art/runtime/arch/arm/
Dquick_entrypoints_arm.S666 ldm r0, {r3-r13} @ load remaining gprs from argument gprs_
/art/runtime/arch/mips/
Dquick_entrypoints_mips.S1845 subu $a3, $a2, $v0 # Compute the remaining buffer size.