Searched defs:remaining (Results 1 - 3 of 3) sorted by relevance

/art/tools/ahat/src/
H A DSubsetSelector.java58 // Return the list of remaining elements not included in the selected subset.
59 public List<T> remaining() { method in class:SubsetSelector
/art/runtime/
H A Dindenter.h72 size_t remaining = count_; local
73 while (remaining != 0u) {
74 size_t to_write = std::min(remaining, sizeof(text_));
76 remaining -= to_write;
H A Dclass_linker.cc254 size_t remaining = gap_end - current_offset; local
255 if (remaining >= sizeof(uint32_t) && IsAligned<4>(current_offset)) {
258 } else if (remaining >= sizeof(uint16_t) && IsAligned<2>(current_offset)) {
6372 // The other entries are uninitialized. We will fill in the remaining entries in this function. The

Completed in 84 milliseconds