Searched refs:y_pos (Results 1 – 7 of 7) sorted by relevance
/AliOS-Things-master/components/freetype/src/sfnt/ |
A D | ttsbit.c | 523 FT_Int y_pos ); 558 y_pos < 0 || y_pos + height > bit_height ) in tt_sbit_decoder_load_byte_aligned() 574 line += y_pos * pitch + ( x_pos >> 3 ); in tt_sbit_decoder_load_byte_aligned() 697 y_pos < 0 || y_pos + height > bit_height ) in tt_sbit_decoder_load_bit_aligned() 715 line += y_pos * pitch + ( x_pos >> 3 ); in tt_sbit_decoder_load_bit_aligned() 798 FT_Int y_pos ) in tt_sbit_decoder_load_compound() argument 865 FT_Int y_pos ) in tt_sbit_decoder_load_png() argument 888 y_pos, in tt_sbit_decoder_load_png() 911 FT_Int y_pos ) in tt_sbit_decoder_load_bitmap() argument 1052 FT_Int y_pos ) in tt_sbit_decoder_load_image() argument [all …]
|
/AliOS-Things-master/components/SDL2/src/image/external/libwebp-1.0.2/src/dec/ |
A D | io_dec.c | 355 static int ExportRGB(WebPDecParams* const p, int y_pos) { in ExportRGB() argument 359 uint8_t* dst = buf->rgba + y_pos * buf->stride; in ExportRGB() 365 assert(y_pos + num_lines_out < p->output->height); in ExportRGB() 404 static int ExportAlpha(WebPDecParams* const p, int y_pos, int max_lines_out) { in ExportAlpha() argument 406 uint8_t* const base_rgba = buf->rgba + y_pos * buf->stride; in ExportAlpha() 418 assert(y_pos + num_lines_out < p->output->height); in ExportAlpha() 431 static int ExportAlphaRGBA4444(WebPDecParams* const p, int y_pos, in ExportAlphaRGBA4444() argument 434 uint8_t* const base_rgba = buf->rgba + y_pos * buf->stride; in ExportAlphaRGBA4444() 449 assert(y_pos + num_lines_out < p->output->height); in ExportAlphaRGBA4444()
|
A D | vp8l_dec.c | 646 uint8_t* const u = buf->u + (y_pos >> 1) * buf->u_stride; in ConvertToYUVA() 650 WebPConvertARGBToUV(src, u, v, width, !(y_pos & 1)); in ConvertToYUVA() 654 uint8_t* const a = buf->a + y_pos * buf->a_stride; in ConvertToYUVA() 671 ConvertToYUVA(src, dst_width, y_pos, dec->output_); in ExportYUVA() 672 ++y_pos; in ExportYUVA() 681 int y_pos = dec->last_out_row_; in EmitRescaledRowsYUVA() local 692 y_pos += ExportYUVA(dec, y_pos); in EmitRescaledRowsYUVA() 694 return y_pos; in EmitRescaledRowsYUVA() 700 int y_pos = dec->last_out_row_; in EmitRowsYUVA() local 704 ++y_pos; in EmitRowsYUVA() [all …]
|
A D | webpi_dec.h | 31 typedef int (*OutputRowFunc)(WebPDecParams* const p, int y_pos,
|
/AliOS-Things-master/components/freetype/src/pfr/ |
A D | pfrgload.c | 566 FT_Int x_pos, y_pos; in pfr_glyph_load_compound() local 625 y_pos = 0; in pfr_glyph_load_compound() 666 y_pos = PFR_NEXT_SHORT( p ); in pfr_glyph_load_compound() 671 y_pos += PFR_NEXT_INT8( p ); in pfr_glyph_load_compound() 679 subglyph->y_delta = y_pos; in pfr_glyph_load_compound()
|
/AliOS-Things-master/components/amp/engine/duktape_engine/addons/hardware/lcd/ |
A D | module_lcd.c | 248 int y_pos = duk_get_int(ctx, -5); in native_lcd_show() local 260 lcd_draw_str(x_pos, y_pos, (uint8_t *)str, front_size, color, is_newline); in native_lcd_show()
|
/AliOS-Things-master/components/littlevgl/src/lv_objx/ |
A D | lv_calendar.c | 581 uint8_t y_pos = 0; in calculate_touched_day() local 582 y_pos = (touched_point->y - days_area.y1) / h; in calculate_touched_day() 583 if(y_pos > 5) y_pos = 5; in calculate_touched_day() 586 i_pos = (y_pos * 7) + x_pos; in calculate_touched_day()
|
Completed in 17 milliseconds