Searched refs:current_start (Results 1 – 10 of 10) sorted by relevance
/external/icing/icing/absl_ports/ |
D | str_join.cc | 25 size_t current_start = 0; in StrSplit() local 29 text.substr(current_start, current_end - current_start)); in StrSplit() 30 current_start = current_end + sep.length(); in StrSplit() 31 separator_position = text.find(sep, current_start); in StrSplit() 35 substrings.push_back(text.substr(current_start, current_end - current_start)); in StrSplit()
|
/external/rust/android-crates-io/crates/buddy_system_allocator/src/ |
D | frame.rs | 56 let mut current_start = start; in add_frame() localVariable 58 while current_start < end { in add_frame() 59 let lowbit = if current_start > 0 { in add_frame() 60 current_start & (!current_start + 1) in add_frame() 65 min(lowbit, prev_power_of_two(end - current_start)), in add_frame() 70 self.free_list[size.trailing_zeros() as usize].insert(current_start); in add_frame() 71 current_start += size; in add_frame()
|
D | lib.rs | 87 let mut current_start = start; in add_to_heap() localVariable 89 while current_start + size_of::<usize>() <= end { in add_to_heap() 90 let lowbit = current_start & (!current_start + 1); in add_to_heap() 91 let mut size = min(lowbit, prev_power_of_two(end - current_start)); in add_to_heap() 102 self.free_list[order].push(current_start as *mut usize); in add_to_heap() 103 current_start += size; in add_to_heap()
|
/external/cronet/stable/third_party/rust/chromium_crates_io/vendor/png-0.17.14/src/decoder/ |
D | mod.rs | 212 current_start: 0, in read_info() 372 current_start: usize, field 464 self.current_start = 0; in read_until_image_data() 471 self.prev_start = self.current_start; in read_until_image_data() 600 self.prev_start = self.current_start; in next_interlaced_row() 633 self.current_start = 0; in finish() 654 assert_eq!(self.current_start - self.prev_start, rowlen - 1); in next_interlaced_row_impl() 655 let row = &self.data_stream[self.prev_start..self.current_start]; in next_interlaced_row_impl() 725 while self.data_stream.len() - self.current_start < rowlen { in next_raw_interlaced_row() 737 self.current_start -= self.prev_start; in next_raw_interlaced_row() [all …]
|
/external/cronet/tot/third_party/rust/chromium_crates_io/vendor/png-0.17.14/src/decoder/ |
D | mod.rs | 212 current_start: 0, in read_info() 372 current_start: usize, field 464 self.current_start = 0; in read_until_image_data() 471 self.prev_start = self.current_start; in read_until_image_data() 600 self.prev_start = self.current_start; in next_interlaced_row() 633 self.current_start = 0; in finish() 654 assert_eq!(self.current_start - self.prev_start, rowlen - 1); in next_interlaced_row_impl() 655 let row = &self.data_stream[self.prev_start..self.current_start]; in next_interlaced_row_impl() 725 while self.data_stream.len() - self.current_start < rowlen { in next_raw_interlaced_row() 737 self.current_start -= self.prev_start; in next_raw_interlaced_row() [all …]
|
/external/pigweed/pw_bloat/py/pw_bloat/ |
D | bloaty_config.py | 222 current_start, 237 current_start < other_end <= current_end 240 current_start <= other_start < current_end
|
/external/sdv/vsomeip/implementation/endpoints/src/ |
D | tp_message.cpp | 174 std::uint32_t current_start = seg_current->start_; in add_segment() local 176 segments_.emplace(segment_t(current_start, seg_next->start_ - 1)); in add_segment() 177 current_message_size_ += seg_next->start_ - current_start; in add_segment()
|
/external/cronet/stable/third_party/rust/chromium_crates_io/patches/png/ |
D | 0104-Simplify-how-Reader-tracks-how-many-frames-remain-to.patch | 39 current_start: 0, 173 self.current_start = 0;
|
/external/cronet/tot/third_party/rust/chromium_crates_io/patches/png/ |
D | 0104-Simplify-how-Reader-tracks-how-many-frames-remain-to.patch | 39 current_start: 0, 173 self.current_start = 0;
|
/external/coreboot/payloads/libpayload/curses/PDCurses/x11/ |
D | x11.c | 1562 int temp, current_start, current_end, current_start_x, in _selection_extend() local 1572 current_start = (selection_start_y * COLS) + selection_start_x; in _selection_extend() 1575 if (current_start > current_end) in _selection_extend() 1581 temp = current_start; in _selection_extend() 1582 current_start = current_end; in _selection_extend() 1628 else if (new_start < current_start) in _selection_extend() 1631 else if (new_start > current_start) in _selection_extend()
|