Lines Matching defs:out_index
276 out_index = 0;
296 for (in_index = 0, out_index = 0;
297 (in_index < in_len) && (out_index < out_len);
298 in_index++, out_index++) {
406 a_out[out_index] = c;
410 *a_out_len = out_index + 1;
753 out_index = 0;
772 a_out[out_index] = a_in[in_index];
773 out_index++;
775 a_out[out_index] = (0xC0 | (a_in[in_index] >> 6));
776 a_out[out_index + 1] =
778 out_index += 2;
780 a_out[out_index] = (0xE0 | (a_in[in_index] >> 12));
781 a_out[out_index + 1] =
783 a_out[out_index + 2] =
785 out_index += 3;
787 a_out[out_index] = (0xF0 | (a_in[in_index] >> 18));
788 a_out[out_index + 1]
790 a_out[out_index + 2]
792 a_out[out_index + 3]
794 out_index += 4;
796 a_out[out_index] = (0xF8 | (a_in[in_index] >> 24));
797 a_out[out_index + 1] =
799 a_out[out_index + 2]
801 a_out[out_index + 3]
803 a_out[out_index + 4]
805 out_index += 5;
807 a_out[out_index] = (0xFC | (a_in[in_index] >> 30));
808 a_out[out_index + 1] =
810 a_out[out_index + 2]
812 a_out[out_index + 3]
814 a_out[out_index + 4]
816 a_out[out_index + 4]
818 out_index += 6;
827 *a_out_len = out_index + 1;
889 gulong out_index = 0,
908 for (in_index = 0, out_index = 0;
909 (in_index < in_len) && (out_index < out_len); in_index++) {
915 a_out[out_index] = a_in[in_index];
916 out_index++;
918 a_out[out_index] = (0xC0 | (a_in[in_index] >> 6));
919 a_out[out_index + 1] =
921 out_index += 2;
926 *a_out_len = out_index;
999 out_index = 0,
1020 for (in_index = 0, out_index = 0;
1021 (in_index < in_len) && (out_index < out_len);
1022 in_index++, out_index++) {
1118 a_out[out_index] = c;
1122 *a_out_len = out_index;