This type of simple encoding of probability distributions is used commonly in algorithms, among other things, but I don't know what to call it:
If you have a set of outcomes:
$X = \{x_1, x_2, x_3, ... x_n\}$
And associate a non-negative value (in my mind, "weight") with each outcome (assuming integers for simplicity)
$W(X) = \{x_1 \rightarrow 1, x_2 \rightarrow 3, x_3 \rightarrow 2, ... x_n \rightarrow 5\}$
Then you have a total weight
$Total(W) = \sum_{x \in X}W(x)$
And you can then assign a probability to each outcome using its own weight and the total weight:
$p(x) = \frac{W(x)}{Total(W)}$