Home
last modified time | relevance | path

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

/third_party/flutter/skia/third_party/externals/imgui/
Dimgui_internal.h209 static inline float ImFmod(float x, float y) { return fmodf(x, y… in ImFmod() function
210 static inline double ImFmod(double x, double y) { return fmod(x, y)… in ImFmod() function
/third_party/mesa3d/src/imgui/
Dimgui_internal.h216 static inline float ImFmod(float x, float y) { return fmodf(x, y… in ImFmod() function
217 static inline double ImFmod(double x, double y) { return fmod(x, y)… in ImFmod() function
/third_party/skia/third_party/externals/imgui/
Dimgui_internal.h389 #define ImFmod(X, Y) fmodf((X), (Y)) macro