It's a really one of the simplest properties you could imagine for a function. But I haven't been able to find a name for it. What do you call a function $f$ with the following property:
$$f(x) \ge x$$
Note, this is not monotonicity. Monotonicity is the following property:
$$x \ge y \implies f(x) \ge f(y)$$
As mentioned, this property is called expansion, as the element $x$ can be expanded, or stretched-out and thus contained in, the element $f(x)$.
However, this property is also termed reflexivity.
Why? Well, recall that a relation is reflexive if it relates identical elements. More precicely,
$\;\;\; R \text{ reflexive} \\\equiv \forall x:: \; x \, R \, x \\\equiv \forall x,y:: \; x = y \implies x \, R \, y \\\equiv \forall x,y:: \; x \, I \, y \implies x \, R \, y \text{, where $I$ is the identity relation: $I=\{(x,y)\,|\,x=y\}$} \\\equiv I \subseteq R $
Even more so, recall that an ordering $\leq$ on elements can be lifted to functions by $$f \overset{.}{\leq} g \,:\equiv\, (\forall x :: f \ x \leq g \ x)$$ With this, and letting $1$ be the identity function $x \mapsto x$, we have $$f \text{ reflexive } \ \equiv \ 1 \overset{.}{\leq} f$$
Hope that helps!