What about a data structure with a link from every item_id in a combo to the combo struct information, then check for the presence of that combo?
combo_db:
...
14: 4001, 4002, 4003, 4004.
...
find equipment at slot 3: 4003.
Look at combo 14.
Look for equipment 4001, 4002, 4003, 4004.
If found, enable combo 14.
Also, this algorithm can be improved, but as a basis it's much faster than looping over all of them.