Home
last modified time | relevance | path

Searched refs:op (Results 1 – 11 of 11) sorted by relevance

/lvgl-latest/src/libs/lz4/
Dlz4.c958 BYTE* op = (BYTE*) dest; in LZ4_compress_generic_validated() local
959 BYTE* const olimit = op + maxOutputSize; in LZ4_compress_generic_validated()
1098 token = op++; in LZ4_compress_generic_validated()
1100 (unlikely(op + litLength + (2 + 1 + LASTLITERALS) + (litLength/255) > olimit)) ) { in LZ4_compress_generic_validated()
1104 …(unlikely(op + (litLength+240)/255 /* litlen */ + litLength /* literals */ + 2 /* offset */ + 1 /*… in LZ4_compress_generic_validated()
1105 op--; in LZ4_compress_generic_validated()
1111 for(; len >= 255 ; len-=255) *op++ = 255; in LZ4_compress_generic_validated()
1112 *op++ = (BYTE)len; in LZ4_compress_generic_validated()
1117 LZ4_wildCopy8(op, anchor, op+litLength); in LZ4_compress_generic_validated()
1118 op+=litLength; in LZ4_compress_generic_validated()
[all …]
/lvgl-latest/src/draw/sw/blend/neon/
Dlv_blend_neon.S114 .macro ldst op, bpp, len, mem, reg, cvt, wb
118 v\op\()4.8 {\reg\()_B, \reg\()_G, \reg\()_R, \reg\()_A}, [\mem\()_ADDR]\wb
120 v\op\()1.32 {\reg\()_8888_L, \reg\()_8888_H}, [\mem\()_ADDR]\wb
123 .ifc \op,st
129 v\op\()1.32 {\reg\()_8888_L}, [\mem\()_ADDR]!
130 v\op\()1.32 {\reg\()_R}, [\mem\()_ADDR]!
131 v\op\()1.32 {\reg\()_A[0]}, [\mem\()_ADDR]!
133 v\op\()1.32 {\reg\()_8888_L}, [\mem\()_ADDR]!
134 v\op\()1.32 {\reg\()_R}, [\mem\()_ADDR]!
136 v\op\()1.32 {\reg\()_8888_L}, [\mem\()_ADDR]!
[all …]
/lvgl-latest/src/draw/sw/blend/helium/
Dlv_blend_helium.S54 .macro ldst st, op, bpp, mem, reg, areg, cvt, alt_index, wb, aligned
72 v\op\()rb.u16 \reg\()_A, [\mem\()_ADDR], #8
74 v\op\()rb.8 \reg\()_A, [\mem\()_ADDR], #16
85 v\op\()rb.8 \reg\()_B, [\mem\()_ADDR, S_B]
86 v\op\()rb.8 \reg\()_R, [\mem\()_ADDR, S_G]
88 v\op\()rb.8 \reg\()_B, [\mem\()_ADDR, \reg\()_A]
90 v\op\()rb.8 \reg\()_R, [\mem\()_ADDR, \reg\()_A]
111 v\op\()rh.16 \reg\()_565, [\mem\()_ADDR], #16
113 v\op\()rh.16 \reg\()_565, [\mem\()_ADDR]
118 v\op\()rb.8 \reg\()_B, [\mem\()_ADDR, S_B]
[all …]
/lvgl-latest/src/libs/thorvg/
DtvgSwFill.cpp417 …l(const SwFill* fill, uint32_t* dst, uint32_t y, uint32_t x, uint32_t len, SwBlender op, uint8_t a) in fillRadial() argument
425 *dst = op(_pixel(fill, x0), *dst, a); in fillRadial()
434 *dst = op(_pixel(fill, sqrtf(det) - b), *dst, a); in fillRadial()
500 …Fill* fill, uint32_t* dst, uint32_t y, uint32_t x, uint32_t len, SwBlender op, SwBlender op2, uint… in fillRadial() argument
510 auto tmp = op(_pixel(fill, x0), *dst, 255); in fillRadial()
518 auto tmp = op(_pixel(fill, x0), *dst, 255); in fillRadial()
530 auto tmp = op(_pixel(fill, sqrtf(det) - b), *dst, 255); in fillRadial()
538 auto tmp = op(_pixel(fill, sqrtf(det) - b), *dst, 255); in fillRadial()
713 …r(const SwFill* fill, uint32_t* dst, uint32_t y, uint32_t x, uint32_t len, SwBlender op, uint8_t a) in fillLinear() argument
724 *dst = op(color, *dst, a); in fillLinear()
[all …]
DtvgSwCommon.h538 …Fill* fill, uint32_t* dst, uint32_t y, uint32_t x, uint32_t len, SwBlender op, uint8_t a); …
539 …Fill* fill, uint32_t* dst, uint32_t y, uint32_t x, uint32_t len, SwBlender op, SwBlender op2, uint…
542 void fillRadial(const SwFill* fill, uint8_t* dst, uint32_t y, uint32_t x, uint32_t len, SwMask op, …
543 …, uint8_t* dst, uint32_t y, uint32_t x, uint32_t len, uint8_t* cmp, SwMask op, uint8_t a) ; …
544 …Fill* fill, uint32_t* dst, uint32_t y, uint32_t x, uint32_t len, SwBlender op, uint8_t a); …
545 …Fill* fill, uint32_t* dst, uint32_t y, uint32_t x, uint32_t len, SwBlender op, SwBlender op2, uint…
DtvgSwRaster.cpp45 …tor()(const SwFill* fill, uint8_t* dst, uint32_t y, uint32_t x, uint32_t len, SwMask op, uint8_t a) in operator ()()
47 fillLinear(fill, dst, y, x, len, op, a); in operator ()()
50 …Fill* fill, uint8_t* dst, uint32_t y, uint32_t x, uint32_t len, uint8_t* cmp, SwMask op, uint8_t a) in operator ()()
52 fillLinear(fill, dst, y, x, len, cmp, op, a); in operator ()()
55 …)(const SwFill* fill, uint32_t* dst, uint32_t y, uint32_t x, uint32_t len, SwBlender op, uint8_t a) in operator ()()
57 fillLinear(fill, dst, y, x, len, op, a); in operator ()()
65 …Fill* fill, uint32_t* dst, uint32_t y, uint32_t x, uint32_t len, SwBlender op, SwBlender op2, uint… in operator ()()
67 fillLinear(fill, dst, y, x, len, op, op2, a); in operator ()()
74 …tor()(const SwFill* fill, uint8_t* dst, uint32_t y, uint32_t x, uint32_t len, SwMask op, uint8_t a) in operator ()()
76 fillRadial(fill, dst, y, x, len, op, a); in operator ()()
[all …]
/lvgl-latest/src/draw/
Dlv_draw_vector.c143 lv_vector_path_op_t op = LV_VECTOR_PATH_OP_MOVE_TO; in lv_vector_path_move_to() local
144 lv_array_push_back(&path->ops, &op); in lv_vector_path_move_to()
157 lv_vector_path_op_t op = LV_VECTOR_PATH_OP_LINE_TO; in lv_vector_path_line_to() local
158 lv_array_push_back(&path->ops, &op); in lv_vector_path_line_to()
171 lv_vector_path_op_t op = LV_VECTOR_PATH_OP_QUAD_TO; in lv_vector_path_quad_to() local
172 lv_array_push_back(&path->ops, &op); in lv_vector_path_quad_to()
187 lv_vector_path_op_t op = LV_VECTOR_PATH_OP_CUBIC_TO; in lv_vector_path_cubic_to() local
188 lv_array_push_back(&path->ops, &op); in lv_vector_path_cubic_to()
203 lv_vector_path_op_t op = LV_VECTOR_PATH_OP_CLOSE; in lv_vector_path_close() local
204 lv_array_push_back(&path->ops, &op); in lv_vector_path_close()
/lvgl-latest/src/draw/vg_lite/
Dlv_vg_lite_path.c294 static inline void lv_vg_lite_path_append_op(lv_vg_lite_path_t * path, uint32_t op) in lv_vg_lite_path_append_op() argument
300 LV_VG_LITE_PATH_SET_OP_CODE(ptr, uint32_t, op); in lv_vg_lite_path_append_op()
304 LV_VG_LITE_PATH_SET_OP_CODE(ptr, uint16_t, op); in lv_vg_lite_path_append_op()
308 LV_VG_LITE_PATH_SET_OP_CODE(ptr, uint8_t, op); in lv_vg_lite_path_append_op()
/lvgl-latest/src/draw/sw/
Dlv_draw_sw_vector.c92 lv_vector_path_op_t * op = lv_array_front(&p->ops); in _set_paint_shape() local
95 switch(op[i]) { in _set_paint_shape()
/lvgl-latest/src/libs/thorvg/rapidjson/internal/
Dregex.h354 bool Eval(Stack<Allocator>& operandStack, Operator op) { in RAPIDJSON_DIAG_OFF()
355 switch (op) { in RAPIDJSON_DIAG_OFF()
/lvgl-latest/src/libs/tiny_ttf/
Dstb_truetype_htcw.h1323 int start = b->cursor, end, op; in stbtt__dict_get() local
1327 op = stbtt__buf_get8(b); in stbtt__dict_get()
1328 if(op == 12) op = stbtt__buf_get8(b) | 0x100; in stbtt__dict_get()
1329 if(op == key) return stbtt__buf_range(b, start, end - start); in stbtt__dict_get()