Searched refs:n_req (Results 1 - 2 of 2) sorted by relevance

/external/valgrind/coregrind/
H A Dm_errormgr.c1707 // Grow fun and obj _offsets arrays to have at least n_req elements.
1709 static void grow_offsets(IPtoFunOrObjCompleter* ip2fo, Int n_req) argument
1721 if (ip2fo->sz_offsets >= n_req)
1726 if (n_req < ip2fo->n_ips)
1727 n_req = ip2fo->n_ips;
1728 if (n_req < ip2fo->sz_offsets + 5)
1729 n_req = ip2fo->sz_offsets + 5;
1732 n_req * sizeof(Int));
1733 for (i = ip2fo->sz_offsets; i < n_req; i++)
1737 n_req * sizeo
[all...]
H A Dm_redir.c350 Word n_req = 1; local
352 while (*pp) { n_req++; pp++; }
354 const HChar** arr = dinfo_zalloc("redir.asa.1", (n_req+1) * sizeof(HChar*));
359 vg_assert(i == n_req);
360 vg_assert(arr[n_req] == NULL);

Completed in 237 milliseconds