Home | History | Annotate | Download | only in mosaic

Lines Matching defs:border2

30     real border2 = (real) (border << 1);
31 int lines, size = calcStorage(width, height, border2, levels, &lines);
45 curr->pitch = (real) (width + border2);
49 for (int j = height + border2; j--; y++, position += curr->pitch) {
64 real border2 = (real) (border << 1);
66 calloc(sizeof(PyramidShort) + sizeof(short *) * (height + border2) +
67 sizeof(short) * (width + border2) * (height + border2), 1);
71 short *position = (short *) &y[height + border2];
75 img->pitch = (real) (width + border2);
80 for (int j = height + border2; j--; y++, position += img->pitch) {
96 unsigned int PyramidShort::calcStorage(real width, real height, real border2, int levels, int *lines)
103 size += (width + border2) * (height + border2);
104 *lines += height + border2;