A host is in the subnet produced by applying the mask to the host address. The mask table makes membership visible as a recomputed network row.
highlighted = computed this step
Why membership is arithmetic
A host belongs to the subnet produced by address AND mask. The mask table exposes that membership as the network row.
/26
Find this host's subnet
192.168.1.130 with /26 produces network 192.168.1.128. That is the row from the split table.
0xc0a80182&0xffffffc0=0xc0a80180
Decode it again
192.168.1.200 with the same /26 mask produces 192.168.1.192. The last octet moves from 200 to 192.
200&192=192
Summary
Subnet membership is not a verbal category; it is the network result of address AND mask. Address arithmetic only; timing/throughput is not modeled here.