Home | History | Annotate | Download | only in mosaic

Lines Matching refs:in

5  * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
63 static void convert9to33(double out[3][3], double in[9]) {
64 out[0][0] = in[0];
65 out[0][1] = in[1];
66 out[0][2] = in[2];
68 out[1][0] = in[3];
69 out[1][1] = in[4];
70 out[1][2] = in[5];
72 out[2][0] = in[6];
73 out[2][1] = in[7];
74 out[2][2] = in[8];
121 static void convert33to9(double out[9], double in[3][3]) {
122 out[0] = in[0][0];
123 out[1] = in[0][1];
124 out[2] = in[0][2];
126 out[3] = in[1][0];
127 out[4] = in[1][1];
128 out[5] = in[1][2];
130 out[6] = in[2][0];
131 out[7] = in[2][1];
132 out[8] = in[2][2];