Searched refs:remaining (Results 1 - 5 of 5) sorted by relevance

/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.cc297 size_t remaining = gap_end - current_offset; local
298 if (remaining >= sizeof(uint32_t) && IsAligned<4>(current_offset)) {
301 } else if (remaining >= sizeof(uint16_t) && IsAligned<2>(current_offset)) {
6547 // The other entries are uninitialized. We will fill in the remaining entries in this function. The
/art/tools/ahat/src/
H A DHeapTable.java115 // Print a summary of the remaining entries if there are any.
116 List<T> remaining = selector.remaining();
117 if (!remaining.isEmpty()) {
125 for (T elem : remaining) {
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/cmdline/
H A Dtoken_range.h315 size_t remaining = string.size() - string_idx;
316 if (remaining > 0) {
318 // Some characters were still remaining in the string,
324 // If some characters are remaining, the rest must be a wildcard.
325 string_idx += remaining;

Completed in 175 milliseconds