Searched defs:a_in (Results 1 - 2 of 2) sorted by relevance

/inkscape/src/libcroco/
H A Dcr-enc-handler.c136 *@a_in: the input buffer to convert.
150 const guchar * a_in,
156 g_return_val_if_fail (a_this && a_in && a_in_len && a_out,
163 status = a_this->enc_str_len_as_utf8 (a_in,
164 &a_in[*a_in_len - 1],
174 status = a_this->decode_input (a_in, a_in_len, *a_out, a_out_len);
149 cr_enc_handler_convert_input(CREncHandler * a_this, const guchar * a_in, gulong * a_in_len, guchar ** a_out, gulong * a_out_len) argument
H A Dcr-utils.c257 *@param a_in the input utf8 buffer to convert.
270 cr_utils_utf8_to_ucs4 (const guchar * a_in, argument
285 g_return_val_if_fail (a_in && a_in_len
301 if (a_in[in_index] <= 0x7F) {
307 c = a_in[in_index];
310 } else if ((a_in[in_index] & 0xE0) == 0xC0) {
316 c = a_in[in_index] & 0x1F;
319 } else if ((a_in[in_index] & 0xF0) == 0xE0) {
325 c = a_in[in_index] & 0x0F;
328 } else if ((a_in[in_inde
428 cr_utils_read_char_from_utf8_buf(const guchar * a_in, gulong a_in_len, guint32 * a_out, gulong * a_consumed) argument
710 cr_utils_utf8_str_to_ucs4(const guchar * a_in, gulong * a_in_len, guint32 ** a_out, gulong * a_out_len) argument
748 cr_utils_ucs4_to_utf8(const guint32 * a_in, gulong * a_in_len, guchar * a_out, gulong * a_out_len) argument
845 cr_utils_ucs4_str_to_utf8(const guint32 * a_in, gulong * a_in_len, guchar ** a_out, gulong * a_out_len) argument
886 cr_utils_ucs1_to_utf8(const guchar * a_in, gulong * a_in_len, guchar * a_out, gulong * a_out_len) argument
941 cr_utils_ucs1_str_to_utf8(const guchar * a_in, gulong * a_in_len, guchar ** a_out, gulong * a_out_len) argument
995 cr_utils_utf8_to_ucs1(const guchar * a_in, gulong * a_in_len, guchar * a_out, gulong * a_out_len) argument
1141 cr_utils_utf8_str_to_ucs1(const guchar * a_in, gulong * a_in_len, guchar ** a_out, gulong * a_out_len) argument
[all...]

Completed in 234 milliseconds