Home
last modified time | relevance | path

Searched refs:exp (Results 1 – 3 of 3) sorted by relevance

/lvgl-3.4.0/src/misc/
Dlv_math.c214 int64_t lv_pow(int64_t base, int8_t exp) in lv_pow() argument
217 while(exp) { in lv_pow()
218 if(exp & 1) in lv_pow()
220 exp >>= 1; in lv_pow()
Dlv_math.h97 int64_t lv_pow(int64_t base, int8_t exp);
Dlv_tlsf.c274 #define tlsf_cast(t, exp) ((t) (exp)) argument
293 #define tlsf_static_assert(exp) \ argument
294 typedef char _tlsf_glue(static_assert, __LINE__) [(exp) ? 1 : -1]