Home | History | Annotate | Download | only in src

Lines Matching defs:g2

541   const Dwarf_Global *g2 = (const Dwarf_Global *) p2;
543 return strcmp (g1->name, g2->name);
575 struct local_name *g2 = (struct local_name *) p2;
578 result = strcmp (g1->name, g2->name);
581 if (g1->lowpc <= g2->lowpc && g1->highpc >= g2->highpc)
583 /* g2 is contained in g1. Update the data. */
584 g2->lowpc = g1->lowpc;
585 g2->highpc = g1->highpc;
588 else if (g2->lowpc <= g1->lowpc && g2->highpc >= g1->highpc)
590 /* g1 is contained in g2. Update the data. */
591 g1->lowpc = g2->lowpc;
592 g1->highpc = g2->highpc;
596 result = g1->lowpc < g2->lowpc ? -1 : 1;