Lines Matching defs:dst
2602 static void bitcpy(unsigned long *dst, int dst_idx, const unsigned long *src,
2624 *dst = comp(*src, *dst, first);
2629 *dst = comp(*src, *dst, first);
2630 dst++;
2638 *dst++ = *src++;
2639 *dst++ = *src++;
2640 *dst++ = *src++;
2641 *dst++ = *src++;
2642 *dst++ = *src++;
2643 *dst++ = *src++;
2644 *dst++ = *src++;
2645 *dst++ = *src++;
2649 *dst++ = *src++;
2653 *dst = comp(*src, *dst, last);
2667 *dst = comp(*src >> right, *dst, first);
2670 *dst = comp(*src << left, *dst, first);
2675 *dst = comp(d0 << left | d1 >> right, *dst,
2684 *dst = comp(d0 >> right, *dst, first);
2685 dst++;
2690 *dst = comp(d0 << left | d1 >> right, *dst,
2693 dst++;
2702 *dst++ = d0 << left | d1 >> right;
2705 *dst++ = d0 << left | d1 >> right;
2708 *dst++ = d0 << left | d1 >> right;
2711 *dst++ = d0 << left | d1 >> right;
2717 *dst++ = d0 << left | d1 >> right;
2725 *dst = comp(d0 << left, *dst, last);
2729 *dst = comp(d0 << left | d1 >> right,
2730 *dst, last);
2742 static void bitcpy_rev(unsigned long *dst, int dst_idx,
2753 dst += (n - 1) / BITS_PER_LONG;
2757 dst += dst_idx >> SHIFT_PER_LONG;
2775 *dst = comp(*src, *dst, first);
2780 *dst = comp(*src, *dst, first);
2781 dst--;
2789 *dst-- = *src--;
2790 *dst-- = *src--;
2791 *dst-- = *src--;
2792 *dst-- = *src--;
2793 *dst-- = *src--;
2794 *dst-- = *src--;
2795 *dst-- = *src--;
2796 *dst-- = *src--;
2800 *dst-- = *src--;
2804 *dst = comp(*src, *dst, last);
2818 *dst = comp(*src << left, *dst, first);
2821 *dst = comp(*src >> right, *dst, first);
2826 *dst = comp(d0 >> right | d1 << left, *dst,
2835 *dst = comp(d0 << left, *dst, first);
2836 dst--;
2841 *dst = comp(d0 >> right | d1 << left, *dst,
2844 dst--;
2853 *dst-- = d0 >> right | d1 << left;
2856 *dst-- = d0 >> right | d1 << left;
2859 *dst-- = d0 >> right | d1 << left;
2862 *dst-- = d0 >> right | d1 << left;
2868 *dst-- = d0 >> right | d1 << left;
2876 *dst = comp(d0 >> right, *dst, last);
2880 *dst = comp(d0 >> right | d1 << left,
2881 *dst, last);
2894 static void bitcpy_not(unsigned long *dst, int dst_idx,
2916 *dst = comp(~*src, *dst, first);
2921 *dst = comp(~*src, *dst, first);
2922 dst++;
2930 *dst++ = ~*src++;
2931 *dst++ = ~*src++;
2932 *dst++ = ~*src++;
2933 *dst++ = ~*src++;
2934 *dst++ = ~*src++;
2935 *dst++ = ~*src++;
2936 *dst++ = ~*src++;
2937 *dst++ = ~*src++;
2941 *dst++ = ~*src++;
2945 *dst = comp(~*src, *dst, last);
2959 *dst = comp(~*src >> right, *dst, first);
2962 *dst = comp(~*src << left, *dst, first);
2967 *dst = comp(d0 << left | d1 >> right, *dst,
2976 *dst = comp(d0 >> right, *dst, first);
2977 dst++;
2982 *dst = comp(d0 << left | d1 >> right, *dst,
2985 dst++;
2994 *dst++ = d0 << left | d1 >> right;
2997 *dst++ = d0 << left | d1 >> right;
3000 *dst++ = d0 << left | d1 >> right;
3003 *dst++ = d0 << left | d1 >> right;
3009 *dst++ = d0 << left | d1 >> right;
3017 *dst = comp(d0 << left, *dst, last);
3021 *dst = comp(d0 << left | d1 >> right,
3022 *dst, last);
3034 static void bitfill32(unsigned long *dst, int dst_idx, u32 pat, u32 n)
3053 *dst = comp(val, *dst, first);
3058 *dst = comp(val, *dst, first);
3059 dst++;
3066 *dst++ = val;
3067 *dst++ = val;
3068 *dst++ = val;
3069 *dst++ = val;
3070 *dst++ = val;
3071 *dst++ = val;
3072 *dst++ = val;
3073 *dst++ = val;
3077 *dst++ = val;
3081 *dst = comp(val, *dst, last);
3090 static void bitxor32(unsigned long *dst, int dst_idx, u32 pat, u32 n)
3109 *dst = xor(val, *dst, first);
3114 *dst = xor(val, *dst, first);
3115 dst++;
3122 *dst++ ^= val;
3123 *dst++ ^= val;
3124 *dst++ ^= val;
3125 *dst++ ^= val;
3129 *dst++ ^= val;
3133 *dst = xor(val, *dst, last);
3138 unsigned long *dst, int dst_idx, u32 n,
3142 dst += dst_idx >> SHIFT_PER_LONG;
3144 bitfill32(dst, dst_idx, color & 1 ? ~0 : 0, n);
3153 unsigned long *dst, int dst_idx, u32 n,
3157 dst += dst_idx >> SHIFT_PER_LONG;
3159 bitxor32(dst, dst_idx, color & 1 ? ~0 : 0, n);
3173 unsigned long *dst;
3190 dst = (unsigned long *)
3198 par->next_plane, dst, dst_idx, width,
3204 dst, dst_idx, width, rect->color);
3212 unsigned long *dst, int dst_idx,
3216 dst += dst_idx >> SHIFT_PER_LONG;
3220 bitcpy(dst, dst_idx, src, src_idx, n);
3229 unsigned long *dst, int dst_idx,
3233 dst += dst_idx >> SHIFT_PER_LONG;
3237 bitcpy_rev(dst, dst_idx, src, src_idx, n);
3252 unsigned long *dst, *src;
3283 dst = (unsigned long *)
3285 src = dst;
3295 par->next_plane, dst, dst_idx, src,
3301 par->next_plane, dst, dst_idx, src,
3311 unsigned long *dst, int dst_idx, u32 n,
3318 dst += dst_idx >> SHIFT_PER_LONG;
3325 bitcpy(dst, dst_idx, src, src_idx, n);
3327 bitcpy_not(dst, dst_idx, src, src_idx, n);
3330 bitfill32(dst, dst_idx, fgcolor & 1 ? ~0 : 0, n);
3344 unsigned long *dst;
3364 dst = (unsigned long *)
3372 par->next_plane, dst, dst_idx, width,