• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gnulib-local/lib/libcroco/

Lines Matching refs:a_out

262  *@param a_out the output converted ucs4 buffer. Must be allocated by
272 gulong * a_in_len, guint32 * a_out, gulong * a_out_len)
287 && a_out && a_out_len, CR_BAD_PARAM_ERROR);
407 a_out[out_index] = c;
423 *@param a_out output parameter. The resulting read char.
431 guint32 * a_out, gulong * a_consumed)
444 g_return_val_if_fail (a_in && a_out && a_out
561 *a_out = c;
707 *@param a_out out parameter. Points to the output string. It is allocated
716 guint32 ** a_out, gulong * a_out_len)
721 && a_out && a_out_len, CR_BAD_PARAM_ERROR);
729 *a_out = g_malloc0 (*a_out_len * sizeof (guint32));
731 status = cr_utils_utf8_to_ucs4 (a_in, a_in_len, *a_out, a_out_len);
743 *@param a_out the output converted utf8 buffer. Must be allocated by
753 gulong * a_in_len, guchar * a_out, gulong * a_out_len)
760 g_return_val_if_fail (a_in && a_in_len && a_out && a_out_len,
776 a_out[out_index] = a_in[in_index];
779 a_out[out_index] = (0xC0 | (a_in[in_index] >> 6));
780 a_out[out_index + 1] =
784 a_out[out_index] = (0xE0 | (a_in[in_index] >> 12));
785 a_out[out_index + 1] =
787 a_out[out_index + 2] =
791 a_out[out_index] = (0xF0 | (a_in[in_index] >> 18));
792 a_out[out_index + 1]
794 a_out[out_index + 2]
796 a_out[out_index + 3]
800 a_out[out_index] = (0xF8 | (a_in[in_index] >> 24));
801 a_out[out_index + 1] =
803 a_out[out_index + 2]
805 a_out[out_index + 3]
807 a_out[out_index + 4]
811 a_out[out_index] = (0xFC | (a_in[in_index] >> 30));
812 a_out[out_index + 1] =
814 a_out[out_index + 2]
816 a_out[out_index + 3]
818 a_out[out_index + 4]
820 a_out[out_index + 4]
843 *@param a_out out parameter. Points to the output string. It is allocated
851 guchar ** a_out, gulong * a_out_len)
855 g_return_val_if_fail (a_in && a_in_len && a_out
864 status = cr_utils_ucs4_to_utf8 (a_in, a_in_len, *a_out, a_out_len);
880 *@param a_out out parameter. The output utf8 converted buffer.
891 gulong * a_in_len, guchar * a_out, gulong * a_out_len)
907 g_return_val_if_fail (a_out, CR_BAD_PARAM_ERROR) ;
924 a_out[out_index] = a_in[in_index];
927 a_out[out_index] = (0xC0 | (a_in[in_index] >> 6));
928 a_out[out_index + 1] =
945 *@param a_out out parameter. The converted string.
946 *@param a_out out parameter. The length of the converted string.
953 guchar ** a_out, gulong * a_out_len)
959 g_return_val_if_fail (a_in && a_in_len && a_out
964 *a_out = NULL;
975 *a_out = g_malloc0 (out_len);
977 status = cr_utils_ucs1_to_utf8 (a_in, a_in_len, *a_out, &out_len);
996 *@param a_out out parameter. Points to the resulting buffer.
997 *Must be allocated by the caller. If the size of a_out is shorter
1009 gulong * a_in_len, guchar * a_out, gulong * a_out_len)
1024 && a_out && a_out_len, CR_BAD_PARAM_ERROR);
1133 a_out[out_index] = c;
1148 *@param a_out out parameter. The resulting converted ucs4 buffer.
1158 guchar ** a_out, gulong * a_out_len)
1163 && a_out && a_out_len, CR_BAD_PARAM_ERROR);
1167 *a_out = NULL;
1176 *a_out = g_malloc0 (*a_out_len * sizeof (guint32));
1178 status = cr_utils_utf8_to_ucs1 (a_in, a_in_len, *a_out, a_out_len);