Home | History | Annotate | Download | only in liblegacy

Lines Matching refs:map

62  * @param proc  process to add map to
84 * @param map map to check
88 * of the map @map, %0 otherwise.
90 inline static int opd_is_in_map(struct opd_map * map, unsigned long eip)
92 return (eip >= map->start && eip < map->end);
97 * opd_map_offset - return offset of sample against map
98 * @param map map to use
102 * the map @map, which is the same as the file offset
105 inline static unsigned long opd_map_offset(struct opd_map * map,
108 return (eip - map->start) + map->offset;