• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/gettext-0.17/gettext-tools/gnulib-lib/libcroco/

Lines Matching defs:a_out_len

264  *@param a_out_len in/out parameter. The size of the output buffer.
272 gulong * a_in_len, guint32 * a_out, gulong * a_out_len)
287 && a_out && a_out_len, CR_BAD_PARAM_ERROR);
295 out_len = *a_out_len;
411 *a_out_len = out_index + 1;
709 *@param a_out_len out parameter. The length of the output string.
716 guint32 ** a_out, gulong * a_out_len)
721 && a_out && a_out_len, CR_BAD_PARAM_ERROR);
725 a_out_len);
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);
745 *@param a_out_len in/out parameter. The size of the output buffer.
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,
831 *a_out_len = out_index + 1;
845 *@param a_out_len out parameter. The length (in bytes) of the output string.
851 guchar ** a_out, gulong * a_out_len)
856 && a_out_len, CR_BAD_PARAM_ERROR);
859 &a_in[*a_out_len - 1],
860 a_out_len);
864 status = cr_utils_ucs4_to_utf8 (a_in, a_in_len, *a_out, a_out_len);
882 *@param a_out_len in/out parameter. The size of the output buffer.
891 gulong * a_in_len, guchar * a_out, gulong * a_out_len)
900 && a_out_len,
904 *a_out_len = 0 ;
915 out_len = *a_out_len;
936 *a_out_len = out_index;
953 guchar ** a_out, gulong * a_out_len)
960 && a_out_len, CR_BAD_PARAM_ERROR);
963 *a_out_len = 0;
979 *a_out_len = out_len;
1001 *@param a_out_len in/out parameter. The size of the output buffer.
1009 gulong * a_in_len, guchar * a_out, gulong * a_out_len)
1024 && a_out && a_out_len, CR_BAD_PARAM_ERROR);
1032 out_len = *a_out_len;
1137 *a_out_len = out_index;
1150 *@param a_out_len out parameter. The length of the converted buffer.
1158 guchar ** a_out, gulong * a_out_len)
1163 && a_out && a_out_len, CR_BAD_PARAM_ERROR);
1166 *a_out_len = 0;
1172 a_out_len);
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);