Home
last modified time | relevance | path

Searched defs:n (Results 1 – 21 of 21) sorted by relevance

/lvgl-latest/src/misc/
Dlv_gc.h35 #define LV_DISPATCH(f, t, n) f(t, n) argument
36 #define LV_DISPATCH_COND(f, t, n, m, v) LV_CONCAT3(LV_DISPATCH, m, v)(f, t, n) argument
38 #define LV_DISPATCH00(f, t, n) LV_DISPATCH(f, t, n) argument
39 #define LV_DISPATCH01(f, t, n) argument
40 #define LV_DISPATCH10(f, t, n) argument
41 #define LV_DISPATCH11(f, t, n) LV_DISPATCH(f, t, n) argument
Dlv_utils.c54 void * _lv_utils_bsearch(const void * key, const void * base, uint32_t n, uint32_t size, in _lv_utils_bsearch()
Dlv_tlsf.c57 …#define TLSF_FLS(n) ((n) & 0xffffffff00000000ull ? 32 + TLSF_FLS32((size_t)(n) >> 32) : TLSF_FLS32… argument
59 #define TLSF_FLS(n) TLSF_FLS32(n) argument
62 #define TLSF_FLS32(n) ((n) & 0xffff0000 ? 16 + TLSF_FLS16((n) >> 16) : TLSF_FLS16(n)) argument
63 #define TLSF_FLS16(n) ((n) & 0xff00 ? 8 + TLSF_FLS8 ((n) >> 8) : TLSF_FLS8 (n)) argument
64 #define TLSF_FLS8(n) ((n) & 0xf0 ? 4 + TLSF_FLS4 ((n) >> 4) : TLSF_FLS4 (n)) argument
65 #define TLSF_FLS4(n) ((n) & 0xc ? 2 + TLSF_FLS2 ((n) >> 2) : TLSF_FLS2 (n)) argument
66 #define TLSF_FLS2(n) ((n) & 0x2 ? 1 + TLSF_FLS1 ((n) >> 1) : TLSF_FLS1 (n)) argument
67 #define TLSF_FLS1(n) ((n) & 0x1 ? 1 : 0) argument
73 #define TLSF_LOG2_CEIL(n) ((n) & (n - 1) ? TLSF_FLS(n) : TLSF_FLS(n) - 1) argument
Dlv_area.c165 lv_area_t n; in _lv_area_diff() local
Dlv_printf.c552 unsigned int flags, width, precision, n; in _vsnprintf() local
/lvgl-latest/src/hal/
Dlv_hal.h29 #define _LV_DPX_CALC(dpi, n) ((n) == 0 ? 0 :LV_MAX((( (dpi) * (n) + 80) / 160), 1)) /*+80 for rou… argument
30 #define LV_DPX(n) _LV_DPX_CALC(lv_disp_get_dpi(NULL), n) argument
/lvgl-latest/src/core/
Dlv_disp.h241 static inline lv_coord_t lv_dpx(lv_coord_t n) in lv_dpx()
255 static inline lv_coord_t lv_disp_dpx(const lv_disp_t * disp, lv_coord_t n) in lv_disp_dpx()
Dlv_obj.h376 static inline lv_coord_t lv_obj_dpx(const lv_obj_t * obj, lv_coord_t n) in lv_obj_dpx()
/lvgl-latest/examples/widgets/chart/
Dlv_example_chart_8.py54 def round_fixed_point(n, shift): argument
Dlv_example_chart_8.c54 static int32_t round_fixed_point(int32_t n, int8_t shift) in round_fixed_point()
/lvgl-latest/examples/event/
Dlv_example_event_4.c5 static int n = 3; variable
/lvgl-latest/src/extra/libs/qrcode/
Dqrcodegen.h139 #define qrcodegen_BUFFER_LEN_FOR_VERSION(n) ((((n) * 4 + 17) * ((n) * 4 + 17) + 7) / 8 + 1) argument
Dqrcodegen.c727 unsigned char n = runHistory[1]; in hasFinderLikePattern() local
/lvgl-latest/demos/widgets/
Dlv_demo_widgets.py45 def LV_DPX(n): argument
/lvgl-latest/src/draw/sdl/
Dlv_draw_sdl_composite.c239 lv_coord_t n = 128; in next_pow_of_2() local
/lvgl-latest/src/draw/stm32_dma2d/
Dlv_gpu_stm32_dma2d.c672 uint32_t n = 0; // address of the next cache row after the last invalidated row in _lv_gpu_stm32_dma2d_invalidate_cache() local
702 uint32_t n = 0; // address of the next cache row after the last cleaned row in _lv_gpu_stm32_dma2d_clean_cache() local
/lvgl-latest/src/extra/libs/sjpg/
Dtjpgd.c938 unsigned int n = rx * ry; in mcu_output() local
972 unsigned int n, i, ofs; in jd_prepare() local
/lvgl-latest/src/extra/libs/tiny_ttf/
Dstb_truetype_htcw.h1231 static stbtt_uint32 stbtt__buf_get(stbtt__buf * b, int n) in stbtt__buf_get()
1499 stbtt_int32 n = ttLONG(font_collection, 8); local
1899 stbtt_int32 ins, i, j = 0, m, n, next_move, was_off = 0, off, start_off = 0; local
2038 float mtx[6] = { 1, 0, 0, 1, 0, 0 }, m, n; local
2205 static stbtt__buf stbtt__get_subr(stbtt__buf idx, int n)
3059 stbtt__hheap_chunk * n = c->next; local
3187 static void stbtt__rasterize_sorted_edges(stbtt__bitmap * result, stbtt__edge * e, int n, int vsubs…
3578 static void stbtt__rasterize_sorted_edges(stbtt__bitmap * result, stbtt__edge * e, int n, int vsubs…
3682 static void stbtt__sort_edges_ins_sort(stbtt__edge * p, int n)
3700 static void stbtt__sort_edges_quicksort(stbtt__edge * p, int n)
[all …]
/lvgl-latest/tests/unity/
Dunity.c373 UNITY_INT32 n_int = 0, n; in UnityPrintFloat() local
Dunity_internals.h212 #define isinf(n) (isnan((n) - (n)) && !isnan(n)) argument
218 #define isnan(n) ((n != n) ? 1 : 0) argument
/lvgl-latest/src/extra/libs/png/
Dlodepng.c813 unsigned bits, n; in HuffmanTree_makeFromLengths2() local
1133 unsigned n, HLIT, HDIST, HCLEN, i; in getTreeInflateDynamic() local
2797 size_t n = (size_t)w * (size_t)h; in lodepng_get_raw_size_lct() local
3840 unsigned n = stats->numcolors; in lodepng_compute_color_stats() local
3910 size_t i, n; in auto_choose_color() local