Lines Matching refs:dmsx
251 int dmsx, dmsy; in sixel_decode() local
370 dmsx = imsx > attributed_ph ? imsx : attributed_ph; in sixel_decode()
372 if (SetImageExtent(image,dmsx,dmsy,exception) == MagickFalse) in sixel_decode()
374 dmbuf = (sixel_pixel_t *) AcquireQuantumMemory(dmsx,dmsy*sizeof(sixel_pixel_t)); in sixel_decode()
379 … (void) memset(dmbuf, background_color_index, (size_t) dmsx * dmsy * sizeof(sixel_pixel_t)); in sixel_decode()
381 (void) memcpy(dmbuf + dmsx * y, imbuf + imsx * y, imsx * sizeof(sixel_pixel_t)); in sixel_decode()
384 imsx = dmsx; in sixel_decode()
448 dmsx = nx; in sixel_decode()
450 if (SetImageExtent(image,dmsx,dmsy,exception) == MagickFalse) in sixel_decode()
452 dmbuf = (sixel_pixel_t *) AcquireQuantumMemory(dmsx, dmsy*sizeof(sixel_pixel_t)); in sixel_decode()
457 … (void) memset(dmbuf, background_color_index, (size_t) dmsx * dmsy * sizeof(sixel_pixel_t)); in sixel_decode()
459 (void) memcpy(dmbuf + dmsx * y, imbuf + imsx * y, imsx * sizeof(sixel_pixel_t)); in sixel_decode()
462 imsx = dmsx; in sixel_decode()
547 dmsx = max_x; in sixel_decode()
549 if (SetImageExtent(image,dmsx,dmsy,exception) == MagickFalse) in sixel_decode()
554 … if ((dmbuf = (sixel_pixel_t *) AcquireQuantumMemory(dmsx,dmsy*sizeof(sixel_pixel_t))) == NULL) { in sixel_decode()
559 (void) memcpy(dmbuf + dmsx * y, imbuf + imsx * y, dmsx * sizeof(sixel_pixel_t)); in sixel_decode()
562 imsx = dmsx; in sixel_decode()