If you're asking if the overhead of three sequential loop structures versus one on the exact same data or looping on 3-4 items versus calling them individually will impact page performance, the answer is no.
Excessive code, round trips to other servers, etc will impact page performance. Inadequate caching will impact page performance. But statement and function call overhead (unless you're well in the tens of thousands) is micro-optimization and an irrelevant distraction.
So if you're selecting a single row at a time from a query and executing that query a hundred times then changing that query to be called once but return all hundred rows then that's the sort of thing that will make a difference.
But don't sweat the small stuff like this, if/else vs switch and other than micro-issues. Worry more about readability and correctness.