Let $A \subset \{0,1\}^n$ be a set of $n$-bit bit vectors. Let me call a bit vector $b = (b^{(1)}, b^{(2)}, \dotsc, b^{(n)}) \in \{0,1\}^n$ a "bit combination" of the vectors in $A$ if: $$\forall i \in \{1, 2, \dotsc, n\}\ \exists a_i \in A: b^{(i)} = a_i^{(i)}.$$
That is, $b$ is a "bit combination" of the bit vectors in $A$ if and only if each bit of $b$ matches the corresponding bit of at least one bit vector in $A$.
Is there an accepted name for such a bit vector $b$, or for the set $B_A \subset \{0,1\}^n$ of all such bit vectors?
Geometrically, identifying $\{0,1\}^n$ with the vertices of an $n$-dimensional hypercube, $B_A$ is the smallest sub-hypercube of $\{0,1\}^n$ that contains all the vertices in $A$. Intuitively, this concept would seem sort of analogous to that of the convex hull, except that, instead of convex combinations, we have "bit combinations" as defined above. It seems like something that should have a name, but I can't seem to find one.
Ps. For what it's worth, this question arose while I was writing this answer about forging Lamport one-time signatures on crypto.SE.
For a bitstring $a$, you can consider its graph $$\newcommand{\graph}{\operatorname{graph}}\graph a := \{ (k, a_k) : k \in [n] \} \subset [n] \times \{0,1\}.$$ Here $[n] := \{1,2,\dots, n\}$. (For a formal set theory point of view, $a$ and $\graph a$ are actually the same object.)
Then your condition reads $$\graph b \subset \bigcup_{a \in A} \graph a.$$