Home | History | Annotate | Download | only in coregrind

Lines Matching defs:first

318    executable itself; iow child_argv[0] must be the first arg, if any,
333 // Otherwise, look for other reasons to say NO. First,
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);
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);