Home | History | Annotate | Download | only in bitmap

Lines Matching defs:picture

102                *picture,
111 picture = mallocarray(widthBytes, height);
112 if (!picture) {
113 bdfError("Couldn't allocate picture (%d*%d)\n", widthBytes, height);
117 picture = NULL;
118 pCI->bits = (char *) picture;
154 picture[nextByte++] = bdfHexByte(pInBits);
159 picture[nextByte++] = 0;
164 if (mask && picture[nextByte - 1] & ~mask) {
165 picture[nextByte - 1] &= mask;
172 picture[nextByte++] = 0;
188 if (picture != NULL) {
190 BitOrderInvert(picture, nextByte);
193 TwoByteSwap(picture, nextByte);
195 FourByteSwap(picture, nextByte);
200 if (picture)
201 free(picture);