/external/chromium_org/ppapi/cpp/ |
point.h | 27 /// @param[in] in_x An int32_t value representing a horizontal coordinate 31 Point(int32_t in_x, int32_t in_y) { 32 point_.x = in_x; 76 /// @param[in] in_x A new x value. 77 void set_x(int32_t in_x) { 78 point_.x = in_x; 166 /// @param[in] in_x An value representing a horizontal coordinate of a 171 FloatPoint(float in_x, float in_y) { 172 float_point_.x = in_x; 215 /// @param[in] in_x A new x value [all...] |
rect.h | 131 /// @param[in] in_x A new x value. 132 void set_x(int32_t in_x) { 133 rect_.point.x = in_x;
|
/external/chromium_org/third_party/freetype/include/freetype/internal/ |
ftcalc.h | 146 ft_corner_orientation( FT_Pos in_x, 157 ft_corner_is_flat( FT_Pos in_x,
|
/external/freetype/include/freetype/internal/ |
ftcalc.h | 118 ft_corner_orientation( FT_Pos in_x, 129 ft_corner_is_flat( FT_Pos in_x,
|
/external/chromium_org/third_party/freetype/src/base/ |
ftcalc.c | 840 ft_corner_orientation( FT_Pos in_x, 851 if ( in_x >= 0 ) 856 else if ( in_x == 0 ) 873 result = -in_x; 875 result = in_x; 881 FT_Int64 delta = (FT_Int64)in_x * out_y - (FT_Int64)in_y * out_x; 895 ft_multo64( (FT_Int32)in_x, (FT_Int32)out_y, &z1 ); 920 ft_corner_is_flat( FT_Pos in_x, 925 FT_Pos ax = in_x; 945 ax = out_x + in_x; [all...] |
/external/freetype/src/base/ |
ftcalc.c | 857 ft_corner_orientation( FT_Pos in_x, 868 if ( in_x >= 0 ) 873 else if ( in_x == 0 ) 890 result = -in_x; 892 result = in_x; 898 FT_Int64 delta = (FT_Int64)in_x * out_y - (FT_Int64)in_y * out_x; 912 ft_multo64( (FT_Int32)in_x, (FT_Int32)out_y, &z1 ); 937 ft_corner_is_flat( FT_Pos in_x, 942 FT_Pos ax = in_x; 962 ax = out_x + in_x; [all...] |
/external/chromium_org/third_party/freetype/src/pshinter/ |
pshalgo.c | 974 psh_corner_orientation( FT_Pos in_x, 985 if ( in_x >= 0 ) 990 else if ( in_x == 0 ) 1007 result = -in_x; 1009 result = in_x; 1013 long long delta = (long long)in_x * out_y - (long long)in_y * out_x; 1039 FT_Pos in_x, in_y, out_x, out_y; local 1058 in_x = end->org_u - start->org_u; 1061 } while ( in_x == 0 && in_y == 0 ); 1079 orient_prev = psh_corner_orientation( in_x, in_y, out_x, out_y ) [all...] |
/external/freetype/src/pshinter/ |
pshalgo.c | 973 psh_corner_orientation( FT_Pos in_x, 984 if ( in_x >= 0 ) 989 else if ( in_x == 0 ) 1006 result = -in_x; 1008 result = in_x; 1012 long long delta = (long long)in_x * out_y - (long long)in_y * out_x; 1038 FT_Pos in_x, in_y, out_x, out_y; local 1057 in_x = end->org_u - start->org_u; 1060 } while ( in_x == 0 && in_y == 0 ); 1078 orient_prev = psh_corner_orientation( in_x, in_y, out_x, out_y ) [all...] |
/external/chromium_org/third_party/freetype/src/autofit/ |
afhints.c | 717 FT_Pos in_x = 0; local 731 in_x = first->fx - prev->fx; 733 in_dir = af_direction_compute( in_x, in_y ); 758 if ( ft_corner_is_flat( in_x, in_y, out_x, out_y ) ) 764 in_x = out_x;
|
/external/freetype/src/autofit/ |
afhints.c | 739 FT_Pos in_x = 0; local 753 in_x = first->fx - prev->fx; 755 in_dir = af_direction_compute( in_x, in_y ); 780 if ( ft_corner_is_flat( in_x, in_y, out_x, out_y ) ) 786 in_x = out_x; [all...] |
/external/libvpx/libvpx/vp9/common/x86/ |
vp9_idct_intrin_sse2.c | 18 #define RECON_AND_STORE4X4(dest, in_x) \ 22 d0 = _mm_add_epi16(in_x, d0); \ 494 #define RECON_AND_STORE(dest, in_x) \ 498 d0 = _mm_add_epi16(in_x, d0); \ [all...] |