Home | History | Annotate | Download | only in src

Lines Matching defs:Size

500     int       size,
613 * image of size Width by Height should be stored. Sometimes only the size and
615 * NULL. The size of the memory required for the image is returned by this
635 int Size, tmp;
656 Size = (*Width + 3) & ~3;
658 pPitch[0] = Size;
659 Size *= *Height;
661 pOffset[1] = Size;
666 Size += tmp;
668 pOffset[2] = Size;
669 Size += tmp;
674 Size = *Width << 1;
676 pPitch[0] = Size;
677 Size *= *Height;
681 Size = 0;
685 return Size;
1571 int Size
1574 if (Size <= 0)
1582 if ((pLinear->size >= Size) ||
1583 xf86ResizeOffscreenLinear(pLinear, Size))
1593 pLinear = xf86AllocateOffscreenLinear(pScreen, Size, 16, NULL, NULL, NULL);
1602 if (maxSize < Size)
1607 xf86AllocateOffscreenLinear(pScreen, Size, 16, NULL, NULL, NULL);
1619 int size,
1629 if (area->size >= size) {
1637 area = exaOffscreenAlloc(pScreen, size, 64, TRUE, NULL, NULL);
1650 /* XAA allocates in units of pixels at the screen bpp, so adjust size
1653 size = (size + cpp - 1) / cpp;
1655 linear = ATIResizeOffscreenLinear(pScreen, linear, size);