• Home
  • Raw
  • Download

Lines Matching refs:dst

41 			Uint8 *src, *dst;  in SDL_ConvertMono()  local
44 dst = cvt->buf; in SDL_ConvertMono()
47 *dst = (Uint8)(sample / 2); in SDL_ConvertMono()
49 dst += 1; in SDL_ConvertMono()
55 Sint8 *src, *dst; in SDL_ConvertMono() local
58 dst = (Sint8 *)cvt->buf; in SDL_ConvertMono()
61 *dst = (Sint8)(sample / 2); in SDL_ConvertMono()
63 dst += 1; in SDL_ConvertMono()
69 Uint8 *src, *dst; in SDL_ConvertMono() local
72 dst = cvt->buf; in SDL_ConvertMono()
78 dst[1] = (sample&0xFF); in SDL_ConvertMono()
80 dst[0] = (sample&0xFF); in SDL_ConvertMono()
82 dst += 2; in SDL_ConvertMono()
89 dst[0] = (sample&0xFF); in SDL_ConvertMono()
91 dst[1] = (sample&0xFF); in SDL_ConvertMono()
93 dst += 2; in SDL_ConvertMono()
100 Uint8 *src, *dst; in SDL_ConvertMono() local
103 dst = cvt->buf; in SDL_ConvertMono()
109 dst[1] = (sample&0xFF); in SDL_ConvertMono()
111 dst[0] = (sample&0xFF); in SDL_ConvertMono()
113 dst += 2; in SDL_ConvertMono()
120 dst[0] = (sample&0xFF); in SDL_ConvertMono()
122 dst[1] = (sample&0xFF); in SDL_ConvertMono()
124 dst += 2; in SDL_ConvertMono()
148 Uint8 *src, *dst; in SDL_ConvertStrip() local
151 dst = cvt->buf; in SDL_ConvertStrip()
153 dst[0] = src[0]; in SDL_ConvertStrip()
154 dst[1] = src[1]; in SDL_ConvertStrip()
156 dst += 2; in SDL_ConvertStrip()
162 Sint8 *src, *dst; in SDL_ConvertStrip() local
165 dst = (Sint8 *)cvt->buf; in SDL_ConvertStrip()
167 dst[0] = src[0]; in SDL_ConvertStrip()
168 dst[1] = src[1]; in SDL_ConvertStrip()
170 dst += 2; in SDL_ConvertStrip()
176 Uint8 *src, *dst; in SDL_ConvertStrip() local
179 dst = cvt->buf; in SDL_ConvertStrip()
184 dst[1] = (lsample&0xFF); in SDL_ConvertStrip()
186 dst[0] = (lsample&0xFF); in SDL_ConvertStrip()
187 dst[3] = (rsample&0xFF); in SDL_ConvertStrip()
189 dst[2] = (rsample&0xFF); in SDL_ConvertStrip()
191 dst += 4; in SDL_ConvertStrip()
197 dst[0] = (lsample&0xFF); in SDL_ConvertStrip()
199 dst[1] = (lsample&0xFF); in SDL_ConvertStrip()
200 dst[2] = (rsample&0xFF); in SDL_ConvertStrip()
202 dst[3] = (rsample&0xFF); in SDL_ConvertStrip()
204 dst += 4; in SDL_ConvertStrip()
211 Uint8 *src, *dst; in SDL_ConvertStrip() local
214 dst = cvt->buf; in SDL_ConvertStrip()
219 dst[1] = (lsample&0xFF); in SDL_ConvertStrip()
221 dst[0] = (lsample&0xFF); in SDL_ConvertStrip()
222 dst[3] = (rsample&0xFF); in SDL_ConvertStrip()
224 dst[2] = (rsample&0xFF); in SDL_ConvertStrip()
226 dst += 4; in SDL_ConvertStrip()
232 dst[0] = (lsample&0xFF); in SDL_ConvertStrip()
234 dst[1] = (lsample&0xFF); in SDL_ConvertStrip()
235 dst[2] = (rsample&0xFF); in SDL_ConvertStrip()
237 dst[3] = (rsample&0xFF); in SDL_ConvertStrip()
239 dst += 4; in SDL_ConvertStrip()
264 Uint8 *src, *dst; in SDL_ConvertStrip_2() local
267 dst = cvt->buf; in SDL_ConvertStrip_2()
269 dst[0] = src[0]; in SDL_ConvertStrip_2()
270 dst[1] = src[1]; in SDL_ConvertStrip_2()
272 dst += 2; in SDL_ConvertStrip_2()
278 Sint8 *src, *dst; in SDL_ConvertStrip_2() local
281 dst = (Sint8 *)cvt->buf; in SDL_ConvertStrip_2()
283 dst[0] = src[0]; in SDL_ConvertStrip_2()
284 dst[1] = src[1]; in SDL_ConvertStrip_2()
286 dst += 2; in SDL_ConvertStrip_2()
292 Uint8 *src, *dst; in SDL_ConvertStrip_2() local
295 dst = cvt->buf; in SDL_ConvertStrip_2()
300 dst[1] = (lsample&0xFF); in SDL_ConvertStrip_2()
302 dst[0] = (lsample&0xFF); in SDL_ConvertStrip_2()
303 dst[3] = (rsample&0xFF); in SDL_ConvertStrip_2()
305 dst[2] = (rsample&0xFF); in SDL_ConvertStrip_2()
307 dst += 4; in SDL_ConvertStrip_2()
313 dst[0] = (lsample&0xFF); in SDL_ConvertStrip_2()
315 dst[1] = (lsample&0xFF); in SDL_ConvertStrip_2()
316 dst[2] = (rsample&0xFF); in SDL_ConvertStrip_2()
318 dst[3] = (rsample&0xFF); in SDL_ConvertStrip_2()
320 dst += 4; in SDL_ConvertStrip_2()
327 Uint8 *src, *dst; in SDL_ConvertStrip_2() local
330 dst = cvt->buf; in SDL_ConvertStrip_2()
335 dst[1] = (lsample&0xFF); in SDL_ConvertStrip_2()
337 dst[0] = (lsample&0xFF); in SDL_ConvertStrip_2()
338 dst[3] = (rsample&0xFF); in SDL_ConvertStrip_2()
340 dst[2] = (rsample&0xFF); in SDL_ConvertStrip_2()
342 dst += 4; in SDL_ConvertStrip_2()
348 dst[0] = (lsample&0xFF); in SDL_ConvertStrip_2()
350 dst[1] = (lsample&0xFF); in SDL_ConvertStrip_2()
351 dst[2] = (rsample&0xFF); in SDL_ConvertStrip_2()
353 dst[3] = (rsample&0xFF); in SDL_ConvertStrip_2()
355 dst += 4; in SDL_ConvertStrip_2()
376 Uint16 *src, *dst; in SDL_ConvertStereo() local
379 dst = (Uint16 *)(cvt->buf+cvt->len_cvt*2); in SDL_ConvertStereo()
381 dst -= 2; in SDL_ConvertStereo()
383 dst[0] = src[0]; in SDL_ConvertStereo()
384 dst[1] = src[0]; in SDL_ConvertStereo()
387 Uint8 *src, *dst; in SDL_ConvertStereo() local
390 dst = cvt->buf+cvt->len_cvt*2; in SDL_ConvertStereo()
392 dst -= 2; in SDL_ConvertStereo()
394 dst[0] = src[0]; in SDL_ConvertStereo()
395 dst[1] = src[0]; in SDL_ConvertStereo()
416 Uint8 *src, *dst, lf, rf, ce; in SDL_ConvertSurround() local
419 dst = (Uint8 *)(cvt->buf+cvt->len_cvt*3); in SDL_ConvertSurround()
421 dst -= 6; in SDL_ConvertSurround()
426 dst[0] = lf; in SDL_ConvertSurround()
427 dst[1] = rf; in SDL_ConvertSurround()
428 dst[2] = lf - ce; in SDL_ConvertSurround()
429 dst[3] = rf - ce; in SDL_ConvertSurround()
430 dst[4] = ce; in SDL_ConvertSurround()
431 dst[5] = ce; in SDL_ConvertSurround()
437 Sint8 *src, *dst, lf, rf, ce; in SDL_ConvertSurround() local
440 dst = (Sint8 *)cvt->buf+cvt->len_cvt*3; in SDL_ConvertSurround()
442 dst -= 6; in SDL_ConvertSurround()
447 dst[0] = lf; in SDL_ConvertSurround()
448 dst[1] = rf; in SDL_ConvertSurround()
449 dst[2] = lf - ce; in SDL_ConvertSurround()
450 dst[3] = rf - ce; in SDL_ConvertSurround()
451 dst[4] = ce; in SDL_ConvertSurround()
452 dst[5] = ce; in SDL_ConvertSurround()
458 Uint8 *src, *dst; in SDL_ConvertSurround() local
462 dst = cvt->buf+cvt->len_cvt*3; in SDL_ConvertSurround()
466 dst -= 12; in SDL_ConvertSurround()
473 dst[1] = (lf&0xFF); in SDL_ConvertSurround()
474 dst[0] = ((lf>>8)&0xFF); in SDL_ConvertSurround()
475 dst[3] = (rf&0xFF); in SDL_ConvertSurround()
476 dst[2] = ((rf>>8)&0xFF); in SDL_ConvertSurround()
478 dst[1+4] = (lr&0xFF); in SDL_ConvertSurround()
479 dst[0+4] = ((lr>>8)&0xFF); in SDL_ConvertSurround()
480 dst[3+4] = (rr&0xFF); in SDL_ConvertSurround()
481 dst[2+4] = ((rr>>8)&0xFF); in SDL_ConvertSurround()
483 dst[1+8] = (ce&0xFF); in SDL_ConvertSurround()
484 dst[0+8] = ((ce>>8)&0xFF); in SDL_ConvertSurround()
485 dst[3+8] = (ce&0xFF); in SDL_ConvertSurround()
486 dst[2+8] = ((ce>>8)&0xFF); in SDL_ConvertSurround()
490 dst -= 12; in SDL_ConvertSurround()
497 dst[0] = (lf&0xFF); in SDL_ConvertSurround()
498 dst[1] = ((lf>>8)&0xFF); in SDL_ConvertSurround()
499 dst[2] = (rf&0xFF); in SDL_ConvertSurround()
500 dst[3] = ((rf>>8)&0xFF); in SDL_ConvertSurround()
502 dst[0+4] = (lr&0xFF); in SDL_ConvertSurround()
503 dst[1+4] = ((lr>>8)&0xFF); in SDL_ConvertSurround()
504 dst[2+4] = (rr&0xFF); in SDL_ConvertSurround()
505 dst[3+4] = ((rr>>8)&0xFF); in SDL_ConvertSurround()
507 dst[0+8] = (ce&0xFF); in SDL_ConvertSurround()
508 dst[1+8] = ((ce>>8)&0xFF); in SDL_ConvertSurround()
509 dst[2+8] = (ce&0xFF); in SDL_ConvertSurround()
510 dst[3+8] = ((ce>>8)&0xFF); in SDL_ConvertSurround()
517 Uint8 *src, *dst; in SDL_ConvertSurround() local
521 dst = cvt->buf+cvt->len_cvt*3; in SDL_ConvertSurround()
525 dst -= 12; in SDL_ConvertSurround()
532 dst[1] = (lf&0xFF); in SDL_ConvertSurround()
533 dst[0] = ((lf>>8)&0xFF); in SDL_ConvertSurround()
534 dst[3] = (rf&0xFF); in SDL_ConvertSurround()
535 dst[2] = ((rf>>8)&0xFF); in SDL_ConvertSurround()
537 dst[1+4] = (lr&0xFF); in SDL_ConvertSurround()
538 dst[0+4] = ((lr>>8)&0xFF); in SDL_ConvertSurround()
539 dst[3+4] = (rr&0xFF); in SDL_ConvertSurround()
540 dst[2+4] = ((rr>>8)&0xFF); in SDL_ConvertSurround()
542 dst[1+8] = (ce&0xFF); in SDL_ConvertSurround()
543 dst[0+8] = ((ce>>8)&0xFF); in SDL_ConvertSurround()
544 dst[3+8] = (ce&0xFF); in SDL_ConvertSurround()
545 dst[2+8] = ((ce>>8)&0xFF); in SDL_ConvertSurround()
549 dst -= 12; in SDL_ConvertSurround()
556 dst[0] = (lf&0xFF); in SDL_ConvertSurround()
557 dst[1] = ((lf>>8)&0xFF); in SDL_ConvertSurround()
558 dst[2] = (rf&0xFF); in SDL_ConvertSurround()
559 dst[3] = ((rf>>8)&0xFF); in SDL_ConvertSurround()
561 dst[0+4] = (lr&0xFF); in SDL_ConvertSurround()
562 dst[1+4] = ((lr>>8)&0xFF); in SDL_ConvertSurround()
563 dst[2+4] = (rr&0xFF); in SDL_ConvertSurround()
564 dst[3+4] = ((rr>>8)&0xFF); in SDL_ConvertSurround()
566 dst[0+8] = (ce&0xFF); in SDL_ConvertSurround()
567 dst[1+8] = ((ce>>8)&0xFF); in SDL_ConvertSurround()
568 dst[2+8] = (ce&0xFF); in SDL_ConvertSurround()
569 dst[3+8] = ((ce>>8)&0xFF); in SDL_ConvertSurround()
593 Uint8 *src, *dst, lf, rf, ce; in SDL_ConvertSurround_4() local
596 dst = (Uint8 *)(cvt->buf+cvt->len_cvt*2); in SDL_ConvertSurround_4()
598 dst -= 4; in SDL_ConvertSurround_4()
603 dst[0] = lf; in SDL_ConvertSurround_4()
604 dst[1] = rf; in SDL_ConvertSurround_4()
605 dst[2] = lf - ce; in SDL_ConvertSurround_4()
606 dst[3] = rf - ce; in SDL_ConvertSurround_4()
612 Sint8 *src, *dst, lf, rf, ce; in SDL_ConvertSurround_4() local
615 dst = (Sint8 *)cvt->buf+cvt->len_cvt*2; in SDL_ConvertSurround_4()
617 dst -= 4; in SDL_ConvertSurround_4()
622 dst[0] = lf; in SDL_ConvertSurround_4()
623 dst[1] = rf; in SDL_ConvertSurround_4()
624 dst[2] = lf - ce; in SDL_ConvertSurround_4()
625 dst[3] = rf - ce; in SDL_ConvertSurround_4()
631 Uint8 *src, *dst; in SDL_ConvertSurround_4() local
635 dst = cvt->buf+cvt->len_cvt*2; in SDL_ConvertSurround_4()
639 dst -= 8; in SDL_ConvertSurround_4()
646 dst[1] = (lf&0xFF); in SDL_ConvertSurround_4()
647 dst[0] = ((lf>>8)&0xFF); in SDL_ConvertSurround_4()
648 dst[3] = (rf&0xFF); in SDL_ConvertSurround_4()
649 dst[2] = ((rf>>8)&0xFF); in SDL_ConvertSurround_4()
651 dst[1+4] = (lr&0xFF); in SDL_ConvertSurround_4()
652 dst[0+4] = ((lr>>8)&0xFF); in SDL_ConvertSurround_4()
653 dst[3+4] = (rr&0xFF); in SDL_ConvertSurround_4()
654 dst[2+4] = ((rr>>8)&0xFF); in SDL_ConvertSurround_4()
658 dst -= 8; in SDL_ConvertSurround_4()
665 dst[0] = (lf&0xFF); in SDL_ConvertSurround_4()
666 dst[1] = ((lf>>8)&0xFF); in SDL_ConvertSurround_4()
667 dst[2] = (rf&0xFF); in SDL_ConvertSurround_4()
668 dst[3] = ((rf>>8)&0xFF); in SDL_ConvertSurround_4()
670 dst[0+4] = (lr&0xFF); in SDL_ConvertSurround_4()
671 dst[1+4] = ((lr>>8)&0xFF); in SDL_ConvertSurround_4()
672 dst[2+4] = (rr&0xFF); in SDL_ConvertSurround_4()
673 dst[3+4] = ((rr>>8)&0xFF); in SDL_ConvertSurround_4()
680 Uint8 *src, *dst; in SDL_ConvertSurround_4() local
684 dst = cvt->buf+cvt->len_cvt*2; in SDL_ConvertSurround_4()
688 dst -= 8; in SDL_ConvertSurround_4()
695 dst[1] = (lf&0xFF); in SDL_ConvertSurround_4()
696 dst[0] = ((lf>>8)&0xFF); in SDL_ConvertSurround_4()
697 dst[3] = (rf&0xFF); in SDL_ConvertSurround_4()
698 dst[2] = ((rf>>8)&0xFF); in SDL_ConvertSurround_4()
700 dst[1+4] = (lr&0xFF); in SDL_ConvertSurround_4()
701 dst[0+4] = ((lr>>8)&0xFF); in SDL_ConvertSurround_4()
702 dst[3+4] = (rr&0xFF); in SDL_ConvertSurround_4()
703 dst[2+4] = ((rr>>8)&0xFF); in SDL_ConvertSurround_4()
707 dst -= 8; in SDL_ConvertSurround_4()
714 dst[0] = (lf&0xFF); in SDL_ConvertSurround_4()
715 dst[1] = ((lf>>8)&0xFF); in SDL_ConvertSurround_4()
716 dst[2] = (rf&0xFF); in SDL_ConvertSurround_4()
717 dst[3] = ((rf>>8)&0xFF); in SDL_ConvertSurround_4()
719 dst[0+4] = (lr&0xFF); in SDL_ConvertSurround_4()
720 dst[1+4] = ((lr>>8)&0xFF); in SDL_ConvertSurround_4()
721 dst[2+4] = (rr&0xFF); in SDL_ConvertSurround_4()
722 dst[3+4] = ((rr>>8)&0xFF); in SDL_ConvertSurround_4()
739 Uint8 *src, *dst; in SDL_Convert16LSB() local
745 dst = cvt->buf+cvt->len_cvt*2; in SDL_Convert16LSB()
748 dst -= 2; in SDL_Convert16LSB()
749 dst[1] = *src; in SDL_Convert16LSB()
750 dst[0] = 0; in SDL_Convert16LSB()
762 Uint8 *src, *dst; in SDL_Convert16MSB() local
768 dst = cvt->buf+cvt->len_cvt*2; in SDL_Convert16MSB()
771 dst -= 2; in SDL_Convert16MSB()
772 dst[0] = *src; in SDL_Convert16MSB()
773 dst[1] = 0; in SDL_Convert16MSB()
786 Uint8 *src, *dst; in SDL_Convert8() local
792 dst = cvt->buf; in SDL_Convert8()
797 *dst = *src; in SDL_Convert8()
799 dst += 1; in SDL_Convert8()
863 Uint8 *src, *dst; in SDL_RateMUL2() local
869 dst = cvt->buf+cvt->len_cvt*2; in SDL_RateMUL2()
874 dst -= 2; in SDL_RateMUL2()
875 dst[0] = src[0]; in SDL_RateMUL2()
876 dst[1] = src[0]; in SDL_RateMUL2()
882 dst -= 4; in SDL_RateMUL2()
883 dst[0] = src[0]; in SDL_RateMUL2()
884 dst[1] = src[1]; in SDL_RateMUL2()
885 dst[2] = src[0]; in SDL_RateMUL2()
886 dst[3] = src[1]; in SDL_RateMUL2()
901 Uint8 *src, *dst; in SDL_RateMUL2_c2() local
907 dst = cvt->buf+cvt->len_cvt*2; in SDL_RateMUL2_c2()
912 dst -= 4; in SDL_RateMUL2_c2()
913 dst[0] = src[0]; in SDL_RateMUL2_c2()
914 dst[1] = src[1]; in SDL_RateMUL2_c2()
915 dst[2] = src[0]; in SDL_RateMUL2_c2()
916 dst[3] = src[1]; in SDL_RateMUL2_c2()
922 dst -= 8; in SDL_RateMUL2_c2()
923 dst[0] = src[0]; in SDL_RateMUL2_c2()
924 dst[1] = src[1]; in SDL_RateMUL2_c2()
925 dst[2] = src[2]; in SDL_RateMUL2_c2()
926 dst[3] = src[3]; in SDL_RateMUL2_c2()
927 dst[4] = src[0]; in SDL_RateMUL2_c2()
928 dst[5] = src[1]; in SDL_RateMUL2_c2()
929 dst[6] = src[2]; in SDL_RateMUL2_c2()
930 dst[7] = src[3]; in SDL_RateMUL2_c2()
944 Uint8 *src, *dst; in SDL_RateMUL2_c4() local
950 dst = cvt->buf+cvt->len_cvt*2; in SDL_RateMUL2_c4()
955 dst -= 8; in SDL_RateMUL2_c4()
956 dst[0] = src[0]; in SDL_RateMUL2_c4()
957 dst[1] = src[1]; in SDL_RateMUL2_c4()
958 dst[2] = src[2]; in SDL_RateMUL2_c4()
959 dst[3] = src[3]; in SDL_RateMUL2_c4()
960 dst[4] = src[0]; in SDL_RateMUL2_c4()
961 dst[5] = src[1]; in SDL_RateMUL2_c4()
962 dst[6] = src[2]; in SDL_RateMUL2_c4()
963 dst[7] = src[3]; in SDL_RateMUL2_c4()
969 dst -= 16; in SDL_RateMUL2_c4()
970 dst[0] = src[0]; in SDL_RateMUL2_c4()
971 dst[1] = src[1]; in SDL_RateMUL2_c4()
972 dst[2] = src[2]; in SDL_RateMUL2_c4()
973 dst[3] = src[3]; in SDL_RateMUL2_c4()
974 dst[4] = src[4]; in SDL_RateMUL2_c4()
975 dst[5] = src[5]; in SDL_RateMUL2_c4()
976 dst[6] = src[6]; in SDL_RateMUL2_c4()
977 dst[7] = src[7]; in SDL_RateMUL2_c4()
978 dst[8] = src[0]; in SDL_RateMUL2_c4()
979 dst[9] = src[1]; in SDL_RateMUL2_c4()
980 dst[10] = src[2]; in SDL_RateMUL2_c4()
981 dst[11] = src[3]; in SDL_RateMUL2_c4()
982 dst[12] = src[4]; in SDL_RateMUL2_c4()
983 dst[13] = src[5]; in SDL_RateMUL2_c4()
984 dst[14] = src[6]; in SDL_RateMUL2_c4()
985 dst[15] = src[7]; in SDL_RateMUL2_c4()
1000 Uint8 *src, *dst; in SDL_RateMUL2_c6() local
1006 dst = cvt->buf+cvt->len_cvt*2; in SDL_RateMUL2_c6()
1011 dst -= 12; in SDL_RateMUL2_c6()
1012 dst[0] = src[0]; in SDL_RateMUL2_c6()
1013 dst[1] = src[1]; in SDL_RateMUL2_c6()
1014 dst[2] = src[2]; in SDL_RateMUL2_c6()
1015 dst[3] = src[3]; in SDL_RateMUL2_c6()
1016 dst[4] = src[4]; in SDL_RateMUL2_c6()
1017 dst[5] = src[5]; in SDL_RateMUL2_c6()
1018 dst[6] = src[0]; in SDL_RateMUL2_c6()
1019 dst[7] = src[1]; in SDL_RateMUL2_c6()
1020 dst[8] = src[2]; in SDL_RateMUL2_c6()
1021 dst[9] = src[3]; in SDL_RateMUL2_c6()
1022 dst[10] = src[4]; in SDL_RateMUL2_c6()
1023 dst[11] = src[5]; in SDL_RateMUL2_c6()
1029 dst -= 24; in SDL_RateMUL2_c6()
1030 dst[0] = src[0]; in SDL_RateMUL2_c6()
1031 dst[1] = src[1]; in SDL_RateMUL2_c6()
1032 dst[2] = src[2]; in SDL_RateMUL2_c6()
1033 dst[3] = src[3]; in SDL_RateMUL2_c6()
1034 dst[4] = src[4]; in SDL_RateMUL2_c6()
1035 dst[5] = src[5]; in SDL_RateMUL2_c6()
1036 dst[6] = src[6]; in SDL_RateMUL2_c6()
1037 dst[7] = src[7]; in SDL_RateMUL2_c6()
1038 dst[8] = src[8]; in SDL_RateMUL2_c6()
1039 dst[9] = src[9]; in SDL_RateMUL2_c6()
1040 dst[10] = src[10]; in SDL_RateMUL2_c6()
1041 dst[11] = src[11]; in SDL_RateMUL2_c6()
1042 dst[12] = src[0]; in SDL_RateMUL2_c6()
1043 dst[13] = src[1]; in SDL_RateMUL2_c6()
1044 dst[14] = src[2]; in SDL_RateMUL2_c6()
1045 dst[15] = src[3]; in SDL_RateMUL2_c6()
1046 dst[16] = src[4]; in SDL_RateMUL2_c6()
1047 dst[17] = src[5]; in SDL_RateMUL2_c6()
1048 dst[18] = src[6]; in SDL_RateMUL2_c6()
1049 dst[19] = src[7]; in SDL_RateMUL2_c6()
1050 dst[20] = src[8]; in SDL_RateMUL2_c6()
1051 dst[21] = src[9]; in SDL_RateMUL2_c6()
1052 dst[22] = src[10]; in SDL_RateMUL2_c6()
1053 dst[23] = src[11]; in SDL_RateMUL2_c6()
1067 Uint8 *src, *dst; in SDL_RateDIV2() local
1073 dst = cvt->buf; in SDL_RateDIV2()
1077 dst[0] = src[0]; in SDL_RateDIV2()
1079 dst += 1; in SDL_RateDIV2()
1084 dst[0] = src[0]; in SDL_RateDIV2()
1085 dst[1] = src[1]; in SDL_RateDIV2()
1087 dst += 2; in SDL_RateDIV2()
1102 Uint8 *src, *dst; in SDL_RateDIV2_c2() local
1108 dst = cvt->buf; in SDL_RateDIV2_c2()
1112 dst[0] = src[0]; in SDL_RateDIV2_c2()
1113 dst[1] = src[1]; in SDL_RateDIV2_c2()
1115 dst += 2; in SDL_RateDIV2_c2()
1120 dst[0] = src[0]; in SDL_RateDIV2_c2()
1121 dst[1] = src[1]; in SDL_RateDIV2_c2()
1122 dst[2] = src[2]; in SDL_RateDIV2_c2()
1123 dst[3] = src[3]; in SDL_RateDIV2_c2()
1125 dst += 4; in SDL_RateDIV2_c2()
1140 Uint8 *src, *dst; in SDL_RateDIV2_c4() local
1146 dst = cvt->buf; in SDL_RateDIV2_c4()
1150 dst[0] = src[0]; in SDL_RateDIV2_c4()
1151 dst[1] = src[1]; in SDL_RateDIV2_c4()
1152 dst[2] = src[2]; in SDL_RateDIV2_c4()
1153 dst[3] = src[3]; in SDL_RateDIV2_c4()
1155 dst += 4; in SDL_RateDIV2_c4()
1160 dst[0] = src[0]; in SDL_RateDIV2_c4()
1161 dst[1] = src[1]; in SDL_RateDIV2_c4()
1162 dst[2] = src[2]; in SDL_RateDIV2_c4()
1163 dst[3] = src[3]; in SDL_RateDIV2_c4()
1164 dst[4] = src[4]; in SDL_RateDIV2_c4()
1165 dst[5] = src[5]; in SDL_RateDIV2_c4()
1166 dst[6] = src[6]; in SDL_RateDIV2_c4()
1167 dst[7] = src[7]; in SDL_RateDIV2_c4()
1169 dst += 8; in SDL_RateDIV2_c4()
1183 Uint8 *src, *dst; in SDL_RateDIV2_c6() local
1189 dst = cvt->buf; in SDL_RateDIV2_c6()
1193 dst[0] = src[0]; in SDL_RateDIV2_c6()
1194 dst[1] = src[1]; in SDL_RateDIV2_c6()
1195 dst[2] = src[2]; in SDL_RateDIV2_c6()
1196 dst[3] = src[3]; in SDL_RateDIV2_c6()
1197 dst[4] = src[4]; in SDL_RateDIV2_c6()
1198 dst[5] = src[5]; in SDL_RateDIV2_c6()
1200 dst += 6; in SDL_RateDIV2_c6()
1205 dst[0] = src[0]; in SDL_RateDIV2_c6()
1206 dst[1] = src[1]; in SDL_RateDIV2_c6()
1207 dst[2] = src[2]; in SDL_RateDIV2_c6()
1208 dst[3] = src[3]; in SDL_RateDIV2_c6()
1209 dst[4] = src[4]; in SDL_RateDIV2_c6()
1210 dst[5] = src[5]; in SDL_RateDIV2_c6()
1211 dst[6] = src[6]; in SDL_RateDIV2_c6()
1212 dst[7] = src[7]; in SDL_RateDIV2_c6()
1213 dst[8] = src[8]; in SDL_RateDIV2_c6()
1214 dst[9] = src[9]; in SDL_RateDIV2_c6()
1215 dst[10] = src[10]; in SDL_RateDIV2_c6()
1216 dst[11] = src[11]; in SDL_RateDIV2_c6()
1218 dst += 12; in SDL_RateDIV2_c6()