Lines Matching defs:out
86 matrix *out = av_mallocz(sizeof (matrix) + height * width * sizeof (float));
87 if (out == NULL) {
91 out->width = width;
92 out->height = height;
93 return out;
98 matrix *out;
103 out = new_matrix(b->width, a->height);
104 for (int j = 0; j < out->height; ++j)
105 for (int i = 0; i < out->width; ++i) {
109 out->d[j * out->width + i] = sum;
111 return out;