The closest analogy I can think of ATM would be: Suppose you want an overall update rate of ~60Hz or 16.7mS. You might want to know how much of a time-slice each of your 15 functions being called during that 16.7mS period is taking to see how much margin you have.
For that sort of thing you can get an approximation by timing execution of a function by framing it with micros() and measuring the time of each function. For example: