Searched refs:last_end (Results 1 - 11 of 11) sorted by relevance
/third_party/rust/crates/regex/bench/src/ffi/ |
H A D | re2.rs | 37 FindMatches { re: self, text: text, last_end: 0, last_match: None } in find_iter() 63 last_end: usize, 90 if self.last_end > self.text.len() { in next() 93 let (s, e) = match self.re.find_at(self.text, self.last_end) { in next() 97 assert!(s >= self.last_end); in next() 102 self.last_end = next_after_empty(&self.text, e); in next() 109 self.last_end = e; in next() 111 self.last_match = Some(self.last_end); in next()
|
/third_party/rust/crates/regex/regex-capi/src/ |
H A D | rure.rs | 48 last_end: usize, 311 last_end: 0, in rure_iter_new() 333 if it.last_end > text.len() { in rure_iter_next() 336 let (s, e) = match re.find_at(text, it.last_end) { in rure_iter_next() 344 it.last_end += 1; in rure_iter_next() 351 it.last_end = e; in rure_iter_next() 375 if it.last_end > text.len() { in rure_iter_next_captures() 378 let (s, e) = match re.read_captures_at(slots, text, it.last_end) { in rure_iter_next_captures() 386 it.last_end += 1; in rure_iter_next_captures() 393 it.last_end in rure_iter_next_captures() [all...] |
/third_party/rust/crates/regex/src/ |
H A D | re_trait.rs | 153 Matches { re: self, text, last_end: 0, last_match: None } in find_iter() 172 last_end: usize, in captures_iter() 200 if self.last_end > self.text.as_ref().len() { in next() 203 let (s, e) = match self.re.find_at(self.text, self.last_end) { in next() 211 self.last_end = self.re.next_after_empty(self.text, e); in next() 218 self.last_end = e; in next() 264 if self.0.last_end > self.0.text.as_ref().len() { in next() 271 self.0.last_end, in next() 277 self.0.last_end = self.0.re.next_after_empty(self.0.text, e); in next() 282 self.0.last_end in next() [all...] |
/third_party/elfutils/src/ |
H A D | objdump.c | 623 const uint8_t *last_end; member 645 for (cnt = 0; cnt < (size_t) MIN (info->cur - info->last_end, 8); ++cnt) in disasm_output() 646 printf (" %02" PRIx8, info->last_end[cnt]); in disasm_output() 657 if (info->cur - info->last_end > 8) in disasm_output() 667 for (; cnt < (size_t) (info->cur - info->last_end); ++cnt) in disasm_output() 668 printf (" %02" PRIx8, info->last_end[cnt]); in disasm_output() 672 info->addr += info->cur - info->last_end - 8; in disasm_output() 675 info->last_end = info->cur; in disasm_output() 712 info.last_end = info.cur = data->d_buf; in show_disasm()
|
/third_party/mesa3d/src/gallium/drivers/radeonsi/ |
H A D | gfx10_query.c | 172 query->last_end = query->last->head; in gfx10_sh_query_end() 175 if (query->last_end != 0) { in gfx10_sh_query_end() 177 fence_va += query->last_end - sizeof(struct gfx10_sh_query_buffer_mem); in gfx10_sh_query_end() 262 results_end = query->last_end; in gfx10_sh_query_get_result() 369 unsigned end = qbuf == query->last ? query->last_end : qbuf->buf->b.b.width0; in gfx10_sh_query_get_result_resource()
|
H A D | si_query.h | 275 unsigned last_end; member
|
H A D | si_query.c | 1102 unsigned end = qbuf == gfx10_query->last ? gfx10_query->last_end : qbuf->buf->b.b.width0; in si_emit_query_predication()
|
/third_party/skia/third_party/externals/freetype/src/sfnt/ |
H A D | ttcmap.c | 988 FT_UInt last_start = 0, last_end = 0; in FT_CALLBACK_DEF() local 1011 if ( start <= last_end && n > 0 ) in FT_CALLBACK_DEF() 1020 if ( last_start > start || last_end > end ) in FT_CALLBACK_DEF() 1087 last_end = end; in FT_CALLBACK_DEF()
|
/third_party/node/deps/v8/src/compiler/backend/ |
H A D | register-allocator.cc | 327 LifetimePosition last_end = first_interval()->end(); in VerifyIntervals() local 330 DCHECK(last_end <= interval->start()); in VerifyIntervals() 331 last_end = interval->end(); in VerifyIntervals() 333 DCHECK(last_end == End()); in VerifyIntervals() 914 LifetimePosition last_end = End(); in VerifyChildrenInOrder() local 917 DCHECK(last_end <= child->Start()); in VerifyChildrenInOrder() 918 last_end = child->End(); in VerifyChildrenInOrder()
|
/third_party/toybox/toys/pending/ |
H A D | awk.c | 65 int last_end; 2398 if (TT.cgl.last_end) ZCODE[TT.cgl.last_end] = TT.zcode_last - TT.cgl.last_end; in rule() 2405 TT.cgl.last_end = TT.zcode_last; in rule() 2478 if (TT.cgl.last_end) ZCODE[TT.cgl.last_end-1] = opquit; in compile()
|
/third_party/toybox/generated/ |
H A D | globals.h | 521 int last_end; member
|
Completed in 30 milliseconds