rgb32torgb444.c
上传用户:zhongxx05
上传日期:2007-06-06
资源大小:33641k
文件大小:66k
源码类别:

Symbian

开发平台:

C/C++

  1. /* ***** BEGIN LICENSE BLOCK ***** 
  2.  * Version: RCSL 1.0/RPSL 1.0 
  3.  *  
  4.  * Portions Copyright (c) 1995-2002 RealNetworks, Inc. All Rights Reserved. 
  5.  *      
  6.  * The contents of this file, and the files included with this file, are 
  7.  * subject to the current version of the RealNetworks Public Source License 
  8.  * Version 1.0 (the "RPSL") available at 
  9.  * http://www.helixcommunity.org/content/rpsl unless you have licensed 
  10.  * the file under the RealNetworks Community Source License Version 1.0 
  11.  * (the "RCSL") available at http://www.helixcommunity.org/content/rcsl, 
  12.  * in which case the RCSL will apply. You may also obtain the license terms 
  13.  * directly from RealNetworks.  You may not use this file except in 
  14.  * compliance with the RPSL or, if you have a valid RCSL with RealNetworks 
  15.  * applicable to this file, the RCSL.  Please see the applicable RPSL or 
  16.  * RCSL for the rights, obligations and limitations governing use of the 
  17.  * contents of the file.  
  18.  *  
  19.  * This file is part of the Helix DNA Technology. RealNetworks is the 
  20.  * developer of the Original Code and owns the copyrights in the portions 
  21.  * it created. 
  22.  *  
  23.  * This file, and the files included with this file, is distributed and made 
  24.  * available on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER 
  25.  * EXPRESS OR IMPLIED, AND REALNETWORKS HEREBY DISCLAIMS ALL SUCH WARRANTIES, 
  26.  * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, FITNESS 
  27.  * FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. 
  28.  * 
  29.  * Technology Compatibility Kit Test Suite(s) Location: 
  30.  *    http://www.helixcommunity.org/content/tck 
  31.  * 
  32.  * Contributor(s): 
  33.  *  
  34.  * ***** END LICENSE BLOCK ***** */
  35. #include "hlxclib/string.h"
  36. #include "nostatic/colorlib.h"
  37. #include "nostatic/rgb.h"
  38. #include "nostatic/rgbcommon.h"
  39. void
  40. RGB32toRGB444_ROW_SHRINK (unsigned char *dest_ptr,
  41.                           int dest_dx, unsigned char *src_ptr, int src_dx)
  42. {
  43.     register unsigned char *d = dest_ptr;
  44.     register unsigned char *s = src_ptr;
  45.     register int count = dest_dx;
  46.     register int limit = src_dx >> 1;
  47.     register int step = dest_dx;
  48.     if (count)
  49.     {
  50.         do 
  51.         {
  52.             register unsigned int da_rgb; 
  53.             register unsigned int sa_rgb;   
  54.             sa_rgb = *(unsigned int *) (s); 
  55.             da_rgb =((8 + 4 <8)? (((((16 + 8 <8) ? ((sa_rgb << ((8 - (16 + 8)) & 0x1F)) & (0x100 -(1U <<(8 -8)))): ((sa_rgb >> (((16 + 8) - 8) & 0x1F)) &(0x100 - (1U << (8 - 8)))))) & (0x100 - (1U << (8 -4))))>> ((8 - (8 + 4)) & 0x1F)): (((((16 + 8 <8) ? ((sa_rgb << ((8 - (16 + 8)) & 0x1F)) & (0x100 -(1U <<(8 -8)))): ((sa_rgb >> (((16 + 8) - 8) & 0x1F)) &(0x100 - (1U << (8 - 8)))))) & (0x100 - (1U << (8 -4))))<< (((8 + 4) - 8) & 0x1F))) | ((4 + 4 <8)? (((((8 + 8 <8) ? ((sa_rgb <<((8 -(8 +8)) &0x1F)) &(0x100 -(1U <<(8 -8)))): ((sa_rgb >>(((8 + 8) -8) & 0x1F)) &(0x100 -(1U <<(8 -8)))))) &(0x100 -(1U << (8 - 4)))) >>((8 -(4 +4)) & 0x1F)) : (((((8+8<8)?((sa_rgb << ((8 - (8 + 8)) & 0x1F)) & (0x100 - (1U << (8 - 8)))) : ((sa_rgb >> (((8 + 8) - 8) & 0x1F)) & (0x100 - (1U << (8 - 8)))))) & (0x100 - (1U << (8 - 4)))) << (((4 + 4) - 8) & 0x1F))) | ((0 + 4 < 8) ? (((((0 + 8 < 8) ? ((sa_rgb << ((8 - (0 + 8)) & 0x1F)) & (0x100 - (1U << (8 - 8)))) : ((sa_rgb >> (((0 + 8) - 8) & 0x1F)) & (0x100 - (1U << (8 - 8)))))) & (0x100 - (1U << (8 - 4)))) >> ((8 - (0 + 4)) & 0x1F)) : (((((0 + 8 < 8) ? ((sa_rgb << ((8 - (0 + 8)) & 0x1F)) & (0x100 - (1U << (8 - 8)))) : ((sa_rgb >> (((0 + 8) - 8) & 0x1F)) & (0x100 - (1U << (8 - 8)))))) & (0x100 - (1U << (8 - 4)))) << (((0 + 4) - 8) & 0x1F)));
  56.             *(unsigned short *) (d) = da_rgb;
  57.             d += 2;
  58.             do
  59.             {
  60.                 s += 4;
  61.             } while ((limit -= step) >= 0);
  62.             limit += src_dx;
  63.         } while (--count);
  64.     }
  65. }
  66. void
  67. RGB32toRGB444_ROW_COPY (unsigned char *dest_ptr, int dest_dx,
  68.                         unsigned char *src_ptr, int src_dx)
  69. {
  70.     register unsigned char *d = dest_ptr;
  71.     register unsigned char *s = src_ptr;
  72.     register int count = dest_dx;
  73.     while (((unsigned int) d & 3) && ((unsigned int) s & 3) && count)
  74.     {
  75.         register unsigned int da_rgb;
  76.         register unsigned int sa_rgb;
  77.         sa_rgb = *(unsigned int *) (s);
  78.         da_rgb =((8 + 4 <8)? (((((16 + 8 <8) ? ((sa_rgb << ((8 - (16 + 8)) & 0x1F)) & (0x100 -(1U << (8 - 8)))): ((sa_rgb >> (((16 + 8) - 8) & 0x1F)) &(0x100 - (1U << (8 - 8)))))) & (0x100 - (1U << (8 -4)))) >> ((8-(8+4))&0x1F)): (((((16 + 8 <8) ? ((sa_rgb << ((8 - (16 + 8)) & 0x1F)) & (0x100 -(1U << (8 - 8)))): ((sa_rgb >> (((16 + 8) - 8) & 0x1F)) &(0x100 - (1U << (8 - 8)))))) & (0x100 - (1U << (8 -4)))) <<(((8 + 4) - 8) & 0x1F))) | ((4 + 4 <8)? (((((8 + 8 <8) ? ((sa_rgb <<((8 -(8 +8)) & 0x1F)) & (0x100-(1U<<(8 -8)))): ((sa_rgb >>(((8 + 8) -8) & 0x1F)) & (0x100 -(1U <<(8 -8)))))) &(0x100 -(1U << (8 - 4)))) >> ((8 - (4 +4)) &0x1F)): (((((8 + 8 <8) ? ((sa_rgb <<((8 -(8 +8)) & 0x1F)) & (0x100-(1U<<(8 -8)))): ((sa_rgb >>(((8 + 8) -8) & 0x1F)) & (0x100 -(1U <<(8 -8)))))) &(0x100 -(1U << (8 - 4)))) << (((4 + 4) -8) &0x1F))) |((0 + 4 <8)? (((((0 + 8 <8) ? ((sa_rgb << ((8 - (0 + 8)) & 0x1F)) & (0x100 -(1U << (8 - 8)))): ((sa_rgb >> (((0 + 8) - 8) & 0x1F)) &(0x100 - (1U << (8 - 8)))))) & (0x100 - (1U << (8 -4)))) >> ((8-(0+4))&0x1F)): (((((0 + 8 <8) ? ((sa_rgb << ((8 - (0 + 8)) & 0x1F)) & (0x100 -(1U << (8 - 8)))): ((sa_rgb >> (((0 + 8) - 8) & 0x1F)) &(0x100 - (1U << (8 - 8)))))) & (0x100 - (1U << (8 -4)))) <<(((0 + 4) - 8) & 0x1F)));
  79.         s += 4;
  80.         *(unsigned short *) (d) = da_rgb;
  81.         d += 2;
  82.         count--;
  83.     }
  84.     while (count >= 4)
  85.     {
  86.         register unsigned int da_rgb;
  87.         register unsigned int sa_rgb;
  88.         sa_rgb = *(unsigned int *) (s);
  89.         da_rgb =((0)? (((((0)? ((sa_rgb << ((8 - (16 + 8)) & 0x1F)) &(0x100 -(1U << (8 - 8)))) : ((sa_rgb >> (((16 + 8) - 8) & 0x1F)) &(0x100 -(1U << (8 - 8)))))) & (0x100 -(1U <<(8 -4)))) >> ((8-(8+4))&0x1F)): (((((0)? ((sa_rgb << ((8 - (16 + 8)) & 0x1F)) &(0x100 -(1U << (8 - 8)))) : ((sa_rgb >> (((16 + 8) - 8) & 0x1F)) &(0x100 -(1U << (8 - 8)))))) & (0x100 -(1U <<(8 -4)))) <<(((8 + 4) -8) & 0x1F))) | ((0) ? (((((0)? ((sa_rgb << ((8 - (8 + 8)) & 0x1F))& (0x100 -(1U << (8 - 8)))) : ((sa_rgb >>(((8 +8) -8) &0x1F)) &(0x100 -(1U <<(8 -8))))))& (0x100 - (1U << (8 - 4)))) >> ((8 -(4 +4)) &0x1F)): (((((0)? ((sa_rgb << ((8 - (8 + 8)) & 0x1F)) &(0x100 -(1U << (8 - 8)))) : ((sa_rgb >>(((8 + 8) -8) & 0x1F)) &(0x100 -(1U <<(8 -8)))))) &(0x100 - (1U << (8 - 4)))) << (((4 + 4) -8) & 0x1F)))| ((1)? (((((0)? ((sa_rgb << ((8 - (0 + 8)) & 0x1F)) &(0x100 -(1U << (8 - 8)))) : ((sa_rgb >> (((0 + 8) - 8) & 0x1F)) &(0x100 -(1U << (8 - 8)))))) & (0x100 -(1U <<(8 -4)))) >>((8 -(0 +4)) & 0x1F)) : (((((0) ? ((sa_rgb << ((8 - (0 + 8)) & 0x1F))& (0x100 -(1U << (8 - 8)))) : ((sa_rgb >>(((0 +8) -8) &0x1F)) &(0x100 -(1U <<(8 -8))))))& (0x100 - (1U << (8 - 4)))) << (((0 + 4) -8) &0x1F)));
  90.         *(unsigned short *) (d) = da_rgb;
  91.         sa_rgb = *(unsigned int *) (s + 4);
  92.         da_rgb =((8 + 4 <8)? (((((16 + 8 <8) ? ((sa_rgb << ((8 - (16 + 8)) & 0x1F)) & (0x100 -(1U << (8 - 8)))): ((sa_rgb >> (((16 + 8) - 8) & 0x1F)) &(0x100 - (1U << (8 - 8)))))) & (0x100 - (1U << (8 -4)))) >> ((8-(8+4))&0x1F)): (((((16 + 8 <8) ? ((sa_rgb << ((8 - (16 + 8)) & 0x1F)) & (0x100 -(1U << (8 - 8)))): ((sa_rgb >> (((16 + 8) - 8) & 0x1F)) &(0x100 - (1U << (8 - 8)))))) & (0x100 - (1U << (8 -4)))) <<(((8 + 4) - 8) & 0x1F))) | ((4 + 4 <8)? (((((8 + 8 <8) ? ((sa_rgb <<((8 -(8 +8)) & 0x1F)) & (0x100-(1U<<(8 -8)))): ((sa_rgb >>(((8 + 8) -8) & 0x1F)) & (0x100 -(1U <<(8 -8)))))) &(0x100 -(1U << (8 - 4)))) >> ((8 - (4 +4)) &0x1F)): (((((8 + 8 <8) ? ((sa_rgb <<((8 -(8 +8)) & 0x1F)) & (0x100-(1U<<(8 -8)))): ((sa_rgb >>(((8 + 8) -8) & 0x1F)) & (0x100 -(1U <<(8 -8)))))) &(0x100 -(1U << (8 - 4)))) << (((4 + 4) -8) &0x1F))) |((0 + 4 <8)? (((((0 + 8 <8) ? ((sa_rgb << ((8 - (0 + 8)) & 0x1F)) & (0x100 -(1U << (8 - 8)))): ((sa_rgb >> (((0 + 8) - 8) & 0x1F)) &(0x100 - (1U << (8 - 8)))))) & (0x100 - (1U << (8 -4)))) >> ((8-(0+4))&0x1F)): (((((0 + 8 <8) ? ((sa_rgb << ((8 - (0 + 8)) & 0x1F)) & (0x100 -(1U << (8 - 8)))): ((sa_rgb >> (((0 + 8) - 8) & 0x1F)) &(0x100 - (1U << (8 - 8)))))) & (0x100 - (1U << (8 -4)))) <<(((0 + 4) - 8) & 0x1F)));
  93.         *(unsigned short *) (d + 2) = da_rgb;
  94.         sa_rgb = *(unsigned int *) (s + 2 * 4);
  95.         da_rgb =((8 + 4 <8)? (((((16 + 8 <8) ? ((sa_rgb << ((8 - (16 + 8)) & 0x1F)) & (0x100 -(1U << (8 - 8)))): ((sa_rgb >> (((16 + 8) - 8) & 0x1F)) &(0x100 - (1U << (8 - 8)))))) & (0x100 - (1U << (8 -4)))) >> ((8-(8+4))&0x1F)): (((((16 + 8 <8) ? ((sa_rgb << ((8 - (16 + 8)) & 0x1F)) & (0x100 -(1U << (8 - 8)))): ((sa_rgb >> (((16 + 8) - 8) & 0x1F)) &(0x100 - (1U << (8 - 8)))))) & (0x100 - (1U << (8 -4)))) <<(((8 + 4) - 8) & 0x1F))) | ((4 + 4 <8)? (((((8 + 8 <8) ? ((sa_rgb <<((8 -(8 +8)) & 0x1F)) & (0x100-(1U<<(8 -8)))): ((sa_rgb >>(((8 + 8) -8) & 0x1F)) & (0x100 -(1U <<(8 -8)))))) &(0x100 -(1U << (8 - 4)))) >> ((8 - (4 +4)) &0x1F)): (((((8 + 8 <8) ? ((sa_rgb <<((8 -(8 +8)) & 0x1F)) & (0x100-(1U<<(8 -8)))): ((sa_rgb >>(((8 + 8) -8) & 0x1F)) & (0x100 -(1U <<(8 -8)))))) &(0x100 -(1U << (8 - 4)))) << (((4 + 4) -8) &0x1F))) |((0 + 4 <8)? (((((0 + 8 <8) ? ((sa_rgb << ((8 - (0 + 8)) & 0x1F)) & (0x100 -(1U << (8 - 8)))): ((sa_rgb >> (((0 + 8) - 8) & 0x1F)) &(0x100 - (1U << (8 - 8)))))) & (0x100 - (1U << (8 -4)))) >> ((8-(0+4))&0x1F)): (((((0 + 8 <8) ? ((sa_rgb << ((8 - (0 + 8)) & 0x1F)) & (0x100 -(1U << (8 - 8)))): ((sa_rgb >> (((0 + 8) - 8) & 0x1F)) &(0x100 - (1U << (8 - 8)))))) & (0x100 - (1U << (8 -4)))) <<(((0 + 4) - 8) & 0x1F)));
  96.         *(unsigned short *) (d + 2 * 2) = da_rgb;
  97.         sa_rgb = *(unsigned int *) (s + 3 * 4);
  98.         da_rgb =((8 + 4 <8)? (((((16 + 8 <8) ? ((sa_rgb << ((8 - (16 + 8)) & 0x1F)) & (0x100 -(1U << (8 - 8)))): ((sa_rgb >> (((16 + 8) - 8) & 0x1F)) &(0x100 - (1U << (8 - 8)))))) & (0x100 - (1U << (8 -4)))) >> ((8-(8+4))&0x1F)): (((((16 + 8 <8) ? ((sa_rgb << ((8 - (16 + 8)) & 0x1F)) & (0x100 -(1U << (8 - 8)))): ((sa_rgb >> (((16 + 8) - 8) & 0x1F)) &(0x100 - (1U << (8 - 8)))))) & (0x100 - (1U << (8 -4)))) <<(((8 + 4) - 8) & 0x1F))) | ((4 + 4 <8)? (((((8 + 8 <8) ? ((sa_rgb <<((8 -(8 +8)) & 0x1F)) & (0x100-(1U<<(8 -8)))): ((sa_rgb >>(((8 + 8) -8) & 0x1F)) & (0x100 -(1U <<(8 -8)))))) &(0x100 -(1U << (8 - 4)))) >> ((8 - (4 +4)) &0x1F)): (((((8 + 8 <8) ? ((sa_rgb <<((8 -(8 +8)) & 0x1F)) & (0x100-(1U<<(8 -8)))): ((sa_rgb >>(((8 + 8) -8) & 0x1F)) & (0x100 -(1U <<(8 -8)))))) &(0x100 -(1U << (8 - 4)))) << (((4 + 4) -8) &0x1F))) |((0 + 4 <8)? (((((0 + 8 <8) ? ((sa_rgb << ((8 - (0 + 8)) & 0x1F)) & (0x100 -(1U << (8 - 8)))): ((sa_rgb >> (((0 + 8) - 8) & 0x1F)) &(0x100 - (1U << (8 - 8)))))) & (0x100 - (1U << (8 -4)))) >> ((8-(0+4))&0x1F)): (((((0 + 8 <8) ? ((sa_rgb << ((8 - (0 + 8)) & 0x1F)) & (0x100 -(1U << (8 - 8)))): ((sa_rgb >> (((0 + 8) - 8) & 0x1F)) &(0x100 - (1U << (8 - 8)))))) & (0x100 - (1U << (8 -4)))) <<(((0 + 4) - 8) & 0x1F)));
  99.         *(unsigned short *) (d + 3 * 2) = da_rgb;
  100.         s += 4 * 4;
  101.         d += 4 * 2;
  102.         count -= 4;
  103.     }
  104.     while (count)
  105.     {
  106.         register unsigned int da_rgb;
  107.         register unsigned int sa_rgb;
  108.         sa_rgb = *(unsigned int *) (s);
  109.         da_rgb =((8 + 4 <8)? (((((16 + 8 <8) ? ((sa_rgb << ((8 - (16 + 8)) & 0x1F)) & (0x100 -(1U << (8 - 8)))): ((sa_rgb >> (((16 + 8) - 8) & 0x1F)) &(0x100 - (1U << (8 - 8)))))) & (0x100 - (1U << (8 -4)))) >> ((8-(8+4))&0x1F)): (((((16 + 8 <8) ? ((sa_rgb << ((8 - (16 + 8)) & 0x1F)) & (0x100 -(1U << (8 - 8)))): ((sa_rgb >> (((16 + 8) - 8) & 0x1F)) &(0x100 - (1U << (8 - 8)))))) & (0x100 - (1U << (8 -4)))) <<(((8 + 4) - 8) & 0x1F))) | ((4 + 4 <8)? (((((8 + 8 <8) ? ((sa_rgb <<((8 -(8 +8)) & 0x1F)) & (0x100-(1U<<(8 -8)))): ((sa_rgb >>(((8 + 8) -8) & 0x1F)) & (0x100 -(1U <<(8 -8)))))) &(0x100 -(1U << (8 - 4)))) >> ((8 - (4 +4)) &0x1F)): (((((8 + 8 <8) ? ((sa_rgb <<((8 -(8 +8)) & 0x1F)) & (0x100-(1U<<(8 -8)))): ((sa_rgb >>(((8 + 8) -8) & 0x1F)) & (0x100 -(1U <<(8 -8)))))) &(0x100 -(1U << (8 - 4)))) << (((4 + 4) -8) &0x1F))) |((0 + 4 <8)? (((((0 + 8 <8) ? ((sa_rgb << ((8 - (0 + 8)) & 0x1F)) & (0x100 -(1U << (8 - 8)))): ((sa_rgb >> (((0 + 8) - 8) & 0x1F)) &(0x100 - (1U << (8 - 8)))))) & (0x100 - (1U << (8 -4)))) >> ((8-(0+4))&0x1F)): (((((0 + 8 <8) ? ((sa_rgb << ((8 - (0 + 8)) & 0x1F)) & (0x100 -(1U << (8 - 8)))): ((sa_rgb >> (((0 + 8) - 8) & 0x1F)) &(0x100 - (1U << (8 - 8)))))) & (0x100 - (1U << (8 -4)))) <<(((0 + 4) - 8) & 0x1F)));
  110.         s += 4;
  111.         *(unsigned short *) (d) = da_rgb;
  112.         d += 2;
  113.         count--;
  114.     }
  115. }
  116. void
  117. RGB32toRGB444_ROW_STRETCH (unsigned char *dest_ptr, int dest_dx,
  118.                            unsigned char *src_ptr, int src_dx)
  119. {
  120.     register unsigned char *d = dest_ptr;
  121.     register unsigned char *s = src_ptr;
  122.     register int count = dest_dx;
  123.     register int limit = dest_dx >> 1;
  124.     register int step = src_dx;
  125.     if (count)
  126.     {
  127.         goto start;
  128.         do
  129.         {
  130.             register unsigned int da_rgb;
  131.             if ((limit -= step) < 0)
  132.             {
  133.                 limit += dest_dx;
  134.               start:
  135.                 register unsigned int sa_rgb;
  136.                 sa_rgb = *(unsigned int *) (s);
  137.                 da_rgb =((8 + 4 <8)? (((((16 + 8 <8) ? ((sa_rgb << ((8 - (16 + 8)) & 0x1F)) & (0x100-(1U<<(8 -8)))): ((sa_rgb >> (((16 + 8) - 8) & 0x1F)) &(0x100 - (1U << (8 - 8)))))) & (0x100 -(1U <<(8 -4)))) >> ((8 -(8+4))&0x1F)): (((((16 + 8 <8) ? ((sa_rgb << ((8 - (16 + 8)) & 0x1F)) & (0x100-(1U<<(8 -8)))): ((sa_rgb >> (((16 + 8) - 8) & 0x1F)) &(0x100 - (1U << (8 - 8)))))) & (0x100 -(1U <<(8 -4)))) << (((8+4)-8)&0x1F)))| ((4 + 4 < 8)? (((((8 + 8 <8) ? ((sa_rgb << ((8 - (8 + 8)) & 0x1F)) &(0x100 -(1U << (8 - 8)))) : ((sa_rgb >>(((8 + 8) -8) & 0x1F)) &(0x100 -(1U << (8 - 8))))))& (0x100 - (1U << (8 - 4)))) >> ((8 -(4 +4)) & 0x1F)): (((((8 + 8 <8) ? ((sa_rgb << ((8 - (8 + 8)) & 0x1F)) &(0x100 -(1U << (8 - 8)))) : ((sa_rgb >>(((8 + 8) -8) & 0x1F)) &(0x100 -(1U << (8 - 8))))))& (0x100 - (1U << (8 - 4)))) << (((4 + 4) -8) & 0x1F))) |((0 + 4 <8)? (((((0 + 8 <8) ? ((sa_rgb << ((8 - (0 + 8)) & 0x1F)) & (0x100-(1U <<(8 -8)))): ((sa_rgb >> (((0 + 8) - 8) & 0x1F)) &(0x100 - (1U << (8 - 8)))))) & (0x100 -(1U <<(8 -4)))) >> ((8 -(0+4))&0x1F)): (((((0 + 8 <8) ? ((sa_rgb << ((8 - (0 + 8)) & 0x1F)) & (0x100-(1U <<(8 -8)))): ((sa_rgb >> (((0 + 8) - 8) & 0x1F)) &(0x100 - (1U << (8 - 8)))))) & (0x100 -(1U <<(8 -4)))) << (((0+4)-8)&0x1F)));
  138.                 s += 4;
  139.             }
  140.             *(unsigned short *) (d) = da_rgb;
  141.             d += 2;
  142.         }
  143.         while (--count);
  144.     }
  145. }
  146. void
  147. RGB32toRGB444_ROW_STRETCH2X (unsigned char *dest_ptr, int dest_dx,
  148.                              unsigned char *src_ptr, int src_dx)
  149. {
  150.     register unsigned char *d = dest_ptr;
  151.     register unsigned char *s = src_ptr;
  152.     register int count = src_dx;
  153.     if (count)
  154.     {
  155.         register unsigned int da_rgb;
  156.         register unsigned int sa_rgb;
  157.         sa_rgb = *(unsigned int *) (s);
  158.         da_rgb =((8 + 4 <8)? (((((16 + 8 <8) ? ((sa_rgb << ((8 - (16 + 8)) & 0x1F)) & (0x100 -(1U <<(8 -8)))): ((sa_rgb >> (((16 + 8) - 8) & 0x1F)) &(0x100 - (1U << (8 - 8)))))) & (0x100 - (1U << (8 -4)))) >>((8 -(8 +4)) & 0x1F)) : (((((16 + 8 <8) ? ((sa_rgb <<((8 -(16 + 8)) & 0x1F)) & (0x100 -(1U <<(8 -8)))): ((sa_rgb >> (((16 + 8) - 8) & 0x1F)) &(0x100 -(1U << (8 - 8)))))) & (0x100 -(1U <<(8 -4)))) <<(((8 + 4) - 8) & 0x1F))) | ((4 + 4 <8)? (((((8 + 8 <8)? ((sa_rgb << ((8 - (8 + 8)) & 0x1F)) & (0x100 - (1U << (8 - 8)))) : ((sa_rgb >> (((8 + 8) - 8) & 0x1F)) & (0x100 - (1U << (8 - 8)))))) & (0x100 - (1U << (8 - 4)))) >> ((8 - (4 + 4)) & 0x1F)) : (((((8 + 8 < 8) ? ((sa_rgb << ((8 - (8 + 8)) & 0x1F)) & (0x100 - (1U << (8 - 8)))) : ((sa_rgb >> (((8 + 8) - 8) & 0x1F)) & (0x100 - (1U << (8 - 8)))))) & (0x100 - (1U << (8 - 4)))) << (((4 + 4) - 8) & 0x1F))) | ((0 + 4 < 8) ? (((((0 + 8 < 8) ? ((sa_rgb << ((8 - (0 + 8)) & 0x1F)) & (0x100 - (1U << (8 - 8)))) : ((sa_rgb >> (((0 + 8) - 8) & 0x1F)) & (0x100 - (1U << (8 - 8)))))) & (0x100 - (1U << (8 - 4)))) >> ((8 - (0 + 4)) & 0x1F)) : (((((0 + 8 < 8) ? ((sa_rgb << ((8 - (0 + 8)) & 0x1F)) & (0x100 - (1U << (8 - 8)))) : ((sa_rgb >> (((0 + 8) - 8) & 0x1F)) & (0x100 - (1U << (8 - 8)))))) & (0x100 - (1U << (8 - 4)))) << (((0 + 4) - 8) & 0x1F)));
  159.         s += 4;
  160.         count--;
  161.         *(unsigned short *) (d) = da_rgb;
  162.         d += 2;
  163.         while (count >= 2)
  164.         {
  165.             register unsigned int db_rgb;
  166.             register unsigned int sa_rgb;
  167.             sa_rgb = *(unsigned int *) (s);
  168.             db_rgb =((8 + 4 <8)? (((((16 + 8 <8) ? ((sa_rgb << ((8 - (16 + 8)) & 0x1F)) & (0x100 -(1U <<(8 -8)))): ((sa_rgb >> (((16 + 8) - 8) & 0x1F)) &(0x100 - (1U << (8 - 8)))))) & (0x100 - (1U << (8 -4))))>> ((8 - (8 + 4)) & 0x1F)): (((((16 + 8 <8) ? ((sa_rgb << ((8 - (16 + 8)) & 0x1F)) & (0x100 -(1U <<(8 -8)))): ((sa_rgb >> (((16 + 8) - 8) & 0x1F)) &(0x100 - (1U << (8 - 8)))))) & (0x100 - (1U << (8 -4))))<< (((8 + 4) - 8) & 0x1F))) | ((4 + 4 <8)? (((((8 + 8 <8) ? ((sa_rgb <<((8 -(8 +8)) &0x1F)) &(0x100 -(1U <<(8 -8)))): ((sa_rgb >>(((8 + 8) -8) & 0x1F)) &(0x100 -(1U <<(8 -8)))))) &(0x100 -(1U << (8 - 4)))) >>((8 -(4 +4)) & 0x1F)) : (((((8+8<8)?((sa_rgb << ((8 - (8 + 8)) & 0x1F)) & (0x100 - (1U << (8 - 8)))) : ((sa_rgb >> (((8 + 8) - 8) & 0x1F)) & (0x100 - (1U << (8 - 8)))))) & (0x100 - (1U << (8 - 4)))) << (((4 + 4) - 8) & 0x1F))) | ((0 + 4 < 8) ? (((((0 + 8 < 8) ? ((sa_rgb << ((8 - (0 + 8)) & 0x1F)) & (0x100 - (1U << (8 - 8)))) : ((sa_rgb >> (((0 + 8) - 8) & 0x1F)) & (0x100 - (1U << (8 - 8)))))) & (0x100 - (1U << (8 - 4)))) >> ((8 - (0 + 4)) & 0x1F)) : (((((0 + 8 < 8) ? ((sa_rgb << ((8 - (0 + 8)) & 0x1F)) & (0x100 - (1U << (8 - 8)))) : ((sa_rgb >> (((0 + 8) - 8) & 0x1F)) & (0x100 - (1U << (8 - 8)))))) & (0x100 - (1U << (8 - 4)))) << (((0 + 4) - 8) & 0x1F)));
  169.             da_rgb =(((da_rgb ^ db_rgb) >> 1) &(((1U << (8 + 4 - 1)) - (1U << 8)) | ((1U << (4 + 4 - 1)) -(1U << 4)) | ((1U <<(0 + 4 -1)) -(1U << 0))))+ (da_rgb & db_rgb);
  170.             *(unsigned short *) (d) = da_rgb;
  171.             *(unsigned short *) (d + 2) = db_rgb;
  172.             sa_rgb = *(unsigned int *) (s + 4);
  173.             da_rgb =((8 + 4 <8)? (((((16 + 8 <8) ? ((sa_rgb << ((8 - (16 + 8)) & 0x1F)) & (0x100 -(1U <<(8 -8)))): ((sa_rgb >> (((16 + 8) - 8) & 0x1F)) &(0x100 - (1U << (8 - 8)))))) & (0x100 - (1U << (8 -4))))>> ((8 - (8 + 4)) & 0x1F)): (((((16 + 8 <8) ? ((sa_rgb << ((8 - (16 + 8)) & 0x1F)) & (0x100 -(1U <<(8 -8)))): ((sa_rgb >> (((16 + 8) - 8) & 0x1F)) &(0x100 - (1U << (8 - 8)))))) & (0x100 - (1U << (8 -4))))<< (((8 + 4) - 8) & 0x1F))) | ((4 + 4 <8)? (((((8 + 8 <8) ? ((sa_rgb <<((8 -(8 +8)) &0x1F)) &(0x100 -(1U <<(8 -8)))): ((sa_rgb >>(((8 + 8) -8) & 0x1F)) &(0x100 -(1U <<(8 -8)))))) &(0x100 -(1U << (8 - 4)))) >>((8 -(4 +4)) & 0x1F)) : (((((8+8<8)?((sa_rgb << ((8 - (8 + 8)) & 0x1F)) & (0x100 - (1U << (8 - 8)))) : ((sa_rgb >> (((8 + 8) - 8) & 0x1F)) & (0x100 - (1U << (8 - 8)))))) & (0x100 - (1U << (8 - 4)))) << (((4 + 4) - 8) & 0x1F))) | ((0 + 4 < 8) ? (((((0 + 8 < 8) ? ((sa_rgb << ((8 - (0 + 8)) & 0x1F)) & (0x100 - (1U << (8 - 8)))) : ((sa_rgb >> (((0 + 8) - 8) & 0x1F)) & (0x100 - (1U << (8 - 8)))))) & (0x100 - (1U << (8 - 4)))) >> ((8 - (0 + 4)) & 0x1F)) : (((((0 + 8 < 8) ? ((sa_rgb << ((8 - (0 + 8)) & 0x1F)) & (0x100 - (1U << (8 - 8)))) : ((sa_rgb >> (((0 + 8) - 8) & 0x1F)) & (0x100 - (1U << (8 - 8)))))) & (0x100 - (1U << (8 - 4)))) << (((0 + 4) - 8) & 0x1F)));
  174.             db_rgb =(((db_rgb ^ da_rgb) >> 1) &(((1U << (8 + 4 - 1)) - (1U << 8)) | ((1U << (4 + 4 - 1)) -(1U << 4)) | ((1U <<(0 + 4 -1)) -(1U << 0))))+ (db_rgb & da_rgb);
  175.             *(unsigned short *) (d + 2 * 2) = db_rgb;
  176.             *(unsigned short *) (d + 3 * 2) = da_rgb;
  177.             s += 2 * 4;
  178.             d += 4 * 2;
  179.             count -= 2;
  180.         }
  181.         if (count)
  182.         {
  183.             register unsigned int db_rgb;
  184.             register unsigned int sa_rgb;
  185.             sa_rgb = *(unsigned int *) (s);
  186.             db_rgb =((8 + 4 <8)? (((((16 + 8 <8) ? ((sa_rgb << ((8 - (16 + 8)) & 0x1F)) & (0x100 -(1U <<(8 -8)))): ((sa_rgb >> (((16 + 8) - 8) & 0x1F)) &(0x100 - (1U << (8 - 8)))))) & (0x100 - (1U << (8 -4))))>> ((8 - (8 + 4)) & 0x1F)): (((((16 + 8 <8) ? ((sa_rgb << ((8 - (16 + 8)) & 0x1F)) & (0x100 -(1U <<(8 -8)))): ((sa_rgb >> (((16 + 8) - 8) & 0x1F)) &(0x100 - (1U << (8 - 8)))))) & (0x100 - (1U << (8 -4))))<< (((8 + 4) - 8) & 0x1F))) | ((4 + 4 <8)? (((((8 + 8 <8) ? ((sa_rgb <<((8 -(8 +8)) &0x1F)) &(0x100 -(1U <<(8 -8)))): ((sa_rgb >>(((8 + 8) -8) & 0x1F)) &(0x100 -(1U <<(8 -8)))))) &(0x100 -(1U << (8 - 4)))) >>((8 -(4 +4)) & 0x1F)) : (((((8+8<8)?((sa_rgb << ((8 - (8 + 8)) & 0x1F)) & (0x100 - (1U << (8 - 8)))) : ((sa_rgb >> (((8 + 8) - 8) & 0x1F)) & (0x100 - (1U << (8 - 8)))))) & (0x100 - (1U << (8 - 4)))) << (((4 + 4) - 8) & 0x1F))) | ((0 + 4 < 8) ? (((((0 + 8 < 8) ? ((sa_rgb << ((8 - (0 + 8)) & 0x1F)) & (0x100 - (1U << (8 - 8)))) : ((sa_rgb >> (((0 + 8) - 8) & 0x1F)) & (0x100 - (1U << (8 - 8)))))) & (0x100 - (1U << (8 - 4)))) >> ((8 - (0 + 4)) & 0x1F)) : (((((0 + 8 < 8) ? ((sa_rgb << ((8 - (0 + 8)) & 0x1F)) & (0x100 - (1U << (8 - 8)))) : ((sa_rgb >> (((0 + 8) - 8) & 0x1F)) & (0x100 - (1U << (8 - 8)))))) & (0x100 - (1U << (8 - 4)))) << (((0 + 4) - 8) & 0x1F)));
  187.             da_rgb =(((da_rgb ^ db_rgb) >> 1) &(((1U << (8 + 4 - 1)) - (1U << 8)) | ((1U << (4 + 4 - 1)) -(1U << 4)) | ((1U <<(0 + 4 -1)) -(1U << 0))))+ (da_rgb & db_rgb);
  188.             *(unsigned short *) (d) = da_rgb;
  189.             *(unsigned short *) (d + 2) = db_rgb;
  190.             *(unsigned short *) (d + 2 * 2) = db_rgb;
  191.         }
  192.         else
  193.         {
  194.             *(unsigned short *) (d) = da_rgb;
  195.         }
  196.     }
  197. }
  198. void
  199. RGB32toRGB444_ROW_STRETCH2XPLUS (unsigned char *dest_ptr, int dest_dx,
  200.                                  unsigned char *src_ptr, int src_dx)
  201. {
  202.     register unsigned char *d = dest_ptr;
  203.     register unsigned char *s = src_ptr;
  204.     register int count = dest_dx;
  205.     register int limit = dest_dx >> 1;
  206.     register int step = src_dx << 1;
  207.     register int remainder = (2 * dest_dx - limit) / step;
  208.     if (count)
  209.     {
  210.         register unsigned int da_rgb;
  211.         register unsigned int db_rgb;
  212.         register unsigned int sa_rgb;
  213.         sa_rgb = *(unsigned int *) (s);
  214.         da_rgb =((8 + 4 <8)? (((((16 + 8 <8) ? ((sa_rgb << ((8 - (16 + 8)) & 0x1F)) & (0x100 -(1U <<(8 -8)))): ((sa_rgb >> (((16 + 8) - 8) & 0x1F)) &(0x100 - (1U << (8 - 8)))))) & (0x100 - (1U << (8 -4)))) >>((8 -(8 +4)) & 0x1F)) : (((((16 + 8 <8) ? ((sa_rgb <<((8 -(16 + 8)) & 0x1F)) & (0x100 -(1U <<(8 -8)))): ((sa_rgb >> (((16 + 8) - 8) & 0x1F)) &(0x100 -(1U << (8 - 8)))))) & (0x100 -(1U <<(8 -4)))) <<(((8 + 4) - 8) & 0x1F))) | ((4 + 4 <8)? (((((8 + 8 <8)? ((sa_rgb << ((8 - (8 + 8)) & 0x1F)) & (0x100 - (1U << (8 - 8)))) : ((sa_rgb >> (((8 + 8) - 8) & 0x1F)) & (0x100 - (1U << (8 - 8)))))) & (0x100 - (1U << (8 - 4)))) >> ((8 - (4 + 4)) & 0x1F)) : (((((8 + 8 < 8) ? ((sa_rgb << ((8 - (8 + 8)) & 0x1F)) & (0x100 - (1U << (8 - 8)))) : ((sa_rgb >> (((8 + 8) - 8) & 0x1F)) & (0x100 - (1U << (8 - 8)))))) & (0x100 - (1U << (8 - 4)))) << (((4 + 4) - 8) & 0x1F))) | ((0 + 4 < 8) ? (((((0 + 8 < 8) ? ((sa_rgb << ((8 - (0 + 8)) & 0x1F)) & (0x100 - (1U << (8 - 8)))) : ((sa_rgb >> (((0 + 8) - 8) & 0x1F)) & (0x100 - (1U << (8 - 8)))))) & (0x100 - (1U << (8 - 4)))) >> ((8 - (0 + 4)) & 0x1F)) : (((((0 + 8 < 8) ? ((sa_rgb << ((8 - (0 + 8)) & 0x1F)) & (0x100 - (1U << (8 - 8)))) : ((sa_rgb >> (((0 + 8) - 8) & 0x1F)) & (0x100 - (1U << (8 - 8)))))) & (0x100 - (1U << (8 - 4)))) << (((0 + 4) - 8) & 0x1F)));
  215.         s += 4;
  216.         if (!(count -= remainder))
  217.             goto end_of_row;
  218.         while (1)
  219.         {
  220.             do
  221.             {
  222.                 *(unsigned short *) (d) = da_rgb;
  223.                 d += 2;
  224.                 if (!(--count))
  225.                     goto end_of_row;
  226.             }
  227.             while ((limit -= step) >= 0);
  228.             limit += dest_dx;
  229.             register unsigned int sa_rgb;
  230.             sa_rgb = *(unsigned int *) (s);
  231.             db_rgb =((8 + 4 <8)? (((((16 + 8 <8) ? ((sa_rgb << ((8 - (16 + 8)) & 0x1F)) & (0x100 -(1U <<(8 -8)))): ((sa_rgb >> (((16 + 8) - 8) & 0x1F)) &(0x100 - (1U << (8 - 8)))))) & (0x100 - (1U << (8 -4))))>> ((8 - (8 + 4)) & 0x1F)): (((((16 + 8 <8) ? ((sa_rgb << ((8 - (16 + 8)) & 0x1F)) & (0x100 -(1U <<(8 -8)))): ((sa_rgb >> (((16 + 8) - 8) & 0x1F)) &(0x100 - (1U << (8 - 8)))))) & (0x100 - (1U << (8 -4))))<< (((8 + 4) - 8) & 0x1F))) | ((4 + 4 <8)? (((((8 + 8 <8) ? ((sa_rgb <<((8 -(8 +8)) &0x1F)) &(0x100 -(1U <<(8 -8)))): ((sa_rgb >>(((8 + 8) -8) & 0x1F)) &(0x100 -(1U <<(8 -8)))))) &(0x100 -(1U << (8 - 4)))) >>((8 -(4 +4)) & 0x1F)) : (((((8+8<8)?((sa_rgb << ((8 - (8 + 8)) & 0x1F)) & (0x100 - (1U << (8 - 8)))) : ((sa_rgb >> (((8 + 8) - 8) & 0x1F)) & (0x100 - (1U << (8 - 8)))))) & (0x100 - (1U << (8 - 4)))) << (((4 + 4) - 8) & 0x1F))) | ((0 + 4 < 8) ? (((((0 + 8 < 8) ? ((sa_rgb << ((8 - (0 + 8)) & 0x1F)) & (0x100 - (1U << (8 - 8)))) : ((sa_rgb >> (((0 + 8) - 8) & 0x1F)) & (0x100 - (1U << (8 - 8)))))) & (0x100 - (1U << (8 - 4)))) >> ((8 - (0 + 4)) & 0x1F)) : (((((0 + 8 < 8) ? ((sa_rgb << ((8 - (0 + 8)) & 0x1F)) & (0x100 - (1U << (8 - 8)))) : ((sa_rgb >> (((0 + 8) - 8) & 0x1F)) & (0x100 - (1U << (8 - 8)))))) & (0x100 - (1U << (8 - 4)))) << (((0 + 4) - 8) & 0x1F)));
  232.             da_rgb =(((da_rgb ^ db_rgb) >> 1) &(((1U << (8 + 4 - 1)) - (1U << 8)) | ((1U << (4 + 4 - 1)) -(1U << 4)) | ((1U <<(0 + 4 -1)) -(1U << 0))))+ (da_rgb & db_rgb);
  233.             do
  234.             {
  235.                 *(unsigned short *) (d) = da_rgb;
  236.                 d += 2;
  237.                 if (!(--count))
  238.                     goto end_of_row;
  239.             }
  240.             while ((limit -= step) >= 0);
  241.             limit += dest_dx;
  242.             do
  243.             {
  244.                 *(unsigned short *) (d) = db_rgb;
  245.                 d += 2;
  246.                 if (!(--count))
  247.                     goto end_of_row_2;
  248.             }
  249.             while ((limit -= step) >= 0);
  250.             limit += dest_dx;
  251.             sa_rgb = *(unsigned int *) (s + 4);
  252.             da_rgb =((8 + 4 <8)? (((((16 + 8 <8) ? ((sa_rgb << ((8 - (16 + 8)) & 0x1F)) & (0x100 -(1U <<(8 -8)))): ((sa_rgb >> (((16 + 8) - 8) & 0x1F)) &(0x100 - (1U << (8 - 8)))))) & (0x100 - (1U << (8 -4))))>> ((8 - (8 + 4)) & 0x1F)): (((((16 + 8 <8) ? ((sa_rgb << ((8 - (16 + 8)) & 0x1F)) & (0x100 -(1U <<(8 -8)))): ((sa_rgb >> (((16 + 8) - 8) & 0x1F)) &(0x100 - (1U << (8 - 8)))))) & (0x100 - (1U << (8 -4))))<< (((8 + 4) - 8) & 0x1F))) | ((4 + 4 <8)? (((((8 + 8 <8) ? ((sa_rgb <<((8 -(8 +8)) &0x1F)) &(0x100 -(1U <<(8 -8)))): ((sa_rgb >>(((8 + 8) -8) & 0x1F)) &(0x100 -(1U <<(8 -8)))))) &(0x100 -(1U << (8 - 4)))) >>((8 -(4 +4)) & 0x1F)) : (((((8+8<8)?((sa_rgb << ((8 - (8 + 8)) & 0x1F)) & (0x100 - (1U << (8 - 8)))) : ((sa_rgb >> (((8 + 8) - 8) & 0x1F)) & (0x100 - (1U << (8 - 8)))))) & (0x100 - (1U << (8 - 4)))) << (((4 + 4) - 8) & 0x1F))) | ((0 + 4 < 8) ? (((((0 + 8 < 8) ? ((sa_rgb << ((8 - (0 + 8)) & 0x1F)) & (0x100 - (1U << (8 - 8)))) : ((sa_rgb >> (((0 + 8) - 8) & 0x1F)) & (0x100 - (1U << (8 - 8)))))) & (0x100 - (1U << (8 - 4)))) >> ((8 - (0 + 4)) & 0x1F)) : (((((0 + 8 < 8) ? ((sa_rgb << ((8 - (0 + 8)) & 0x1F)) & (0x100 - (1U << (8 - 8)))) : ((sa_rgb >> (((0 + 8) - 8) & 0x1F)) & (0x100 - (1U << (8 - 8)))))) & (0x100 - (1U << (8 - 4)))) << (((0 + 4) - 8) & 0x1F)));
  253.             s += 2 * 4;
  254.             db_rgb =(((db_rgb ^ da_rgb) >> 1) &(((1U << (8 + 4 - 1)) - (1U << 8)) | ((1U << (4 + 4 - 1)) -(1U << 4)) | ((1U <<(0 + 4 -1)) -(1U << 0))))+ (db_rgb & da_rgb);
  255.             do
  256.             {
  257.                 *(unsigned short *) (d) = db_rgb;
  258.                 d += 2;
  259.                 if (!(--count))
  260.                     goto end_of_row_2;
  261.             } while ((limit -= step) >= 0);
  262.             limit += dest_dx;
  263.         }
  264.       end_of_row_2:
  265.         da_rgb = db_rgb;
  266.       end_of_row:
  267.         while (remainder--)
  268.         {
  269.             *(unsigned short *) (d) = da_rgb;
  270.             d += 2;
  271.         }
  272.     }
  273. }
  274. void
  275. RGB32toRGB444_ROW2X_SHRINK (unsigned char *dest_ptr_1,
  276.                             unsigned char *dest_ptr_12,
  277.                             unsigned char *dest_ptr_2, int dest_dx,
  278.                             unsigned char *src_ptr, int src_dx)
  279. {
  280.     register unsigned char *d1 = dest_ptr_1;
  281.     register unsigned char *d12 = dest_ptr_12;
  282.     register unsigned char *d2 = dest_ptr_2;
  283.     register unsigned char *s = src_ptr;
  284.     register int count = dest_dx;
  285.     register int limit = src_dx >> 1;
  286.     register int step = dest_dx;
  287.     if (count)
  288.     {
  289.         do
  290.         {
  291.             register unsigned int da_rgb;
  292.             register unsigned int sa_rgb;
  293.             sa_rgb = *(unsigned int *) (s);
  294.             da_rgb =((8 + 4 <8)? (((((16 + 8 <8) ? ((sa_rgb << ((8 - (16 + 8)) & 0x1F)) & (0x100 -(1U <<(8 -8)))): ((sa_rgb >> (((16 + 8) - 8) & 0x1F)) &(0x100 - (1U << (8 - 8)))))) & (0x100 - (1U << (8 -4))))>> ((8 - (8 + 4)) & 0x1F)): (((((16 + 8 <8) ? ((sa_rgb << ((8 - (16 + 8)) & 0x1F)) & (0x100 -(1U <<(8 -8)))): ((sa_rgb >> (((16 + 8) - 8) & 0x1F)) &(0x100 - (1U << (8 - 8)))))) & (0x100 - (1U << (8 -4))))<< (((8 + 4) - 8) & 0x1F))) | ((4 + 4 <8)? (((((8 + 8 <8) ? ((sa_rgb <<((8 -(8 +8)) &0x1F)) &(0x100 -(1U <<(8 -8)))): ((sa_rgb >>(((8 + 8) -8) & 0x1F)) &(0x100 -(1U <<(8 -8)))))) &(0x100 -(1U << (8 - 4)))) >>((8 -(4 +4)) & 0x1F)) : (((((8+8<8)?((sa_rgb << ((8 - (8 + 8)) & 0x1F)) & (0x100 - (1U << (8 - 8)))) : ((sa_rgb >> (((8 + 8) - 8) & 0x1F)) & (0x100 - (1U << (8 - 8)))))) & (0x100 - (1U << (8 - 4)))) << (((4 + 4) - 8) & 0x1F))) | ((0 + 4 < 8) ? (((((0 + 8 < 8) ? ((sa_rgb << ((8 - (0 + 8)) & 0x1F)) & (0x100 - (1U << (8 - 8)))) : ((sa_rgb >> (((0 + 8) - 8) & 0x1F)) & (0x100 - (1U << (8 - 8)))))) & (0x100 - (1U << (8 - 4)))) >> ((8 - (0 + 4)) & 0x1F)) : (((((0 + 8 < 8) ? ((sa_rgb << ((8 - (0 + 8)) & 0x1F)) & (0x100 - (1U << (8 - 8)))) : ((sa_rgb >> (((0 + 8) - 8) & 0x1F)) & (0x100 - (1U << (8 - 8)))))) & (0x100 - (1U << (8 - 4)))) << (((0 + 4) - 8) & 0x1F)));
  295.             *(unsigned short *) (d2) = da_rgb;
  296.             d2 += 2;
  297.             register unsigned int sb_rgb;
  298.             sb_rgb = *(unsigned short *) (d1);
  299.             da_rgb =(((da_rgb ^ sb_rgb) >> 1) &(((1U << (8 + 4 - 1)) - (1U << 8)) | ((1U << (4 + 4 - 1)) -(1U << 4)) | ((1U <<(0 + 4 -1)) -(1U <<0)))) +(da_rgb & sb_rgb);
  300.             d1 += 2;
  301.             *(unsigned short *) (d12) = da_rgb;
  302.             d12 += 2;
  303.             do
  304.             {
  305.                 s += 4;
  306.             }
  307.             while ((limit -= step) >= 0);
  308.             limit += src_dx;
  309.         }
  310.         while (--count);
  311.     }
  312. }
  313. void
  314. RGB32toRGB444_ROW2X_COPY (unsigned char *dest_ptr_1,
  315.                           unsigned char *dest_ptr_12,
  316.                           unsigned char *dest_ptr_2, int dest_dx,
  317.                           unsigned char *src_ptr, int src_dx)
  318. {
  319.     register unsigned char *d1 = dest_ptr_1;
  320.     register unsigned char *d12 = dest_ptr_12;
  321.     register unsigned char *d2 = dest_ptr_2;
  322.     register unsigned char *s = src_ptr;
  323.     register int count = dest_dx;
  324.     while (((unsigned int) d2 & 3) && ((unsigned int) s & 3) && count)
  325.     {
  326.         register unsigned int da_rgb;
  327.         register unsigned int sa_rgb;
  328.         sa_rgb = *(unsigned int *) (s);
  329.         da_rgb =((8 + 4 <8)? (((((16 + 8 <8) ? ((sa_rgb << ((8 - (16 + 8)) & 0x1F)) & (0x100 -(1U <<(8 -8)))): ((sa_rgb >> (((16 + 8) - 8) & 0x1F)) &(0x100 - (1U << (8 - 8)))))) & (0x100 - (1U << (8 -4))))>> ((8 - (8 + 4)) & 0x1F)): (((((16 + 8 <8) ? ((sa_rgb << ((8 - (16 + 8)) & 0x1F)) & (0x100 -(1U <<(8 -8)))): ((sa_rgb >> (((16 + 8) - 8) & 0x1F)) &(0x100 - (1U << (8 - 8)))))) & (0x100 - (1U << (8 -4))))<< (((8 + 4) - 8) & 0x1F))) | ((4 + 4 <8)? (((((8 + 8 <8) ? ((sa_rgb <<((8 -(8 +8)) & 0x1F))& (0x100 -(1U <<(8 -8)))): ((sa_rgb >>(((8 + 8) -8) & 0x1F)) &(0x100 -(1U << (8 - 8))))))& (0x100 -(1U << (8 - 4)))) >>((8 -(4 +4)) & 0x1F)) : (((((8 +8 <8)? ((sa_rgb << ((8 - (8 + 8)) & 0x1F)) & (0x100 - (1U << (8 - 8)))) : ((sa_rgb >> (((8 + 8) - 8) & 0x1F)) & (0x100 - (1U << (8 - 8)))))) & (0x100 - (1U << (8 - 4)))) << (((4 + 4) - 8) & 0x1F))) | ((0 + 4 < 8) ? (((((0 + 8 < 8) ? ((sa_rgb << ((8 - (0 + 8)) & 0x1F)) & (0x100 - (1U << (8 - 8)))) : ((sa_rgb >> (((0 + 8) - 8) & 0x1F)) & (0x100 - (1U << (8 - 8)))))) & (0x100 - (1U << (8 - 4)))) >> ((8 - (0 + 4)) & 0x1F)) : (((((0 + 8 < 8) ? ((sa_rgb << ((8 - (0 + 8)) & 0x1F)) & (0x100 - (1U << (8 - 8)))) : ((sa_rgb >> (((0 + 8) - 8) & 0x1F)) & (0x100 - (1U << (8 - 8)))))) & (0x100 - (1U << (8 - 4)))) << (((0 + 4) - 8) & 0x1F)));
  330.         s += 4;
  331.         *(unsigned short *) (d2) = da_rgb;
  332.         d2 += 2;
  333.         register unsigned int sb_rgb;
  334.         sb_rgb = *(unsigned short *) (d1);
  335.         da_rgb =(((da_rgb ^ sb_rgb) >> 1) &(((1U << (8 + 4 - 1)) - (1U << 8)) | ((1U << (4 + 4 - 1)) -(1U << 4)) | ((1U <<(0 + 4 -1)) -(1U << 0))))+ (da_rgb & sb_rgb);
  336.         d1 += 2;
  337.         *(unsigned short *) (d12) = da_rgb;
  338.         d12 += 2;
  339.         count--;
  340.     }
  341.     while (count >= 4)
  342.     {
  343.         register unsigned int da_rgb;
  344.         register unsigned int sa_rgb;
  345.         register unsigned int sb_rgb;
  346.         sa_rgb = *(unsigned int *) (s);
  347.         da_rgb =((8 + 4 <8)? (((((16 + 8 <8) ? ((sa_rgb << ((8 - (16 + 8)) & 0x1F)) & (0x100 -(1U <<(8 -8)))): ((sa_rgb >> (((16 + 8) - 8) & 0x1F)) &(0x100 - (1U << (8 - 8)))))) & (0x100 - (1U << (8 -4))))>> ((8 - (8 + 4)) & 0x1F)): (((((16 + 8 <8) ? ((sa_rgb << ((8 - (16 + 8)) & 0x1F)) & (0x100 -(1U <<(8 -8)))): ((sa_rgb >> (((16 + 8) - 8) & 0x1F)) &(0x100 - (1U << (8 - 8)))))) & (0x100 - (1U << (8 -4))))<< (((8 + 4) - 8) & 0x1F))) | ((4 + 4 <8)? (((((8 + 8 <8) ? ((sa_rgb <<((8 -(8 +8)) & 0x1F))& (0x100 -(1U <<(8 -8)))): ((sa_rgb >>(((8 + 8) -8) & 0x1F)) &(0x100 -(1U << (8 - 8))))))& (0x100 -(1U << (8 - 4)))) >>((8 -(4 +4)) & 0x1F)) : (((((8 +8 <8)? ((sa_rgb << ((8 - (8 + 8)) & 0x1F)) & (0x100 - (1U << (8 - 8)))) : ((sa_rgb >> (((8 + 8) - 8) & 0x1F)) & (0x100 - (1U << (8 - 8)))))) & (0x100 - (1U << (8 - 4)))) << (((4 + 4) - 8) & 0x1F))) | ((0 + 4 < 8) ? (((((0 + 8 < 8) ? ((sa_rgb << ((8 - (0 + 8)) & 0x1F)) & (0x100 - (1U << (8 - 8)))) : ((sa_rgb >> (((0 + 8) - 8) & 0x1F)) & (0x100 - (1U << (8 - 8)))))) & (0x100 - (1U << (8 - 4)))) >> ((8 - (0 + 4)) & 0x1F)) : (((((0 + 8 < 8) ? ((sa_rgb << ((8 - (0 + 8)) & 0x1F)) & (0x100 - (1U << (8 - 8)))) : ((sa_rgb >> (((0 + 8) - 8) & 0x1F)) & (0x100 - (1U << (8 - 8)))))) & (0x100 - (1U << (8 - 4)))) << (((0 + 4) - 8) & 0x1F)));
  348.         *(unsigned short *) (d2) = da_rgb;
  349.         sb_rgb = *(unsigned short *) (d1);
  350.         da_rgb =(((da_rgb ^ sb_rgb) >> 1) &(((1U << (8 + 4 - 1)) - (1U << 8)) | ((1U << (4 + 4 - 1)) -(1U << 4)) | ((1U <<(0 + 4 -1)) -(1U << 0))))+ (da_rgb & sb_rgb);
  351.         *(unsigned short *) (d12) = da_rgb;
  352.         sa_rgb = *(unsigned int *) (s + 4);
  353.         da_rgb =((8 + 4 <8)? (((((16 + 8 <8) ? ((sa_rgb << ((8 - (16 + 8)) & 0x1F)) & (0x100 -(1U <<(8 -8)))): ((sa_rgb >> (((16 + 8) - 8) & 0x1F)) &(0x100 - (1U << (8 - 8)))))) & (0x100 - (1U << (8 -4))))>> ((8 - (8 + 4)) & 0x1F)): (((((16 + 8 <8) ? ((sa_rgb << ((8 - (16 + 8)) & 0x1F)) & (0x100 -(1U <<(8 -8)))): ((sa_rgb >> (((16 + 8) - 8) & 0x1F)) &(0x100 - (1U << (8 - 8)))))) & (0x100 - (1U << (8 -4))))<< (((8 + 4) - 8) & 0x1F))) | ((4 + 4 <8)? (((((8 + 8 <8) ? ((sa_rgb <<((8 -(8 +8)) & 0x1F))& (0x100 -(1U <<(8 -8)))): ((sa_rgb >>(((8 + 8) -8) & 0x1F)) &(0x100 -(1U << (8 - 8))))))& (0x100 -(1U << (8 - 4)))) >>((8 -(4 +4)) & 0x1F)) : (((((8 +8 <8)? ((sa_rgb << ((8 - (8 + 8)) & 0x1F)) & (0x100 - (1U << (8 - 8)))) : ((sa_rgb >> (((8 + 8) - 8) & 0x1F)) & (0x100 - (1U << (8 - 8)))))) & (0x100 - (1U << (8 - 4)))) << (((4 + 4) - 8) & 0x1F))) | ((0 + 4 < 8) ? (((((0 + 8 < 8) ? ((sa_rgb << ((8 - (0 + 8)) & 0x1F)) & (0x100 - (1U << (8 - 8)))) : ((sa_rgb >> (((0 + 8) - 8) & 0x1F)) & (0x100 - (1U << (8 - 8)))))) & (0x100 - (1U << (8 - 4)))) >> ((8 - (0 + 4)) & 0x1F)) : (((((0 + 8 < 8) ? ((sa_rgb << ((8 - (0 + 8)) & 0x1F)) & (0x100 - (1U << (8 - 8)))) : ((sa_rgb >> (((0 + 8) - 8) & 0x1F)) & (0x100 - (1U << (8 - 8)))))) & (0x100 - (1U << (8 - 4)))) << (((0 + 4) - 8) & 0x1F)));
  354.         *(unsigned short *) (d2 + 2) = da_rgb;
  355.         sb_rgb = *(unsigned short *) (d1 + 2);
  356.         da_rgb =(((da_rgb ^ sb_rgb) >> 1) &(((1U << (8 + 4 - 1)) - (1U << 8)) | ((1U << (4 + 4 - 1)) -(1U << 4)) | ((1U <<(0 + 4 -1)) -(1U << 0))))+ (da_rgb & sb_rgb);
  357.         *(unsigned short *) (d12 + 2) = da_rgb;
  358.         sa_rgb = *(unsigned int *) (s + 2 * 4);
  359.         da_rgb =((8 + 4 <8)? (((((16 + 8 <8) ? ((sa_rgb << ((8 - (16 + 8)) & 0x1F)) & (0x100 -(1U <<(8 -8)))): ((sa_rgb >> (((16 + 8) - 8) & 0x1F)) &(0x100 - (1U << (8 - 8)))))) & (0x100 - (1U << (8 -4))))>> ((8 - (8 + 4)) & 0x1F)): (((((16 + 8 <8) ? ((sa_rgb << ((8 - (16 + 8)) & 0x1F)) & (0x100 -(1U <<(8 -8)))): ((sa_rgb >> (((16 + 8) - 8) & 0x1F)) &(0x100 - (1U << (8 - 8)))))) & (0x100 - (1U << (8 -4))))<< (((8 + 4) - 8) & 0x1F))) | ((4 + 4 <8)? (((((8 + 8 <8) ? ((sa_rgb <<((8 -(8 +8)) & 0x1F))& (0x100 -(1U <<(8 -8)))): ((sa_rgb >>(((8 + 8) -8) & 0x1F)) &(0x100 -(1U << (8 - 8))))))& (0x100 -(1U << (8 - 4)))) >>((8 -(4 +4)) & 0x1F)) : (((((8 +8 <8)? ((sa_rgb << ((8 - (8 + 8)) & 0x1F)) & (0x100 - (1U << (8 - 8)))) : ((sa_rgb >> (((8 + 8) - 8) & 0x1F)) & (0x100 - (1U << (8 - 8)))))) & (0x100 - (1U << (8 - 4)))) << (((4 + 4) - 8) & 0x1F))) | ((0 + 4 < 8) ? (((((0 + 8 < 8) ? ((sa_rgb << ((8 - (0 + 8)) & 0x1F)) & (0x100 - (1U << (8 - 8)))) : ((sa_rgb >> (((0 + 8) - 8) & 0x1F)) & (0x100 - (1U << (8 - 8)))))) & (0x100 - (1U << (8 - 4)))) >> ((8 - (0 + 4)) & 0x1F)) : (((((0 + 8 < 8) ? ((sa_rgb << ((8 - (0 + 8)) & 0x1F)) & (0x100 - (1U << (8 - 8)))) : ((sa_rgb >> (((0 + 8) - 8) & 0x1F)) & (0x100 - (1U << (8 - 8)))))) & (0x100 - (1U << (8 - 4)))) << (((0 + 4) - 8) & 0x1F)));
  360.         *(unsigned short *) (d2 + 2 * 2) = da_rgb;
  361.         sb_rgb = *(unsigned short *) (d1 + 2 * 2);
  362.         da_rgb =(((da_rgb ^ sb_rgb) >> 1) &(((1U << (8 + 4 - 1)) - (1U << 8)) | ((1U << (4 + 4 - 1)) -(1U << 4)) | ((1U <<(0 + 4 -1)) -(1U << 0))))+ (da_rgb & sb_rgb);
  363.         *(unsigned short *) (d12 + 2 * 2) = da_rgb;
  364.         sa_rgb = *(unsigned int *) (s + 3 * 4);
  365.         da_rgb =((8 + 4 <8)? (((((16 + 8 <8) ? ((sa_rgb << ((8 - (16 + 8)) & 0x1F)) & (0x100 -(1U <<(8 -8)))): ((sa_rgb >> (((16 + 8) - 8) & 0x1F)) &(0x100 - (1U << (8 - 8)))))) & (0x100 - (1U << (8 -4))))>> ((8 - (8 + 4)) & 0x1F)): (((((16 + 8 <8) ? ((sa_rgb << ((8 - (16 + 8)) & 0x1F)) & (0x100 -(1U <<(8 -8)))): ((sa_rgb >> (((16 + 8) - 8) & 0x1F)) &(0x100 - (1U << (8 - 8)))))) & (0x100 - (1U << (8 -4))))<< (((8 + 4) - 8) & 0x1F))) | ((4 + 4 <8)? (((((8 + 8 <8) ? ((sa_rgb <<((8 -(8 +8)) & 0x1F))& (0x100 -(1U <<(8 -8)))): ((sa_rgb >>(((8 + 8) -8) & 0x1F)) &(0x100 -(1U << (8 - 8))))))& (0x100 -(1U << (8 - 4)))) >>((8 -(4 +4)) & 0x1F)) : (((((8 +8 <8)? ((sa_rgb << ((8 - (8 + 8)) & 0x1F)) & (0x100 - (1U << (8 - 8)))) : ((sa_rgb >> (((8 + 8) - 8) & 0x1F)) & (0x100 - (1U << (8 - 8)))))) & (0x100 - (1U << (8 - 4)))) << (((4 + 4) - 8) & 0x1F))) | ((0 + 4 < 8) ? (((((0 + 8 < 8) ? ((sa_rgb << ((8 - (0 + 8)) & 0x1F)) & (0x100 - (1U << (8 - 8)))) : ((sa_rgb >> (((0 + 8) - 8) & 0x1F)) & (0x100 - (1U << (8 - 8)))))) & (0x100 - (1U << (8 - 4)))) >> ((8 - (0 + 4)) & 0x1F)) : (((((0 + 8 < 8) ? ((sa_rgb << ((8 - (0 + 8)) & 0x1F)) & (0x100 - (1U << (8 - 8)))) : ((sa_rgb >> (((0 + 8) - 8) & 0x1F)) & (0x100 - (1U << (8 - 8)))))) & (0x100 - (1U << (8 - 4)))) << (((0 + 4) - 8) & 0x1F)));
  366.         *(unsigned short *) (d2 + 3 * 2) = da_rgb;
  367.         sb_rgb = *(unsigned short *) (d1 + 3 * 2);
  368.         da_rgb =(((da_rgb ^ sb_rgb) >> 1) &(((1U << (8 + 4 - 1)) - (1U << 8)) | ((1U << (4 + 4 - 1)) -(1U << 4)) | ((1U <<(0 + 4 -1)) -(1U << 0))))+ (da_rgb & sb_rgb);
  369.         *(unsigned short *) (d12 + 3 * 2) = da_rgb;
  370.         s += 4 * 4;
  371.         d1 += 4 * 2;
  372.         d2 += 4 * 2;
  373.         d12 += 4 * 2;
  374.         count -= 4;
  375.     }
  376.     while (count)
  377.     {
  378.         register unsigned int da_rgb;
  379.         register unsigned int sa_rgb;
  380.         sa_rgb = *(unsigned int *) (s);
  381.         da_rgb =((8 + 4 <8)? (((((16 + 8 <8) ? ((sa_rgb << ((8 - (16 + 8)) & 0x1F)) & (0x100 -(1U <<(8 -8)))): ((sa_rgb >> (((16 + 8) - 8) & 0x1F)) &(0x100 - (1U << (8 - 8)))))) & (0x100 - (1U << (8 -4))))>> ((8 - (8 + 4)) & 0x1F)): (((((16 + 8 <8) ? ((sa_rgb << ((8 - (16 + 8)) & 0x1F)) & (0x100 -(1U <<(8 -8)))): ((sa_rgb >> (((16 + 8) - 8) & 0x1F)) &(0x100 - (1U << (8 - 8)))))) & (0x100 - (1U << (8 -4))))<< (((8 + 4) - 8) & 0x1F))) | ((4 + 4 <8)? (((((8 + 8 <8) ? ((sa_rgb <<((8 -(8 +8)) & 0x1F))& (0x100 -(1U <<(8 -8)))): ((sa_rgb >>(((8 + 8) -8) & 0x1F)) &(0x100 -(1U << (8 - 8))))))& (0x100 -(1U << (8 - 4)))) >>((8 -(4 +4)) & 0x1F)) : (((((8 +8 <8)? ((sa_rgb << ((8 - (8 + 8)) & 0x1F)) & (0x100 - (1U << (8 - 8)))) : ((sa_rgb >> (((8 + 8) - 8) & 0x1F)) & (0x100 - (1U << (8 - 8)))))) & (0x100 - (1U << (8 - 4)))) << (((4 + 4) - 8) & 0x1F))) | ((0 + 4 < 8) ? (((((0 + 8 < 8) ? ((sa_rgb << ((8 - (0 + 8)) & 0x1F)) & (0x100 - (1U << (8 - 8)))) : ((sa_rgb >> (((0 + 8) - 8) & 0x1F)) & (0x100 - (1U << (8 - 8)))))) & (0x100 - (1U << (8 - 4)))) >> ((8 - (0 + 4)) & 0x1F)) : (((((0 + 8 < 8) ? ((sa_rgb << ((8 - (0 + 8)) & 0x1F)) & (0x100 - (1U << (8 - 8)))) : ((sa_rgb >> (((0 + 8) - 8) & 0x1F)) & (0x100 - (1U << (8 - 8)))))) & (0x100 - (1U << (8 - 4)))) << (((0 + 4) - 8) & 0x1F)));
  382.         s += 4;
  383.         *(unsigned short *) (d2) = da_rgb;
  384.         d2 += 2;
  385.         register unsigned int sb_rgb;
  386.         sb_rgb = *(unsigned short *) (d1);
  387.         da_rgb =(((da_rgb ^ sb_rgb) >> 1) &(((1U << (8 + 4 - 1)) - (1U << 8)) | ((1U << (4 + 4 - 1)) -(1U << 4)) | ((1U <<(0 + 4 -1)) -(1U << 0))))+ (da_rgb & sb_rgb);
  388.         d1 += 2;
  389.         *(unsigned short *) (d12) = da_rgb;
  390.         d12 += 2;
  391.         count--;
  392.     }
  393. }
  394. void
  395. RGB32toRGB444_ROW2X_STRETCH (unsigned char *dest_ptr_1,
  396.                              unsigned char *dest_ptr_12,
  397.                              unsigned char *dest_ptr_2, int dest_dx,
  398.                              unsigned char *src_ptr, int src_dx)
  399. {
  400.     register unsigned char *d1 = dest_ptr_1;
  401.     register unsigned char *d12 = dest_ptr_12;
  402.     register unsigned char *d2 = dest_ptr_2;
  403.     register unsigned char *s = src_ptr;
  404.     register int count = dest_dx;
  405.     register int limit = dest_dx >> 1;
  406.     register int step = src_dx;
  407.     if (count)
  408.     {
  409.         goto start;
  410.         do
  411.         {
  412.             register unsigned int da_rgb;
  413.             register unsigned int dc_rgb;
  414.             if ((limit -= step) < 0)
  415.             {
  416.                 limit += dest_dx;
  417.               start:if (5 == 0)
  418.               {
  419.                   da_rgb = *(unsigned short *) (s);
  420.               }
  421.               else
  422.               {
  423.                   register unsigned int sa_rgb;
  424.                   sa_rgb = *(unsigned int *) (s);
  425.                   da_rgb =((8 + 4 <8)? (((((16 + 8 <8) ? ((sa_rgb << ((8 - (16 + 8)) & 0x1F)) & (0x100-(1U<<(8 -8)))): ((sa_rgb >> (((16 + 8) - 8) & 0x1F)) &(0x100 - (1U << (8 - 8)))))) & (0x100 -(1U <<(8 -4)))) >> ((8 -(8+4))&0x1F)): (((((16 + 8 <8) ? ((sa_rgb << ((8 - (16 + 8)) & 0x1F)) & (0x100-(1U<<(8 -8)))): ((sa_rgb >> (((16 + 8) - 8) & 0x1F)) &(0x100 - (1U << (8 - 8)))))) & (0x100 -(1U <<(8 -4)))) << (((8+4)-8)&0x1F)))| ((4 + 4 < 8)? (((((8 + 8 <8) ? ((sa_rgb << ((8 - (8 + 8)) & 0x1F)) &(0x100 -(1U << (8 - 8)))) : ((sa_rgb >>(((8 + 8) -8) & 0x1F)) &(0x100 -(1U << (8 - 8))))))& (0x100 - (1U << (8 - 4)))) >> ((8 -(4 +4)) & 0x1F)): (((((8 + 8 <8) ? ((sa_rgb << ((8 - (8 + 8)) & 0x1F)) &(0x100 -(1U << (8 - 8)))) : ((sa_rgb >>(((8 + 8) -8) & 0x1F)) &(0x100 -(1U << (8 - 8))))))& (0x100 - (1U << (8 - 4)))) << (((4 + 4) -8) & 0x1F))) |((0 + 4 <8)? (((((0 + 8 <8) ? ((sa_rgb << ((8 - (0 + 8)) & 0x1F)) & (0x100-(1U <<(8 -8)))): ((sa_rgb >> (((0 + 8) - 8) & 0x1F)) &(0x100 - (1U << (8 - 8)))))) & (0x100 -(1U <<(8 -4)))) >> ((8 -(0+4))&0x1F)): (((((0 + 8 <8) ? ((sa_rgb << ((8 - (0 + 8)) & 0x1F)) & (0x100-(1U <<(8 -8)))): ((sa_rgb >> (((0 + 8) - 8) & 0x1F)) &(0x100 - (1U << (8 - 8)))))) & (0x100 -(1U <<(8 -4)))) << (((0+4)-8)&0x1F)));
  426.               }
  427.                 s += 4;
  428.                 register unsigned int sb_rgb;
  429.                 sb_rgb = *(unsigned short *) (d1);
  430.                 dc_rgb =(((da_rgb ^ sb_rgb) >> 1) &(((1U << (8 + 4 - 1)) - (1U << 8)) | ((1U << (4 + 4 - 1)) -(1U << 4)) | ((1U <<(0 +4 -1)) -(1U <<0))))+ (da_rgb & sb_rgb);
  431.             }
  432.             d1 += 2;
  433.             *(unsigned short *) (d2) = da_rgb;
  434.             d2 += 2;
  435.             *(unsigned short *) (d12) = dc_rgb;
  436.             d12 += 2;
  437.         }
  438.         while (--count);
  439.     }
  440. }
  441. void
  442. RGB32toRGB444_ROW2X_STRETCH2X (unsigned char *dest_ptr_1,
  443.                                unsigned char *dest_ptr_12,
  444.                                unsigned char *dest_ptr_2, int dest_dx,
  445.                                unsigned char *src_ptr, int src_dx)
  446. {
  447.     register unsigned char *d1 = dest_ptr_1;
  448.     register unsigned char *d12 = dest_ptr_12;
  449.     register unsigned char *d2 = dest_ptr_2;
  450.     register unsigned char *s = src_ptr;
  451.     register int count = src_dx;
  452.     if (count)
  453.     {
  454.         register unsigned int da_rgb;
  455.         register unsigned int dc_rgb;
  456.         register unsigned int sa_rgb;
  457.         sa_rgb = *(unsigned int *) (s);
  458.         da_rgb =((8 + 4 <8)? (((((16 + 8 <8) ? ((sa_rgb << ((8 - (16 + 8)) & 0x1F)) & (0x100 -(1U <<(8 -8)))): ((sa_rgb >> (((16 + 8) - 8) & 0x1F)) &(0x100 - (1U << (8 - 8)))))) & (0x100 - (1U << (8 -4)))) >>((8 -(8 +4)) & 0x1F)) : (((((16 + 8 <8) ? ((sa_rgb <<((8 -(16 + 8)) & 0x1F)) & (0x100 -(1U <<(8 -8)))): ((sa_rgb >> (((16 + 8) - 8) & 0x1F)) &(0x100 -(1U << (8 - 8)))))) & (0x100 -(1U <<(8 -4)))) <<(((8 + 4) - 8) & 0x1F))) | ((4 + 4 <8)? (((((8 + 8 <8)? ((sa_rgb << ((8 - (8 + 8)) & 0x1F)) & (0x100 - (1U << (8 - 8)))) : ((sa_rgb >> (((8 + 8) - 8) & 0x1F)) & (0x100 - (1U << (8 - 8)))))) & (0x100 - (1U << (8 - 4)))) >> ((8 - (4 + 4)) & 0x1F)) : (((((8 + 8 < 8) ? ((sa_rgb << ((8 - (8 + 8)) & 0x1F)) & (0x100 - (1U << (8 - 8)))) : ((sa_rgb >> (((8 + 8) - 8) & 0x1F)) & (0x100 - (1U << (8 - 8)))))) & (0x100 - (1U << (8 - 4)))) << (((4 + 4) - 8) & 0x1F))) | ((0 + 4 < 8) ? (((((0 + 8 < 8) ? ((sa_rgb << ((8 - (0 + 8)) & 0x1F)) & (0x100 - (1U << (8 - 8)))) : ((sa_rgb >> (((0 + 8) - 8) & 0x1F)) & (0x100 - (1U << (8 - 8)))))) & (0x100 - (1U << (8 - 4)))) >> ((8 - (0 + 4)) & 0x1F)) : (((((0 + 8 < 8) ? ((sa_rgb << ((8 - (0 + 8)) & 0x1F)) & (0x100 - (1U << (8 - 8)))) : ((sa_rgb >> (((0 + 8) - 8) & 0x1F)) & (0x100 - (1U << (8 - 8)))))) & (0x100 - (1U << (8 - 4)))) << (((0 + 4) - 8) & 0x1F)));
  459.         s += 4;
  460.         register unsigned int sb_rgb;
  461.         sb_rgb = *(unsigned short *) (d1);
  462.         dc_rgb =(((da_rgb ^ sb_rgb) >> 1) &(((1U << (8 + 4 - 1)) - (1U << 8)) | ((1U << (4 + 4 - 1)) -(1U << 4)) | ((1U <<(0 + 4 - 1)) -(1U << 0)))) +(da_rgb & sb_rgb);
  463.         d1 += 2 * 2;
  464.         count--;
  465.         *(unsigned short *) (d2) = da_rgb;
  466.         d2 += 2;
  467.         *(unsigned short *) (d12) = dc_rgb;
  468.         d12 += 2;
  469.         while (count >= 2)
  470.         {
  471.             register unsigned int db_rgb;
  472.             register unsigned int dd_rgb;
  473.             register unsigned int sa_rgb;
  474.             sa_rgb = *(unsigned int *) (s);
  475.             db_rgb =((8 + 4 <8)? (((((16 + 8 <8) ? ((sa_rgb << ((8 - (16 + 8)) & 0x1F)) & (0x100 -(1U <<(8 -8)))): ((sa_rgb >> (((16 + 8) - 8) & 0x1F)) &(0x100 - (1U << (8 - 8)))))) & (0x100 - (1U << (8 -4))))>> ((8 - (8 + 4)) & 0x1F)): (((((16 + 8 <8) ? ((sa_rgb << ((8 - (16 + 8)) & 0x1F)) & (0x100 -(1U <<(8 -8)))): ((sa_rgb >> (((16 + 8) - 8) & 0x1F)) &(0x100 - (1U << (8 - 8)))))) & (0x100 - (1U << (8 -4))))<< (((8 + 4) - 8) & 0x1F))) | ((4 + 4 <8)? (((((8 + 8 <8) ? ((sa_rgb <<((8 -(8 +8)) &0x1F)) &(0x100 -(1U <<(8 -8)))): ((sa_rgb >>(((8 + 8) -8) & 0x1F)) &(0x100 -(1U <<(8 -8)))))) &(0x100 -(1U << (8 - 4)))) >>((8 -(4 +4)) & 0x1F)) : (((((8+8<8)?((sa_rgb << ((8 - (8 + 8)) & 0x1F)) & (0x100 - (1U << (8 - 8)))) : ((sa_rgb >> (((8 + 8) - 8) & 0x1F)) & (0x100 - (1U << (8 - 8)))))) & (0x100 - (1U << (8 - 4)))) << (((4 + 4) - 8) & 0x1F))) | ((0 + 4 < 8) ? (((((0 + 8 < 8) ? ((sa_rgb << ((8 - (0 + 8)) & 0x1F)) & (0x100 - (1U << (8 - 8)))) : ((sa_rgb >> (((0 + 8) - 8) & 0x1F)) & (0x100 - (1U << (8 - 8)))))) & (0x100 - (1U << (8 - 4)))) >> ((8 - (0 + 4)) & 0x1F)) : (((((0 + 8 < 8) ? ((sa_rgb << ((8 - (0 + 8)) & 0x1F)) & (0x100 - (1U << (8 - 8)))) : ((sa_rgb >> (((0 + 8) - 8) & 0x1F)) & (0x100 - (1U << (8 - 8)))))) & (0x100 - (1U << (8 - 4)))) << (((0 + 4) - 8) & 0x1F)));
  476.             da_rgb =(((da_rgb ^ db_rgb) >> 1) &(((1U << (8 + 4 - 1)) - (1U << 8)) | ((1U << (4 + 4 - 1)) -(1U << 4)) | ((1U <<(0 + 4 -1)) -(1U << 0))))+ (da_rgb & db_rgb);
  477.             *(unsigned short *) (d2) = da_rgb;
  478.             *(unsigned short *) (d2 + 2) = db_rgb;
  479.             register unsigned int sb_rgb;
  480.             sb_rgb = *(unsigned short *) (d1);
  481.             dd_rgb =(((db_rgb ^ sb_rgb) >> 1) &(((1U << (8 + 4 - 1)) - (1U << 8)) | ((1U << (4 + 4 - 1)) -(1U << 4)) | ((1U <<(0 + 4 -1)) -(1U <<0)))) +(db_rgb & sb_rgb);
  482.             dc_rgb =(((dc_rgb ^ dd_rgb) >> 1) &(((1U << (8 + 4 - 1)) - (1U << 8)) | ((1U << (4 + 4 - 1)) -(1U << 4)) | ((1U <<(0 + 4 -1)) -(1U << 0))))+ (dc_rgb & dd_rgb);
  483.             *(unsigned short *) (d12) = dc_rgb;
  484.             *(unsigned short *) (d12 + 2) = dd_rgb;
  485.             sa_rgb = *(unsigned int *) (s + 4);
  486.             da_rgb =((8 + 4 <8)? (((((16 + 8 <8) ? ((sa_rgb << ((8 - (16 + 8)) & 0x1F)) & (0x100 -(1U <<(8 -8)))): ((sa_rgb >> (((16 + 8) - 8) & 0x1F)) &(0x100 - (1U << (8 - 8)))))) & (0x100 - (1U << (8 -4))))>> ((8 - (8 + 4)) & 0x1F)): (((((16 + 8 <8) ? ((sa_rgb << ((8 - (16 + 8)) & 0x1F)) & (0x100 -(1U <<(8 -8)))): ((sa_rgb >> (((16 + 8) - 8) & 0x1F)) &(0x100 - (1U << (8 - 8)))))) & (0x100 - (1U << (8 -4))))<< (((8 + 4) - 8) & 0x1F))) | ((4 + 4 <8)? (((((8 + 8 <8) ? ((sa_rgb <<((8 -(8 +8)) &0x1F)) &(0x100 -(1U <<(8 -8)))): ((sa_rgb >>(((8 + 8) -8) & 0x1F)) &(0x100 -(1U <<(8 -8)))))) &(0x100 -(1U << (8 - 4)))) >>((8 -(4 +4)) & 0x1F)) : (((((8+8<8)?((sa_rgb << ((8 - (8 + 8)) & 0x1F)) & (0x100 - (1U << (8 - 8)))) : ((sa_rgb >> (((8 + 8) - 8) & 0x1F)) & (0x100 - (1U << (8 - 8)))))) & (0x100 - (1U << (8 - 4)))) << (((4 + 4) - 8) & 0x1F))) | ((0 + 4 < 8) ? (((((0 + 8 < 8) ? ((sa_rgb << ((8 - (0 + 8)) & 0x1F)) & (0x100 - (1U << (8 - 8)))) : ((sa_rgb >> (((0 + 8) - 8) & 0x1F)) & (0x100 - (1U << (8 - 8)))))) & (0x100 - (1U << (8 - 4)))) >> ((8 - (0 + 4)) & 0x1F)) : (((((0 + 8 < 8) ? ((sa_rgb << ((8 - (0 + 8)) & 0x1F)) & (0x100 - (1U << (8 - 8)))) : ((sa_rgb >> (((0 + 8) - 8) & 0x1F)) & (0x100 - (1U << (8 - 8)))))) & (0x100 - (1U << (8 - 4)))) << (((0 + 4) - 8) & 0x1F)));
  487.             db_rgb =(((db_rgb ^ da_rgb) >> 1) &(((1U << (8 + 4 - 1)) - (1U << 8)) | ((1U << (4 + 4 - 1)) -(1U << 4)) | ((1U <<(0 + 4 -1)) -(1U << 0))))+ (db_rgb & da_rgb);
  488.             *(unsigned short *) (d2 + 2 * 2) = db_rgb;
  489.             *(unsigned short *) (d2 + 3 * 2) = da_rgb;
  490.             sb_rgb = *(unsigned short *) (d1 + 2 * 2);
  491.             dc_rgb =(((da_rgb ^ sb_rgb) >> 1) &(((1U << (8 + 4 - 1)) - (1U << 8)) | ((1U << (4 + 4 - 1)) -(1U << 4)) | ((1U <<(0 + 4 -1)) -(1U <<0)))) +(da_rgb & sb_rgb);
  492.             dd_rgb =(((dd_rgb ^ dc_rgb) >> 1) &(((1U << (8 + 4 - 1)) - (1U << 8)) | ((1U << (4 + 4 - 1)) -(1U << 4)) | ((1U <<(0 + 4 -1)) -(1U << 0))))+ (dd_rgb & dc_rgb);
  493.             *(unsigned short *) (d12 + 2 * 2) = dd_rgb;
  494.             *(unsigned short *) (d12 + 3 * 2) = dc_rgb;
  495.             s += 2 * 4;
  496.             d1 += 4 * 2;
  497.             d2 += 4 * 2;
  498.             d12 += 4 * 2;
  499.             count -= 2;
  500.         }
  501.         if (count)
  502.         {
  503.             register unsigned int db_rgb;
  504.             register unsigned int dd_rgb;
  505.             register unsigned int sa_rgb;
  506.             sa_rgb = *(unsigned int *) (s);
  507.             db_rgb =((8 + 4 <8)? (((((16 + 8 <8) ? ((sa_rgb << ((8 - (16 + 8)) & 0x1F)) & (0x100 -(1U <<(8 -8)))): ((sa_rgb >> (((16 + 8) - 8) & 0x1F)) &(0x100 - (1U << (8 - 8)))))) & (0x100 - (1U << (8 -4))))>> ((8 - (8 + 4)) & 0x1F)): (((((16 + 8 <8) ? ((sa_rgb << ((8 - (16 + 8)) & 0x1F)) & (0x100 -(1U <<(8 -8)))): ((sa_rgb >> (((16 + 8) - 8) & 0x1F)) &(0x100 - (1U << (8 - 8)))))) & (0x100 - (1U << (8 -4))))<< (((8 + 4) - 8) & 0x1F))) | ((4 + 4 <8)? (((((8 + 8 <8) ? ((sa_rgb <<((8 -(8 +8)) &0x1F)) &(0x100 -(1U <<(8 -8)))): ((sa_rgb >>(((8 + 8) -8) & 0x1F)) &(0x100 -(1U <<(8 -8)))))) &(0x100 -(1U << (8 - 4)))) >>((8 -(4 +4)) & 0x1F)) : (((((8+8<8)?((sa_rgb << ((8 - (8 + 8)) & 0x1F)) & (0x100 - (1U << (8 - 8)))) : ((sa_rgb >> (((8 + 8) - 8) & 0x1F)) & (0x100 - (1U << (8 - 8)))))) & (0x100 - (1U << (8 - 4)))) << (((4 + 4) - 8) & 0x1F))) | ((0 + 4 < 8) ? (((((0 + 8 < 8) ? ((sa_rgb << ((8 - (0 + 8)) & 0x1F)) & (0x100 - (1U << (8 - 8)))) : ((sa_rgb >> (((0 + 8) - 8) & 0x1F)) & (0x100 - (1U << (8 - 8)))))) & (0x100 - (1U << (8 - 4)))) >> ((8 - (0 + 4)) & 0x1F)) : (((((0 + 8 < 8) ? ((sa_rgb << ((8 - (0 + 8)) & 0x1F)) & (0x100 - (1U << (8 - 8)))) : ((sa_rgb >> (((0 + 8) - 8) & 0x1F)) & (0x100 - (1U << (8 - 8)))))) & (0x100 - (1U << (8 - 4)))) << (((0 + 4) - 8) & 0x1F)));
  508.             da_rgb =(((da_rgb ^ db_rgb) >> 1) &(((1U << (8 + 4 - 1)) - (1U << 8)) | ((1U << (4 + 4 - 1)) -(1U << 4)) | ((1U <<(0 + 4 -1)) -(1U << 0))))+ (da_rgb & db_rgb);
  509.             *(unsigned short *) (d2) = da_rgb;
  510.             *(unsigned short *) (d2 + 2) = db_rgb;
  511.             *(unsigned short *) (d2 + 2 * 2) = db_rgb;
  512.             register unsigned int sb_rgb;
  513.             sb_rgb = *(unsigned short *) (d1);
  514.             dd_rgb =(((db_rgb ^ sb_rgb) >> 1) &(((1U << (8 + 4 - 1)) - (1U << 8)) | ((1U << (4 + 4 - 1)) -(1U << 4)) | ((1U <<(0 + 4 -1)) -(1U <<0)))) +(db_rgb & sb_rgb);
  515.             dc_rgb =(((dc_rgb ^ dd_rgb) >> 1) &(((1U << (8 + 4 - 1)) - (1U << 8)) | ((1U << (4 + 4 - 1)) -(1U << 4)) | ((1U <<(0 + 4 -1)) -(1U << 0))))+ (dc_rgb & dd_rgb);
  516.             *(unsigned short *) (d12) = dc_rgb;
  517.             *(unsigned short *) (d12 + 2) = dd_rgb;
  518.             *(unsigned short *) (d12 + 2 * 2) = dd_rgb;
  519.         }
  520.         else
  521.         {
  522.             *(unsigned short *) (d2) = da_rgb;
  523.             *(unsigned short *) (d12) = dc_rgb;
  524.         }
  525.     }
  526. }
  527. void
  528. RGB32toRGB444_ROW2X_STRETCH2XPLUS (unsigned char *dest_ptr_1,
  529.                                    unsigned char *dest_ptr_12,
  530.                                    unsigned char *dest_ptr_2,
  531.                                    int dest_dx,
  532.                                    unsigned char *src_ptr, int src_dx)
  533. {
  534.     register unsigned char *d1 = dest_ptr_1;
  535.     register unsigned char *d12 = dest_ptr_12;
  536.     register unsigned char *d2 = dest_ptr_2;
  537.     register unsigned char *s = src_ptr;
  538.     register int count = dest_dx;
  539.     register int limit = dest_dx >> 1;
  540.     register int step = src_dx << 1;
  541.     register int remainder = (2 * dest_dx - limit) / step;
  542.     if (count)
  543.     {
  544.         register unsigned int da_rgb;
  545.         register unsigned int db_rgb;
  546.         register unsigned int dc_rgb;
  547.         register unsigned int dd_rgb;
  548.         register unsigned int sa_rgb;
  549.         sa_rgb = *(unsigned int *) (s);
  550.         da_rgb =((8 + 4 <8)? (((((16 + 8 <8) ? ((sa_rgb << ((8 - (16 + 8)) & 0x1F)) & (0x100 -(1U << (8 - 8)))): ((sa_rgb >> (((16 + 8) - 8) & 0x1F)) &(0x100 - (1U << (8 - 8)))))) & (0x100 - (1U << (8 -4)))) >> ((8-(8+4))&0x1F)): (((((16 + 8 <8) ? ((sa_rgb << ((8 - (16 + 8)) & 0x1F)) & (0x100 -(1U << (8 - 8)))): ((sa_rgb >> (((16 + 8) - 8) & 0x1F)) &(0x100 - (1U << (8 - 8)))))) & (0x100 - (1U << (8 -4)))) <<(((8 + 4) - 8) & 0x1F))) | ((4 + 4 <8)? (((((8 + 8 <8) ? ((sa_rgb <<((8 -(8 +8)) & 0x1F)) & (0x100-(1U<<(8 -8)))): ((sa_rgb >>(((8 + 8) -8) & 0x1F)) & (0x100 -(1U <<(8 -8)))))) &(0x100 -(1U << (8 - 4)))) >> ((8 - (4 +4)) &0x1F)): (((((8 + 8 <8) ? ((sa_rgb <<((8 -(8 +8)) & 0x1F)) & (0x100-(1U<<(8 -8)))): ((sa_rgb >>(((8 + 8) -8) & 0x1F)) & (0x100 -(1U <<(8 -8)))))) &(0x100 -(1U << (8 - 4)))) << (((4 + 4) -8) &0x1F))) |((0 + 4 <8)? (((((0 + 8 <8) ? ((sa_rgb << ((8 - (0 + 8)) & 0x1F)) & (0x100 -(1U << (8 - 8)))): ((sa_rgb >> (((0 + 8) - 8) & 0x1F)) &(0x100 - (1U << (8 - 8)))))) & (0x100 - (1U << (8 -4)))) >> ((8-(0+4))&0x1F)): (((((0 + 8 <8) ? ((sa_rgb << ((8 - (0 + 8)) & 0x1F)) & (0x100 -(1U << (8 - 8)))): ((sa_rgb >> (((0 + 8) - 8) & 0x1F)) &(0x100 - (1U << (8 - 8)))))) & (0x100 - (1U << (8 -4)))) <<(((0 + 4) - 8) & 0x1F)));
  551.         s += 4;
  552.         if (!(count -= remainder))
  553.             goto end_of_row;
  554.         while (1)
  555.         {
  556.             register unsigned int sb_rgb;
  557.             sb_rgb = *(unsigned short *) (d1);
  558.             dc_rgb =(((da_rgb ^ sb_rgb) >> 1) &(((1U << (8 + 4 - 1)) - (1U << 8)) | ((1U << (4 + 4 - 1)) -(1U << 4)) | ((1U <<(0 + 4 -1)) -(1U << 0))))+ (da_rgb & sb_rgb);
  559.             do
  560.             {
  561.                 d1 += 2;
  562.                 *(unsigned short *) (d2) = da_rgb;
  563.                 d2 += 2;
  564.                 *(unsigned short *) (d12) = dc_rgb;
  565.                 d12 += 2;
  566.                 if (!(--count))
  567.                     goto end_of_row;
  568.             }
  569.             while ((limit -= step) >= 0);
  570.             limit += dest_dx;
  571.             register unsigned int sa_rgb;
  572.             sa_rgb = *(unsigned int *) (s);
  573.             db_rgb =((8 + 4 <8)? (((((16 + 8 <8) ? ((sa_rgb << ((8 - (16 + 8)) & 0x1F)) & (0x100 -(1U <<(8 -8)))): ((sa_rgb >> (((16 + 8) - 8) & 0x1F)) &(0x100 - (1U << (8 - 8)))))) & (0x100 - (1U << (8 -4)))) >>((8 -(8 +4)) & 0x1F)) : (((((16 + 8 <8) ? ((sa_rgb <<((8 -(16 + 8)) & 0x1F)) & (0x100 -(1U <<(8 -8)))): ((sa_rgb >> (((16 + 8) - 8) & 0x1F)) &(0x100 -(1U << (8 - 8)))))) & (0x100 -(1U <<(8 -4)))) <<(((8 + 4) - 8) & 0x1F))) | ((4 + 4 <8)? (((((8 + 8 <8)? ((sa_rgb << ((8 - (8 + 8)) & 0x1F)) & (0x100 - (1U << (8 - 8)))) : ((sa_rgb >> (((8 + 8) - 8) & 0x1F)) & (0x100 - (1U << (8 - 8)))))) & (0x100 - (1U << (8 - 4)))) >> ((8 - (4 + 4)) & 0x1F)) : (((((8 + 8 < 8) ? ((sa_rgb << ((8 - (8 + 8)) & 0x1F)) & (0x100 - (1U << (8 - 8)))) : ((sa_rgb >> (((8 + 8) - 8) & 0x1F)) & (0x100 - (1U << (8 - 8)))))) & (0x100 - (1U << (8 - 4)))) << (((4 + 4) - 8) & 0x1F))) | ((0 + 4 < 8) ? (((((0 + 8 < 8) ? ((sa_rgb << ((8 - (0 + 8)) & 0x1F)) & (0x100 - (1U << (8 - 8)))) : ((sa_rgb >> (((0 + 8) - 8) & 0x1F)) & (0x100 - (1U << (8 - 8)))))) & (0x100 - (1U << (8 - 4)))) >> ((8 - (0 + 4)) & 0x1F)) : (((((0 + 8 < 8) ? ((sa_rgb << ((8 - (0 + 8)) & 0x1F)) & (0x100 - (1U << (8 - 8)))) : ((sa_rgb >> (((0 + 8) - 8) & 0x1F)) & (0x100 - (1U << (8 - 8)))))) & (0x100 - (1U << (8 - 4)))) << (((0 + 4) - 8) & 0x1F)));
  574.             da_rgb =(((da_rgb ^ db_rgb) >> 1) &(((1U << (8 + 4 - 1)) - (1U << 8)) | ((1U << (4 + 4 - 1)) -(1U << 4)) | ((1U <<(0 + 4 -1)) -(1U << 0))))+ (da_rgb & db_rgb);
  575.             sb_rgb = *(unsigned short *) (d1);
  576.             dc_rgb =(((da_rgb ^ sb_rgb) >> 1) &(((1U << (8 + 4 - 1)) - (1U << 8)) | ((1U << (4 + 4 - 1)) -(1U << 4)) | ((1U <<(0 + 4 -1)) -(1U << 0))))+ (da_rgb & sb_rgb);
  577.             do
  578.             {
  579.                 d1 += 2;
  580.                 *(unsigned short *) (d2) = da_rgb;
  581.                 d2 += 2;
  582.                 *(unsigned short *) (d12) = dc_rgb;
  583.                 d12 += 2;
  584.                 if (!(--count))
  585.                     goto end_of_row;
  586.             }
  587.             while ((limit -= step) >= 0);
  588.             limit += dest_dx;
  589.             sb_rgb = *(unsigned short *) (d1);
  590.             dd_rgb =(((db_rgb ^ sb_rgb) >> 1) &(((1U << (8 + 4 - 1)) - (1U << 8)) | ((1U << (4 + 4 - 1)) -(1U << 4)) | ((1U <<(0 + 4 -1)) -(1U << 0))))+ (db_rgb & sb_rgb);
  591.             do
  592.             {
  593.                 d1 += 2;
  594.                 *(unsigned short *) (d2) = db_rgb;
  595.                 d2 += 2;
  596.                 *(unsigned short *) (d12) = dd_rgb;
  597.                 d12 += 2;
  598.                 if (!(--count))
  599.                     goto end_of_row_2;
  600.             }
  601.             while ((limit -= step) >= 0);
  602.             limit += dest_dx;
  603.             sa_rgb = *(unsigned int *) (s + 4);
  604.             da_rgb =((8 + 4 <8)? (((((16 + 8 <8) ? ((sa_rgb << ((8 - (16 + 8)) & 0x1F)) & (0x100 -(1U <<(8 -8)))): ((sa_rgb >> (((16 + 8) - 8) & 0x1F)) &(0x100 - (1U << (8 - 8)))))) & (0x100 - (1U << (8 -4)))) >>((8 -(8 +4)) & 0x1F)) : (((((16 + 8 <8) ? ((sa_rgb <<((8 -(16 + 8)) & 0x1F)) & (0x100 -(1U <<(8 -8)))): ((sa_rgb >> (((16 + 8) - 8) & 0x1F)) &(0x100 -(1U << (8 - 8)))))) & (0x100 -(1U <<(8 -4)))) <<(((8 + 4) - 8) & 0x1F))) | ((4 + 4 <8)? (((((8 + 8 <8)? ((sa_rgb << ((8 - (8 + 8)) & 0x1F)) & (0x100 - (1U << (8 - 8)))) : ((sa_rgb >> (((8 + 8) - 8) & 0x1F)) & (0x100 - (1U << (8 - 8)))))) & (0x100 - (1U << (8 - 4)))) >> ((8 - (4 + 4)) & 0x1F)) : (((((8 + 8 < 8) ? ((sa_rgb << ((8 - (8 + 8)) & 0x1F)) & (0x100 - (1U << (8 - 8)))) : ((sa_rgb >> (((8 + 8) - 8) & 0x1F)) & (0x100 - (1U << (8 - 8)))))) & (0x100 - (1U << (8 - 4)))) << (((4 + 4) - 8) & 0x1F))) | ((0 + 4 < 8) ? (((((0 + 8 < 8) ? ((sa_rgb << ((8 - (0 + 8)) & 0x1F)) & (0x100 - (1U << (8 - 8)))) : ((sa_rgb >> (((0 + 8) - 8) & 0x1F)) & (0x100 - (1U << (8 - 8)))))) & (0x100 - (1U << (8 - 4)))) >> ((8 - (0 + 4)) & 0x1F)) : (((((0 + 8 < 8) ? ((sa_rgb << ((8 - (0 + 8)) & 0x1F)) & (0x100 - (1U << (8 - 8)))) : ((sa_rgb >> (((0 + 8) - 8) & 0x1F)) & (0x100 - (1U << (8 - 8)))))) & (0x100 - (1U << (8 - 4)))) << (((0 + 4) - 8) & 0x1F)));
  605.             s += 2 * 4;
  606.             db_rgb =(((db_rgb ^ da_rgb) >> 1) &(((1U << (8 + 4 - 1)) - (1U << 8)) | ((1U << (4 + 4 - 1)) -(1U << 4)) | ((1U <<(0 + 4 -1)) -(1U << 0))))+ (db_rgb & da_rgb);
  607.             sb_rgb = *(unsigned short *) (d1);
  608.             dd_rgb =(((db_rgb ^ sb_rgb) >> 1) &(((1U << (8 + 4 - 1)) - (1U << 8)) | ((1U << (4 + 4 - 1)) -(1U << 4)) | ((1U <<(0 + 4 -1)) -(1U << 0))))+ (db_rgb & sb_rgb);
  609.             do
  610.             {
  611.                 d1 += 2;
  612.                 *(unsigned short *) (d2) = db_rgb;
  613.                 d2 += 2;
  614.                 *(unsigned short *) (d12) = dd_rgb;
  615.                 d12 += 2;
  616.                 if (!(--count))
  617.                     goto end_of_row_2;
  618.             }
  619.             while ((limit -= step) >= 0);
  620.             limit += dest_dx;
  621.         }
  622.       end_of_row_2:
  623.         da_rgb = db_rgb;
  624.         dc_rgb = dd_rgb;
  625.       end_of_row:
  626.         while (remainder--)
  627.         {
  628.             *(unsigned short *) (d2) = da_rgb;
  629.             d2 += 2;
  630.             *(unsigned short *) (d12) = dc_rgb;
  631.             d12 += 2;
  632.         }
  633.     }
  634. }
  635. int
  636. RGBtoRGB (int dest_format, unsigned char *dest_ptr, int dest_width,
  637.           int dest_height, int dest_pitch, int dest_x, int dest_y,
  638.           int dest_dx, int dest_dy, int src_format, unsigned char *src_ptr,
  639.           int src_width, int src_height, int src_pitch, int src_x, int src_y,
  640.           int src_dx, int src_dy)
  641. {
  642.     
  643.     void (*ImageFuncs[5]) (unsigned char *dest_ptr, int dest_dx, int dest_dy,
  644.                            int dest_pitch, int dest_bpp, unsigned char *src_ptr,
  645.                            int src_dx, int src_dy, int src_pitch, int src_bpp,
  646.                            void (*row_func) (unsigned char *, int,
  647.                                              unsigned char *, int),
  648.                            void (*row2x_func) (unsigned char *, unsigned char *,
  649.                                                unsigned char *, int,
  650.                                                unsigned char *, int)) =
  651.         {
  652.             IMAGE_SHRINK,
  653.             IMAGE_COPY,
  654.             IMAGE_STRETCH,
  655.             IMAGE_STRETCH2X,
  656.             IMAGE_STRETCH2XPLUS
  657.         };
  658.     
  659.     void (*RowFuncs[5]) (unsigned char *dest_ptr, int dest_dx,
  660.                          unsigned char *src_ptr, int src_dx) =
  661.         {
  662.             RGB32toRGB444_ROW_SHRINK,
  663.             RGB32toRGB444_ROW_COPY,
  664.             RGB32toRGB444_ROW_STRETCH,
  665.             RGB32toRGB444_ROW_STRETCH2X,
  666.             RGB32toRGB444_ROW_STRETCH2XPLUS
  667.         };
  668.     void (*Row2xFuncs[5]) (unsigned char *dest_ptr_1, unsigned char *dest_ptr_12,
  669.                            unsigned char *dest_ptr_2, int dest_dx,
  670.                            unsigned char *src_ptr, int src_dx) =
  671.         {
  672.             RGB32toRGB444_ROW2X_SHRINK,
  673.             RGB32toRGB444_ROW2X_COPY,
  674.             RGB32toRGB444_ROW2X_STRETCH,
  675.             RGB32toRGB444_ROW2X_STRETCH2X,
  676.             RGB32toRGB444_ROW2X_STRETCH2XPLUS
  677.         };
  678.     void (*row_proc) (unsigned char *, int, unsigned char *, int);
  679.     void (*row2x_proc) (unsigned char *, unsigned char *, unsigned char *, int,
  680.                         unsigned char *, int);
  681.     void (*image_proc) (unsigned char *, int, int, int, int,
  682.                         unsigned char *, int, int, int, int,
  683.                         void (*)(unsigned char *, int, unsigned char *, int),
  684.                         void (*)(unsigned char *, unsigned char *,
  685.                                  unsigned char *, int, unsigned char *, int));
  686.     register int scale_x, scale_y;
  687.     register int dest_bpp, src_bpp;
  688.     register unsigned char *d, *s;
  689.     if (((unsigned) dest_ptr & 3) || (dest_pitch & 1) ||
  690.         ((unsigned) src_ptr & 3) || (src_pitch & 3) ||
  691.         dest_width <= 0 || dest_height <= 0 ||
  692.         src_width <= 0 || src_height <= 0 ||
  693.         dest_x < 0 || dest_y < 0 || dest_dx <= 0 || dest_dy <= 0 ||
  694.         src_x < 0 || src_y < 0 || src_dx <= 0 || src_dy <= 0 ||
  695.         dest_width < dest_x + dest_dx || dest_height < dest_y + dest_dy ||
  696.         src_width < src_x + src_dx || src_height < src_y + src_dy)
  697.     {
  698.         return -1;
  699.     }
  700.     scale_x = 1;
  701.     if (dest_dx != src_dx)
  702.     {
  703.         if (dest_dx < src_dx)
  704.             scale_x--;
  705.         else
  706.         {
  707.             scale_x++;
  708.             if (dest_dx >= 2 * src_dx)
  709.             {
  710.                 scale_x++;
  711.                 if (dest_dx > 2 * src_dx)
  712.                     scale_x++;
  713.             }
  714.         }
  715.     }
  716.     scale_y = 1;
  717.     if (dest_dy != src_dy)
  718.     {
  719.         if (dest_dy < src_dy)
  720.             scale_y--;
  721.         else
  722.         {
  723.             scale_y++;
  724.             if (dest_dy >= 2 * src_dy)
  725.             {
  726.                 scale_y++;
  727.                 if (dest_dy > 2 * src_dy)
  728.                     scale_y++;
  729.             }
  730.         }
  731.     }
  732.     row_proc   = RowFuncs[scale_x];
  733.     row2x_proc = Row2xFuncs[scale_x];
  734.     image_proc = ImageFuncs[scale_y];
  735.     if (!row_proc || !row2x_proc || !image_proc)
  736.     {
  737.         return -1;
  738.     }
  739.     dest_bpp = 2;
  740.     src_bpp = 4;
  741.     if (dest_pitch < 0)
  742.         dest_ptr -= (dest_height - 1) * dest_pitch;
  743.     if (src_pitch < 0)
  744.         src_ptr -= (src_height - 1) * src_pitch;
  745.     d = dest_ptr + dest_x * dest_bpp + dest_y * dest_pitch;
  746.     s = src_ptr + src_x * src_bpp + src_y * src_pitch;
  747.     (*image_proc) (d, dest_dx, dest_dy, dest_pitch, dest_bpp,
  748.                    s, src_dx, src_dy, src_pitch, src_bpp, row_proc, row2x_proc);
  749.     return 0;
  750. }
  751. int
  752. RGB32toRGB444 (unsigned char *dest_ptr,
  753.                int dest_width, int dest_height, int dest_pitch,
  754.                int dest_x, int dest_y, int dest_dx, int dest_dy,
  755.                unsigned char *src_ptr,
  756.                int src_width, int src_height, int src_pitch,
  757.                int src_x, int src_y, int src_dx, int src_dy,
  758.                color_data_t * not_used)
  759. {
  760.     const int dest_format = 18; /* RGB444 */
  761.     const int src_format = 5; /* RGB32 */
  762.     return RGBtoRGB (dest_format, dest_ptr, dest_width, dest_height, dest_pitch,
  763.                      dest_x, dest_y, dest_dx, dest_dy, src_format,
  764.                      src_ptr, src_width, src_height, src_pitch,
  765.                      src_x, src_y, src_dx, src_dy);
  766. }