Lines Matching refs:maybe_ovl
2218 ovl_insert (tree fn, tree maybe_ovl, bool using_p) in ovl_insert() argument
2228 while (maybe_ovl && TREE_CODE (maybe_ovl) == OVERLOAD in ovl_insert()
2229 && (weight < ((OVL_HIDDEN_P (maybe_ovl) << 1) in ovl_insert()
2230 | (OVL_USING_P (maybe_ovl) << 0)))) in ovl_insert()
2232 gcc_checking_assert (!OVL_LOOKUP_P (maybe_ovl) in ovl_insert()
2233 && (!copying || OVL_USED_P (maybe_ovl))); in ovl_insert()
2234 if (OVL_USED_P (maybe_ovl)) in ovl_insert()
2237 maybe_ovl = ovl_copy (maybe_ovl); in ovl_insert()
2239 OVL_CHAIN (insert_after) = maybe_ovl; in ovl_insert()
2242 result = maybe_ovl; in ovl_insert()
2243 insert_after = maybe_ovl; in ovl_insert()
2244 maybe_ovl = OVL_CHAIN (maybe_ovl); in ovl_insert()
2248 if (maybe_ovl || using_p || hidden_p || TREE_CODE (fn) == TEMPLATE_DECL) in ovl_insert()
2250 trail = ovl_make (fn, maybe_ovl); in ovl_insert()