Lines Matching defs:indexentry
892 /* We keep an array of indexentry structures to record where in the
896 struct indexentry
907 /* Compare two indexentry structures. This is called via qsort. */
912 const struct indexentry *contestantA = (const struct indexentry *) a;
913 const struct indexentry *contestantB = (const struct indexentry *) b;
936 struct indexentry *indextable;
942 struct indexentry *cached_indexentry;
968 struct indexentry *indexentry;
1187 amt *= sizeof (struct indexentry);
1188 info->indextable = (struct indexentry *) bfd_malloc (amt);
1315 qsort (info->indextable, (size_t) i, sizeof (struct indexentry),
1329 indexentry = info->cached_indexentry;
1340 indexentry = NULL;
1350 indexentry = &info->indextable[mid];
1360 if (indexentry == NULL)
1363 stab = indexentry->stab + STABSIZE;
1364 file_name = indexentry->file_name;
1367 directory_name = indexentry->directory_name;
1368 str = indexentry->str;
1372 for (; stab < (indexentry+1)->stab; stab += STABSIZE)
1400 val = ((indexentry->function_name ? indexentry->val : 0)
1414 info->cached_indexentry = indexentry;
1464 if (indexentry->function_name != NULL)
1471 s = strchr (indexentry->function_name, ':');
1475 *pfnname = indexentry->function_name;