Home
last modified time | relevance | path

Searched refs:full (Results 1 – 25 of 131) sorted by relevance

123456

/AliOS-Things-master/components/littlevgl/src/lv_misc/
A Dlv_color.h102 uint8_t full : 1; member
113 uint8_t full; member
131 uint16_t full; member
143 uint32_t full; member
235 return ret.full; in lv_color_to1()
241 return ret.full; in lv_color_to1()
248 return ret.full; in lv_color_to1()
272 return ret.full; in lv_color_to1()
287 return ret.full; in lv_color_to1()
304 return ret.full; in lv_color_to1()
[all …]
A Dlv_mem.c96 lv_mem_ent_t * full = (lv_mem_ent_t *)work_mem; in lv_mem_init() local
97 full->header.s.used = 0; in lv_mem_init()
99 full->header.s.d_size = LV_MEM_SIZE - sizeof(lv_mem_header_t); in lv_mem_init()
/AliOS-Things-master/components/littlevgl/src/lv_draw/
A Dlv_draw_basic.c173 if(color_array_tmp[0].full != color.full || last_width != w) { in lv_draw_fill()
176 color_array_tmp[i].full = color.full; in lv_draw_fill()
199 if(color_array_tmp[0].full != color.full || last_width != w) { in lv_draw_fill()
202 color_array_tmp[i].full = color.full; in lv_draw_fill()
341 } else if(vdb_buf_tmp->full != color.full) { in lv_draw_letter()
504 if(chroma_key && px_color.full == disp->driver.color_chroma_key.full) continue; in lv_draw_map()
521 vdb_buf_tmp[col].full = recolored_px.full; in lv_draw_map()
635 if(mem[col].full != bg_tmp.full) { in sw_color_fill()
688 bg_color.full != bg_color_save.full) { in color_mix_2_alpha()
691 fg_color_save.full = fg_color.full; in color_mix_2_alpha()
[all …]
A Dlv_draw_img.c116 p_color.full = (buf_u8[px] & (1 << (7 - bit))) >> (7 - bit); in lv_img_buf_get_px_color()
126 p_color.full = (buf_u8[px] & (3 << (6 - bit))) >> (6 - bit); in lv_img_buf_get_px_color()
136 p_color.full = (buf_u8[px] & (0xF << (4 - bit))) >> (4 - bit); in lv_img_buf_get_px_color()
140 p_color.full = buf_u8[px]; in lv_img_buf_get_px_color()
254 buf_u8[px] = buf_u8[px] | ((c.full & 0x1) << (7 - bit)); in lv_img_buf_set_px_color()
266 buf_u8[px] = buf_u8[px] | ((c.full & 0x3) << (6 - bit)); in lv_img_buf_set_px_color()
277 buf_u8[px] = buf_u8[px] | ((c.full & 0xF) << (4 - bit)); in lv_img_buf_set_px_color()
281 buf_u8[px] = c.full; in lv_img_buf_set_px_color()
358 c32.full = lv_color_to32(c); in lv_img_buf_set_palette()
A Dlv_draw_rect.c144 if(mcolor.full == gcolor.full) { in lv_draw_rect_main_mid()
330 if(mcolor.full == gcolor.full) in lv_draw_rect_main_corner()
340 if(mcolor.full == gcolor.full) in lv_draw_rect_main_corner()
350 if(mcolor.full == gcolor.full) in lv_draw_rect_main_corner()
361 if(mcolor.full == gcolor.full) in lv_draw_rect_main_corner()
386 if(mcolor.full == gcolor.full) in lv_draw_rect_main_corner()
396 if(mcolor.full == gcolor.full) in lv_draw_rect_main_corner()
405 if(mcolor.full == gcolor.full) in lv_draw_rect_main_corner()
415 if(mcolor.full == gcolor.full) in lv_draw_rect_main_corner()
A Dlv_img_decoder.c547 buf[i * LV_IMG_PX_SIZE_ALPHA_BYTE] = bg_color.full; in lv_img_decoder_built_in_line_alpha()
550 buf[i * LV_IMG_PX_SIZE_ALPHA_BYTE] = bg_color.full & 0xFF; in lv_img_decoder_built_in_line_alpha()
551 buf[i * LV_IMG_PX_SIZE_ALPHA_BYTE + 1] = (bg_color.full >> 8) & 0xFF; in lv_img_decoder_built_in_line_alpha()
553 *((uint32_t *)&buf[i * LV_IMG_PX_SIZE_ALPHA_BYTE]) = bg_color.full; in lv_img_decoder_built_in_line_alpha()
A Dlv_draw_label.c194 recolor.full = style->text.color.full; in lv_draw_label()
/AliOS-Things-master/components/freetype/src/cid/
A Dcidobjs.c375 char* full = info->full_name; in cid_face_init() local
379 if ( full ) in cid_face_init()
381 while ( *full ) in cid_face_init()
383 if ( *full == *family ) in cid_face_init()
386 full++; in cid_face_init()
390 if ( *full == ' ' || *full == '-' ) in cid_face_init()
391 full++; in cid_face_init()
397 cidface->style_name = full; in cid_face_init()
/AliOS-Things-master/components/littlevgl/src/lv_objx/
A Dlv_canvas.c356 if(c_dest_int.full == ct.full) continue; in lv_canvas_rotate()
488 style->body.main_color.full == ctransp.full && in lv_canvas_draw_rect()
489 style->body.grad_color.full == ctransp.full) in lv_canvas_draw_rect()
648 style->body.main_color.full == ctransp.full && in lv_canvas_draw_line()
649 style->body.grad_color.full == ctransp.full) in lv_canvas_draw_line()
700 style->body.main_color.full == ctransp.full && in lv_canvas_draw_polygon()
701 style->body.grad_color.full == ctransp.full) in lv_canvas_draw_polygon()
753 style->body.main_color.full == ctransp.full && in lv_canvas_draw_arc()
754 style->body.grad_color.full == ctransp.full) in lv_canvas_draw_arc()
/AliOS-Things-master/components/freetype/src/type1/
A Dt1objs.c394 char* full = info->full_name; in T1_Face_Init() local
398 if ( full ) in T1_Face_Init()
403 while ( *full ) in T1_Face_Init()
405 if ( *full == *family ) in T1_Face_Init()
408 full++; in T1_Face_Init()
412 if ( *full == ' ' || *full == '-' ) in T1_Face_Init()
413 full++; in T1_Face_Init()
421 root->style_name = full; in T1_Face_Init()
/AliOS-Things-master/components/freetype/src/type42/
A Dt42objs.c244 char* full = info->full_name; in T42_Face_Init() local
248 if ( full ) in T42_Face_Init()
250 while ( *full ) in T42_Face_Init()
252 if ( *full == *family ) in T42_Face_Init()
255 full++; in T42_Face_Init()
259 if ( *full == ' ' || *full == '-' ) in T42_Face_Init()
260 full++; in T42_Face_Init()
266 root->style_name = full; in T42_Face_Init()
/AliOS-Things-master/components/trace/Config/
A DSYSVIEW_AliOSThings.txt13full, 160=Wait for Memory pool, 4=Wait for timeout, 12=Wait for event with timeout, 20=Wait for se…
/AliOS-Things-master/components/py_engine/tests/pyb/
A Dcan.py.exp36 full
42 full
/AliOS-Things-master/components/SDL2/src/image/external/libpng-1.6.37/contrib/pngsuite/interlaced/
A DREADME2 These images fail the "pngimage-quick" and "pngimage-full" tests.
/AliOS-Things-master/components/ota/2ndboot/updater/xz/linux/lib/xz/
A Dxz_dec_lzma2.c57 size_t full; member
295 dict->full = 0; in dict_reset()
326 return dict->full > 0 ? dict->buf[offset] : 0; in dict_get()
336 if (dict->full < dict->pos) in dict_put()
337 dict->full = dict->pos; in dict_put()
350 if (dist >= dict->full || dist >= dict->size) in dict_repeat()
366 if (dict->full < dict->pos) in dict_repeat()
367 dict->full = dict->pos; in dict_repeat()
392 if (dict->full < dict->pos) in dict_uncompressed()
393 dict->full = dict->pos; in dict_uncompressed()
/AliOS-Things-master/components/ota/tools/xz/src/
A Dxz_dec_lzma2.c57 size_t full; member
295 dict->full = 0; in dict_reset()
326 return dict->full > 0 ? dict->buf[offset] : 0; in dict_get()
336 if (dict->full < dict->pos) in dict_put()
337 dict->full = dict->pos; in dict_put()
350 if (dist >= dict->full || dist >= dict->size) in dict_repeat()
366 if (dict->full < dict->pos) in dict_repeat()
367 dict->full = dict->pos; in dict_repeat()
392 if (dict->full < dict->pos) in dict_uncompressed()
393 dict->full = dict->pos; in dict_uncompressed()
/AliOS-Things-master/components/SDL2/src/image/external/libpng-1.6.37/contrib/pngminus/
A Dpnm2png.bat7 REM -- full-color
27 REM -- full-color
A Dpng2pnm.bat7 REM -- full-color
27 REM -- full-color
/AliOS-Things-master/components/SDL2/src/image/external/zlib-1.2.11/examples/
A Dgzappend.c261 int ret, lastbit, left, full; in gzscan() local
296 have = full = 0; in gzscan()
322 full = 1; in gzscan()
362 if (full) { in gzscan()
/AliOS-Things-master/components/ai_agent/src/engine/tflite-micro/tensorflow/lite/kernels/
A Dlstm_shared.h25 namespace full {
/AliOS-Things-master/components/py_engine/tests/net_hosted/
A DREADME3 full Internet connection.
/AliOS-Things-master/components/SDL2/docs/
A DREADME-cmake.md51 - `CMAKE_OSX_SYSROOT=<SDK>` (examples: `iphoneos`, `iphonesimulator`, `iphoneos12.4`, `/full/path/…
52 … `appletvos`, `appletvsimulator`, `appletvos12.4`, `/full/path/to/AppleTVOS.sdk`, etc.)
/AliOS-Things-master/components/SDL2/src/image/external/libpng-1.6.37/
A DTODO4 * Better C++ wrapper / full C++ implementation (?)
A Dconfig.h.in54 /* Define to the full name of this package. */
57 /* Define to the full name and version of this package. */
/AliOS-Things-master/components/jsoncpp/
A Ddev.makefile30 valgrind --error-exitcode=42 --leak-check=full ./build/debug/src/test_lib_json/jsoncpp_test

Completed in 52 milliseconds

123456