/AliOS-Things-master/components/littlevgl/src/lv_misc/ |
A D | lv_txt.h | 75 lv_coord_t line_space, lv_coord_t max_width, lv_txt_flag_t flag); 88 …_next_line(const char * txt, const lv_font_t * font, lv_coord_t letter_space, lv_coord_t max_width,
|
A D | lv_txt.c | 93 lv_coord_t line_space, lv_coord_t max_width, lv_txt_flag_t flag) in lv_txt_get_size() argument 101 if(flag & LV_TXT_FLAG_EXPAND) max_width = LV_COORD_MAX; in lv_txt_get_size() 110 … new_line_start += lv_txt_get_next_line(&text[line_start], font, letter_space, max_width, flag); in lv_txt_get_size() 142 …_next_line(const char * txt, const lv_font_t * font, lv_coord_t letter_space, lv_coord_t max_width, in lv_txt_get_next_line() argument 148 if(flag & LV_TXT_FLAG_EXPAND) max_width = LV_COORD_MAX; in lv_txt_get_next_line() 185 if(cur_w > max_width) { in lv_txt_get_next_line()
|
/AliOS-Things-master/components/SDL2/src/image/external/libwebp-1.0.2/src/dsp/ |
A D | yuv_sse41.c | 409 const int max_width = width & ~31; in ConvertRGB24ToY_SSE41() local 411 for (i = 0; i < max_width; rgb += 3 * 16 * 2) { in ConvertRGB24ToY_SSE41() 443 const int max_width = width & ~31; in ConvertBGR24ToY_SSE41() local 445 for (i = 0; i < max_width; bgr += 3 * 16 * 2) { in ConvertBGR24ToY_SSE41() 477 const int max_width = width & ~15; in ConvertARGBToY_SSE41() local 479 for (i = 0; i < max_width; i += 16) { in ConvertARGBToY_SSE41() 507 const int max_width = src_width & ~31; in ConvertARGBToUV_SSE41() local 509 for (i = 0; i < max_width; i += 32, u += 16, v += 16) { in ConvertARGBToUV_SSE41() 573 const int max_width = width & ~15; in ConvertRGBA32ToUV_SSE41() local 574 const uint16_t* const last_rgb = rgb + 4 * max_width; in ConvertRGBA32ToUV_SSE41() [all …]
|
A D | yuv_sse2.c | 563 const int max_width = width & ~31; in ConvertRGB24ToY_SSE2() local 565 for (i = 0; i < max_width; rgb += 3 * 16 * 2) { in ConvertRGB24ToY_SSE2() 597 const int max_width = width & ~31; in ConvertBGR24ToY_SSE2() local 599 for (i = 0; i < max_width; bgr += 3 * 16 * 2) { in ConvertBGR24ToY_SSE2() 631 const int max_width = width & ~15; in ConvertARGBToY_SSE2() local 633 for (i = 0; i < max_width; i += 16) { in ConvertARGBToY_SSE2() 661 const int max_width = src_width & ~31; in ConvertARGBToUV_SSE2() local 663 for (i = 0; i < max_width; i += 32, u += 16, v += 16) { in ConvertARGBToUV_SSE2() 717 const int max_width = width & ~15; in ConvertRGBA32ToUV_SSE2() local 718 const uint16_t* const last_rgb = rgb + 4 * max_width; in ConvertRGBA32ToUV_SSE2() [all …]
|
/AliOS-Things-master/components/freetype/include/ |
A D | ftwinfnt.h | 205 FT_UShort max_width; member
|
/AliOS-Things-master/components/amp/jslib/src/ |
A D | repl.js | 684 var tab, res, s, i, j, len, t, max_width, col, n_cols, row, n_rows; 717 max_width = 0; 719 max_width = Math.max(max_width, tab[i].length); 720 max_width += 2; 721 n_cols = Math.max(1, Math.floor((term_width + 1) / max_width)); 732 s = s.padEnd(max_width);
|
/AliOS-Things-master/components/amp/engine/quickjs_engine/quickjs/ |
A D | repl.js | 676 var tab, res, s, i, j, len, t, max_width, col, n_cols, row, n_rows; 709 max_width = 0; 711 max_width = Math.max(max_width, tab[i].length); 712 max_width += 2; 713 n_cols = Math.max(1, Math.floor((term_width + 1) / max_width)); 724 s = s.padEnd(max_width);
|
/AliOS-Things-master/components/freetype/src/winfonts/ |
A D | winfnt.c | 167 FT_FRAME_USHORT_LE( max_width ), 749 if ( font->header.avg_width == font->header.max_width ) in FNT_Face_Init() 910 size->metrics.max_advance = header->max_width * 64; in FNT_Size_Select()
|
/AliOS-Things-master/components/SDL2/src/video/x11/ |
A D | SDL_x11window.c | 547 sizehints->min_width = sizehints->max_width = window->w; in X11_CreateWindow() 890 sizehints->max_width = window->max_w; in X11_SetWindowMaximumSize() 932 sizehints->min_width = sizehints->max_width = window->w; in X11_SetWindowSize() 1089 sizehints->max_width = (window->max_w == 0) ? maxsize : window->max_w; in X11_SetWindowResizable() 1094 sizehints->max_width = window->w; in X11_SetWindowResizable() 1284 sizehints->min_width = sizehints->max_width = window->windowed.w; in X11_SetWindowFullscreenViaWM()
|
A D | SDL_x11messagebox.c | 525 sizehints->min_width = sizehints->max_width = data->dialog_width; in X11_MessageBoxCreateWindow()
|
/AliOS-Things-master/components/py_engine/modules/video/ |
A D | ak_camera.c | 188 dev_attr.max_width = cctx.main_width; in vi_para_init()
|
/AliOS-Things-master/components/freetype/include/internal/ |
A D | tttypes.h | 527 FT_Byte max_width; member
|
/AliOS-Things-master/components/SDL2/src/image/external/libpng-1.6.37/contrib/gregbook/ |
A D | rpng-x.c | 580 size_hints->min_width = size_hints->max_width = (int)image_width; in rpng_x_create_window()
|
A D | rpng2-x.c | 964 size_hints->min_width = size_hints->max_width = (int)rpng2_info.width; in rpng2_x_create_window()
|
/AliOS-Things-master/components/SDL2/src/image/external/tiff-4.0.9/tools/ |
A D | tiffcrop.c | 5102 uint32 i, max_width, max_length, zwidth, zlength, buffsize; in computeInputPixelOffsets() local 5143 max_width = max_length = 0; in computeInputPixelOffsets() 5183 if (zwidth > max_width) in computeInputPixelOffsets() 5184 max_width = zwidth; in computeInputPixelOffsets()
|