Home
last modified time | relevance | path

Searched refs:last_end (Results 1 – 12 of 12) sorted by relevance

/third_party/rust/crates/regex/bench/src/ffi/
Dre2.rs37 FindMatches { re: self, text: text, last_end: 0, last_match: None } in find_iter()
63 last_end: usize, field
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/src/
Dre_trait.rs153 Matches { re: self, text, last_end: 0, last_match: None } in find_iter()
172 last_end: usize, field
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 = e; in next()
/third_party/rust/crates/regex/regex-capi/src/
Drure.rs48 last_end: usize, field
311 last_end: 0,
333 if it.last_end > text.len() {
336 let (s, e) = match re.find_at(text, it.last_end) {
344 it.last_end += 1;
351 it.last_end = e;
375 if it.last_end > text.len() {
378 let (s, e) = match re.read_captures_at(slots, text, it.last_end) {
386 it.last_end += 1;
393 it.last_end = e;
/third_party/elfutils/src/
Dobjdump.c623 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/
Dgfx10_query.c172 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()
Dsi_query.h275 unsigned last_end; member
Dsi_query.c1102 unsigned end = qbuf == gfx10_query->last ? gfx10_query->last_end : qbuf->buf->b.b.width0; in si_emit_query_predication()
/third_party/glib/patch/
Dbackport-CVE-2023-24593_CVE-2023-25180-1.patch148 gsize last_end;
159 - last_end = gvs_read_unaligned_le (value.data + value.size -
162 + last_end = gvs_read_unaligned_le (value.data + value.size - out.offset_size,
165 if (last_end > value.size)
169 offsets_array_size = value.size - last_end;
176 + out.data_size = last_end;
177 + out.array = value.data + last_end;
197 - gsize last_end;
210 - last_end = gvs_read_unaligned_le (value.data + value.size -
217 - start = gvs_read_unaligned_le (value.data + last_end +
[all …]
/third_party/skia/third_party/externals/freetype/src/sfnt/
Dttcmap.c988 FT_UInt last_start = 0, last_end = 0; in tt_cmap4_validate() local
1011 if ( start <= last_end && n > 0 ) in tt_cmap4_validate()
1020 if ( last_start > start || last_end > end ) in tt_cmap4_validate()
1087 last_end = end; in tt_cmap4_validate()
/third_party/node/deps/v8/src/compiler/backend/
Dregister-allocator.cc327 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/rust/crates/memchr/bench/data/code/
Drust-library.rs15242 let mut last_end = 0; localVariable
15244 result.push_str(unsafe { self.get_unchecked(last_end..start) });
15246 last_end = start + part.len();
15248 result.push_str(unsafe { self.get_unchecked(last_end..self.len()) });
15281 let mut last_end = 0; localVariable
15283 result.push_str(unsafe { self.get_unchecked(last_end..start) });
15285 last_end = start + part.len();
15287 result.push_str(unsafe { self.get_unchecked(last_end..self.len()) });
/third_party/libbpf/.github/actions/build-selftests/
Dvmlinux.h41385 long unsigned int last_end; member
52353 u_int32_t last_end; member