Home
last modified time | relevance | path

Searched defs:ImIsPowerOfTwo (Results 1 – 3 of 3) sorted by relevance

/third_party/skia/third_party/externals/imgui/
Dimgui_internal.h303 static inline bool ImIsPowerOfTwo(int v) { return v != 0 && (v & (v - 1)) == 0; } in ImIsPowerOfTwo() function
304 static inline bool ImIsPowerOfTwo(ImU64 v) { return v != 0 && (v & (v - 1)) == 0; } in ImIsPowerOfTwo() function
/third_party/flutter/skia/third_party/externals/imgui/
Dimgui_internal.h153 static inline bool ImIsPowerOfTwo(int v) { return v != 0 && (v & (v - 1)) == 0; } in ImIsPowerOfTwo() function
/third_party/mesa3d/src/imgui/
Dimgui_internal.h157 static inline bool ImIsPowerOfTwo(int v) { return v != 0 && (v & (v - 1)) == 0; } in ImIsPowerOfTwo() function