Lines Matching refs:dst
45 * store the result in another array (dst). For in-place byte-swapping this
46 * function can be called with the same array for src and dst.
48 * \param dst the array where byte-swapped data will be stored.
53 swap2_copy( GLushort *dst, GLushort *src, GLuint n )
57 dst[i] = (src[i] >> 8) | ((src[i] << 8) & 0xff00);
69 * store the result in another array (dst). For in-place byte-swapping this
70 * function can be called with the same array for src and dst.
72 * \param dst the array where byte-swapped data will be stored.
77 swap4_copy( GLuint *dst, GLuint *src, GLuint n )
86 dst[i] = a;
678 * Clip dst coords against Xmax (or Ymax).
711 * Clip dst coords against Xmin (or Ymin).
775 printf("PreClipX: src: %d .. %d dst: %d .. %d\n",
777 printf("PreClipY: src: %d .. %d dst: %d .. %d\n",
819 * src clip (just swap src/dst values from above)
827 printf("PostClipX: src: %d .. %d dst: %d .. %d\n",
829 printf("PostClipY: src: %d .. %d dst: %d .. %d\n",
868 GLvoid *dst, const GLvoid *src)
882 dstrow = dst;