Searched defs:clz (Results 1 – 8 of 8) sorted by relevance
202 #define clz(u) __builtin_clz(u) macro204 #define clz(u) … macro
583 #define clz(u) ((u) ? __builtin_clz(u) : 32) macro588 #define clz(v) (0 == v ? 32 : (31 & __count_leading_zeros(v))) macro590 #define clz(v) __count_leading_zeros(v) macro
515 # define clz(u) ((u) ? __builtin_clz(u) : 32) macro517 # define clz(u) (((u) == 0) ? 32 : \ macro
Completed in 67 milliseconds