/AliOS-Things-master/components/SDL2/src/image/external/libpng-1.6.37/ |
A D | png.c | 1286 if (xy->redx < 0 || xy->redx > PNG_FP_1) return 1; 1287 if (xy->redy < 0 || xy->redy > PNG_FP_1-xy->redx) return 1; 1289 if (xy->greeny < 0 || xy->greeny > PNG_FP_1-xy->greenx) return 1; 1291 if (xy->bluey < 0 || xy->bluey > PNG_FP_1-xy->bluex) return 1; 1293 if (xy->whitey < 5 || xy->whitey > PNG_FP_1-xy->whitex) return 1; 1474 if (png_muldiv(&left, xy->greenx-xy->bluex, xy->redy - xy->bluey, 7) == 0) 1476 if (png_muldiv(&right, xy->greeny-xy->bluey, xy->redx - xy->bluex, 7) == 0) 1481 if (png_muldiv(&left, xy->greenx-xy->bluex, xy->whitey-xy->bluey, 7) == 0) 1483 if (png_muldiv(&right, xy->greeny-xy->bluey, xy->whitex-xy->bluex, 7) == 0) 1496 if (png_muldiv(&left, xy->redy-xy->bluey, xy->whitex-xy->bluex, 7) == 0) [all …]
|
A D | pngset.c | 45 png_xy xy; in png_set_cHRM_fixed() local 52 xy.redx = red_x; in png_set_cHRM_fixed() 53 xy.redy = red_y; in png_set_cHRM_fixed() 54 xy.greenx = green_x; in png_set_cHRM_fixed() 55 xy.greeny = green_y; in png_set_cHRM_fixed() 56 xy.bluex = blue_x; in png_set_cHRM_fixed() 57 xy.bluey = blue_y; in png_set_cHRM_fixed() 58 xy.whitex = white_x; in png_set_cHRM_fixed() 59 xy.whitey = white_y; in png_set_cHRM_fixed() 61 if (png_colorspace_set_chromaticities(png_ptr, &info_ptr->colorspace, &xy, in png_set_cHRM_fixed()
|
A D | pngrutil.c | 1243 png_xy xy; in png_handle_cHRM() local 1269 xy.whitex = png_get_fixed_point(NULL, buf); in png_handle_cHRM() 1270 xy.whitey = png_get_fixed_point(NULL, buf + 4); in png_handle_cHRM() 1278 if (xy.whitex == PNG_FIXED_ERROR || in png_handle_cHRM() 1279 xy.whitey == PNG_FIXED_ERROR || in png_handle_cHRM() 1280 xy.redx == PNG_FIXED_ERROR || in png_handle_cHRM() 1281 xy.redy == PNG_FIXED_ERROR || in png_handle_cHRM() 1282 xy.greenx == PNG_FIXED_ERROR || in png_handle_cHRM() 1283 xy.greeny == PNG_FIXED_ERROR || in png_handle_cHRM() 1284 xy.bluex == PNG_FIXED_ERROR || in png_handle_cHRM() [all …]
|
A D | pngwutil.c | 1322 png_write_cHRM_fixed(png_structrp png_ptr, const png_xy *xy) in png_write_cHRM_fixed() argument 1329 png_save_int_32(buf, xy->whitex); in png_write_cHRM_fixed() 1330 png_save_int_32(buf + 4, xy->whitey); in png_write_cHRM_fixed() 1332 png_save_int_32(buf + 8, xy->redx); in png_write_cHRM_fixed() 1333 png_save_int_32(buf + 12, xy->redy); in png_write_cHRM_fixed() 1335 png_save_int_32(buf + 16, xy->greenx); in png_write_cHRM_fixed() 1336 png_save_int_32(buf + 20, xy->greeny); in png_write_cHRM_fixed() 1338 png_save_int_32(buf + 24, xy->bluex); in png_write_cHRM_fixed() 1339 png_save_int_32(buf + 28, xy->bluey); in png_write_cHRM_fixed()
|
A D | pngpriv.h | 1146 const png_xy *xy), PNG_EMPTY); 1653 (png_const_structrp png_ptr, png_colorspacerp colorspace, const png_xy *xy,
|
/AliOS-Things-master/components/freetype/src/base/ |
A D | ftcalc.c | 721 FT_Fixed xx, xy, yx, yy; in FT_Matrix_Multiply() local 727 xx = FT_MulFix( a->xx, b->xx ) + FT_MulFix( a->xy, b->yx ); in FT_Matrix_Multiply() 728 xy = FT_MulFix( a->xx, b->xy ) + FT_MulFix( a->xy, b->yy ); in FT_Matrix_Multiply() 730 yy = FT_MulFix( a->yx, b->xy ) + FT_MulFix( a->yy, b->yy ); in FT_Matrix_Multiply() 732 b->xx = xx; b->xy = xy; in FT_Matrix_Multiply() 750 FT_MulFix( matrix->xy, matrix->yx ); in FT_Matrix_Invert() 755 matrix->xy = - FT_DivFix( matrix->xy, delta ); in FT_Matrix_Invert() 775 FT_Fixed xx, xy, yx, yy; in FT_Matrix_Multiply_Scaled() local 784 xy = FT_MulDiv( a->xx, b->xy, val ) + FT_MulDiv( a->xy, b->yy, val ); in FT_Matrix_Multiply_Scaled() 788 b->xx = xx; b->xy = xy; in FT_Matrix_Multiply_Scaled() [all …]
|
A D | ftsynth.c | 66 transform.xy = 0x0366AL; in FT_GlyphSlot_Oblique()
|
A D | ftoutln.c | 692 FT_MulFix( vector->y, matrix->xy ); in FT_Vector_Transform()
|
A D | ftobjs.c | 508 internal->transform_matrix.xy = 0; in FT_Set_Transform() 517 if ( ( matrix->xy | matrix->yx ) || in FT_Set_Transform() 2262 internal->transform_matrix.xy = 0; in FT_Open_Face()
|
/AliOS-Things-master/components/SDL2/src/image/external/libwebp-1.0.2/src/dsp/ |
A D | lossless_enc.c | 391 const int xy = x + Y[i]; in CombinedShannonEntropy_C() local 394 sumXY += xy; in CombinedShannonEntropy_C() 395 retval -= VP8LFastSLog2(xy); in CombinedShannonEntropy_C() 491 const uint32_t xy = X[i] + Y[i]; in GetCombinedEntropyUnrefined_C() local 492 if (xy != xy_prev) { in GetCombinedEntropyUnrefined_C() 493 GetEntropyUnrefinedHelper(xy, i, &xy_prev, &i_prev, bit_entropy, stats); in GetCombinedEntropyUnrefined_C() 627 const int xy = X[i + 2] + Y[i + 2]; in ExtraCostCombined_C() local 628 cost += (i >> 1) * xy; in ExtraCostCombined_C()
|
A D | lossless_enc_mips32.c | 278 const uint32_t xy = X[i] + Y[i]; in GetCombinedEntropyUnrefined_MIPS32() local 279 if (xy != xy_prev) { in GetCombinedEntropyUnrefined_MIPS32() 280 GetEntropyUnrefinedHelper(xy, i, &xy_prev, &i_prev, entropy, stats); in GetCombinedEntropyUnrefined_MIPS32()
|
/AliOS-Things-master/components/freetype/src/cff/ |
A D | cffobjs.h | 106 FT_Fixed xx, xy; /* transformation matrix coefficients */ member
|
A D | cffobjs.c | 653 matrix->xy = FT_DivFix( matrix->xy, temp ); in cff_face_init() 720 matrix->xy = FT_DivFix( matrix->xy, temp ); in cff_face_init()
|
A D | cffparse.c | 547 matrix->xy = 0; in cff_parse_font_matrix() 557 matrix->xy = cff_parse_fixed_scaled( data++, scaling ); in cff_parse_font_matrix() 566 (double)matrix->xy / *upm / 65536, in cff_parse_font_matrix()
|
/AliOS-Things-master/components/freetype/include/ |
A D | fttypes.h | 383 FT_Fixed xx, xy; member
|
/AliOS-Things-master/components/freetype/src/truetype/ |
A D | ttgload.c | 587 FT_Fixed xx, xy, yy, yx; in TT_Load_Composite_Glyph() local 635 xy = yx = 0; in TT_Load_Composite_Glyph() 651 xy = (FT_Fixed)FT_NEXT_SHORT( p ) << 2; in TT_Load_Composite_Glyph() 656 subglyph->transform.xy = xy; in TT_Load_Composite_Glyph() 1100 int c = subglyph->transform.xy > 0 ? subglyph->transform.xy in TT_Process_Composite_Component() 1101 : -subglyph->transform.xy; in TT_Process_Composite_Component() 1122 subglyph->transform.xy ); in TT_Process_Composite_Component()
|
A D | ttobjs.h | 193 FT_Fixed xx, xy; /* transformation matrix coefficients */ member
|
/AliOS-Things-master/components/SDL2/src/image/external/libwebp-1.0.2/examples/ |
A D | test_ref.ppm | 4 …xy�}�������������������t�w�����������������������������������������>>>AAAMMMFFFHHHJJJAAA@@>PQMPQ…
|
/AliOS-Things-master/components/freetype/src/type1/ |
A D | t1gload.c | 431 font_matrix.xy != 0 || font_matrix.yx != 0 ) in T1_Load_Glyph()
|
A D | t1driver.c | 210 val = type1->font_matrix.xy; in t1_ps_get_font_value()
|
/AliOS-Things-master/components/freetype/src/pfr/ |
A D | pfrobjs.c | 417 font_matrix.xy = face->log_font.matrix[2] << 8; in pfr_slot_load()
|
/AliOS-Things-master/components/freetype/src/cid/ |
A D | cidload.c | 202 matrix->xy = temp[2]; in cid_parse_font_matrix()
|
/AliOS-Things-master/components/SDL2/src/image/ |
A D | config.status | 267 xy) ECHO_C='\c';;
|
/AliOS-Things-master/components/freetype/src/type42/ |
A D | t42parse.c | 297 matrix->xy = temp[2]; in t42_parse_font_matrix()
|
/AliOS-Things-master/components/SDL2/ |
A D | config.status | 267 xy) ECHO_C='\c';;
|