Home
last modified time | relevance | path

Searched refs:xy (Results 1 – 25 of 44) sorted by relevance

12

/AliOS-Things-master/components/SDL2/src/image/external/libpng-1.6.37/
A Dpng.c1286 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 Dpngset.c45 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 Dpngrutil.c1243 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 Dpngwutil.c1322 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 Dpngpriv.h1146 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 Dftcalc.c721 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 Dftsynth.c66 transform.xy = 0x0366AL; in FT_GlyphSlot_Oblique()
A Dftoutln.c692 FT_MulFix( vector->y, matrix->xy ); in FT_Vector_Transform()
A Dftobjs.c508 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 Dlossless_enc.c391 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 Dlossless_enc_mips32.c278 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 Dcffobjs.h106 FT_Fixed xx, xy; /* transformation matrix coefficients */ member
A Dcffobjs.c653 matrix->xy = FT_DivFix( matrix->xy, temp ); in cff_face_init()
720 matrix->xy = FT_DivFix( matrix->xy, temp ); in cff_face_init()
A Dcffparse.c547 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 Dfttypes.h383 FT_Fixed xx, xy; member
/AliOS-Things-master/components/freetype/src/truetype/
A Dttgload.c587 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 Dttobjs.h193 FT_Fixed xx, xy; /* transformation matrix coefficients */ member
/AliOS-Things-master/components/SDL2/src/image/external/libwebp-1.0.2/examples/
A Dtest_ref.ppm4xy�}�������������������t�w�����������������������������������������>>>AAAMMMFFFHHHJJJAAA@@>PQMPQ…
/AliOS-Things-master/components/freetype/src/type1/
A Dt1gload.c431 font_matrix.xy != 0 || font_matrix.yx != 0 ) in T1_Load_Glyph()
A Dt1driver.c210 val = type1->font_matrix.xy; in t1_ps_get_font_value()
/AliOS-Things-master/components/freetype/src/pfr/
A Dpfrobjs.c417 font_matrix.xy = face->log_font.matrix[2] << 8; in pfr_slot_load()
/AliOS-Things-master/components/freetype/src/cid/
A Dcidload.c202 matrix->xy = temp[2]; in cid_parse_font_matrix()
/AliOS-Things-master/components/SDL2/src/image/
A Dconfig.status267 xy) ECHO_C='\c';;
/AliOS-Things-master/components/freetype/src/type42/
A Dt42parse.c297 matrix->xy = temp[2]; in t42_parse_font_matrix()
/AliOS-Things-master/components/SDL2/
A Dconfig.status267 xy) ECHO_C='\c';;

Completed in 68 milliseconds

12