Home | History | Annotate | Download | only in coregrind

Lines Matching defs:last

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