Searched defs:in_x (Results 1 - 6 of 6) sorted by relevance

/external/chromium_org/ppapi/cpp/
H A Dpoint.h27 /// @param[in] in_x An int32_t value representing a horizontal coordinate
31 Point(int32_t in_x, int32_t in_y) { argument
32 point_.x = in_x;
76 /// @param[in] in_x A new x value.
77 void set_x(int32_t in_x) { argument
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) { argument
172 float_point_.x = in_x;
215 /// @param[in] in_x
216 set_x(float in_x) argument
[all...]
H A Drect.h131 /// @param[in] in_x A new x value.
132 void set_x(int32_t in_x) { argument
133 rect_.point.x = in_x;
/external/chromium_org/third_party/freetype/src/autofit/
H A Dafhints.c717 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/
H A Dafhints.c739 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;
/external/chromium_org/third_party/freetype/src/pshinter/
H A Dpshalgo.c974 psh_corner_orientation( FT_Pos in_x, argument
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_
[all...]
/external/freetype/src/pshinter/
H A Dpshalgo.c973 psh_corner_orientation( FT_Pos in_x, argument
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_
[all...]

Completed in 201 milliseconds