Home | History | Annotate | Download | only in mosaic

Lines Matching refs:real

27 PyramidShort *PyramidShort::allocatePyramidPacked(real levels,
28 real width, real height, real border)
30 real border2 = (real) (border << 1);
45 curr->pitch = (real) (width + border2);
62 PyramidShort *PyramidShort::allocateImage(real width, real height, real border)
64 real border2 = (real) (border << 1);
75 img->pitch = (real) (width + border2);
77 position += border; // Move position down to origin of real image
96 unsigned int PyramidShort::calcStorage(real width, real height, real border2, int levels, int *lines)