Function calls in Deep Profiling

Hello;
Trying to look for each frame what are the functions used, I saw that for all the frames we have the same functions, but somtimes some functions are called (Calls = 1) but the GC Alloc =0, Time ms = 0.00, Self ms = 0.00, Total = 0.00% and Self = 0.00%.

So my question is : how we can call a function without using it and if it’s possible who called this function is it the profiler??

Thanks in advance.

The values are probably rounded, so “Time ms = 0.00” probably means “Time ms < 0.005”

They might also be just truncated, in which case “Time ms = 0.00” would mean “Time ms < 0.01”

In either case, the point is that the function takes so little time that it’s not going to be noticeable.