Lines Matching refs:last
326 HChar const* last = VG_(clo_trace_children_skip); in VG_() local
328 while (*last) { in VG_()
331 HChar const* first = consume_commas(last); in VG_()
332 last = consume_field(first); in VG_()
333 if (first == last) in VG_()
335 vg_assert(last > first); in VG_()
338 patt = VG_(calloc)("m_options.swttc.1", last - first + 1, 1); in VG_()
339 VG_(memcpy)(patt, first, last - first); in VG_()
340 vg_assert(patt[last-first] == 0); in VG_()
351 HChar const* last = VG_(clo_trace_children_skip_by_arg); in VG_() local
352 while (*last) { in VG_()
356 HChar const* first = consume_commas(last); in VG_()
357 last = consume_field(first); in VG_()
358 if (first == last) in VG_()
360 vg_assert(last > first); in VG_()
363 patt = VG_(calloc)("m_options.swttc.1", last - first + 1, 1); in VG_()
364 VG_(memcpy)(patt, first, last - first); in VG_()
365 vg_assert(patt[last-first] == 0); in VG_()