Lines Matching full:static
31 static void fromFloat(SkScalar dst[], const float src[], int n) {
37 static void toFloat(float dst[], const SkScalar src[], int n) {
44 static ANPMatrix* anp_newMatrix() {
48 static void anp_deleteMatrix(ANPMatrix* matrix) {
52 static ANPMatrixFlag anp_getFlags(const ANPMatrix* matrix) {
56 static void anp_copy(ANPMatrix* dst, const ANPMatrix* src) {
60 static void anp_get3x3(const ANPMatrix* matrix, float dst[9]) {
66 static void anp_set3x3(ANPMatrix* matrix, const float src[9]) {
72 static void anp_setIdentity(ANPMatrix* matrix) {
76 static void anp_preTranslate(ANPMatrix* matrix, float tx, float ty) {
80 static void anp_postTranslate(ANPMatrix* matrix, float tx, float ty) {
84 static void anp_preScale(ANPMatrix* matrix, float sx, float sy) {
88 static void anp_postScale(ANPMatrix* matrix, float sx, float sy) {
92 static void anp_preSkew(ANPMatrix* matrix, float kx, float ky) {
96 static void anp_postSkew(ANPMatrix* matrix, float kx, float ky) {
100 static void anp_preRotate(ANPMatrix* matrix, float degrees) {
104 static void anp_postRotate(ANPMatrix* matrix, float degrees) {
108 static void anp_preConcat(ANPMatrix* matrix, const ANPMatrix* other) {
112 static void anp_postConcat(ANPMatrix* matrix, const ANPMatrix* other) {
116 static bool anp_invert(ANPMatrix* dst, const ANPMatrix* src) {
120 static void anp_mapPoints(ANPMatrix* matrix, float dst[], const float src[],