Lines Matching refs:last
337 HChar const* last = VG_(clo_trace_children_skip); in VG_() local
339 while (*last) { in VG_()
342 HChar const* first = consume_commas(last); in VG_()
343 last = consume_field(first); in VG_()
344 if (first == last) in VG_()
346 vg_assert(last > first); in VG_()
349 patt = VG_(calloc)("m_options.swttc.1", last - first + 1, 1); in VG_()
350 VG_(memcpy)(patt, first, last - first); in VG_()
351 vg_assert(patt[last-first] == 0); in VG_()
362 HChar const* last = VG_(clo_trace_children_skip_by_arg); in VG_() local
363 while (*last) { in VG_()
367 HChar const* first = consume_commas(last); in VG_()
368 last = consume_field(first); in VG_()
369 if (first == last) in VG_()
371 vg_assert(last > first); in VG_()
374 patt = VG_(calloc)("m_options.swttc.1", last - first + 1, 1); in VG_()
375 VG_(memcpy)(patt, first, last - first); in VG_()
376 vg_assert(patt[last-first] == 0); in VG_()