OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:nregions
(Results
26 - 26
of
26
) sorted by null
1
2
/external/elfutils/src/
elfcmp.c
245
size_t
nregions
= 0;
local
285
++
nregions
;
566
nregions
+= 2;
574
struct region *regionsarr = alloca (
nregions
* sizeof (struct region));
587
for (size_t cnt = 0; cnt <
nregions
; ++cnt)
593
qsort (regionsarr,
nregions
, sizeof (regionsarr[0]), regioncompare);
623
while (cnt <
nregions
&& regionsarr[cnt].to < phdr1->p_offset)
628
while (cnt <
nregions
&& regionsarr[cnt].from < end)
650
if (cnt ==
nregions
&& last < end)
Completed in 732 milliseconds
1
2