Are you doing this with deep profile enabled? They are simple null checks.
Yeah, always take the deep profiler's numbers with a huge grain of salt. I've explained it numerous times before. Think about it. Deep profiler adds a fixed amount of overhead to every function. So for example, say it adds 0.1 ms to every function call. Now say you have a function that takes 5 ms to execute, and is called once. You also have a function that takes 0.001 ms to execute, but is called 500 times. Let's do the math now:
(5 ms + 0.1 ms) * 1 = 5.1 ms for the big function
(0.001 ms + 0.1 ms) * 500 = 50.5 ms for the small functions.
See the problem?