Searched refs:a_offset (Results 1 - 5 of 5) sorted by relevance

/inkscape/src/libcroco/
H A Dcr-input.h97 gulong a_offset, guchar *a_byte) ;
100 cr_input_peek_byte2 (CRInput const *a_this, gulong a_offset,
108 gulong a_offset) ;
111 cr_input_get_cur_byte_addr (CRInput *a_this, guchar ** a_offset) ;
H A Dcr-tknzr.h74 enum CRStatus cr_tknzr_peek_byte (CRTknzr *a_this, gulong a_offset,
77 guchar cr_tknzr_peek_byte2 (CRTknzr *a_this, gulong a_offset,
H A Dcr-input.c781 *@a_offset: the offset of the byte to peek, starting from
798 gulong a_offset, guchar * a_byte)
808 abs_offset = PRIVATE (a_this)->next_byte_index - 1 + a_offset;
812 abs_offset = a_offset;
816 abs_offset = PRIVATE (a_this)->in_buf_size - 1 - a_offset;
837 *@a_offset: the offset of the byte to peek, starting
849 cr_input_peek_byte2 (CRInput const * a_this, gulong a_offset, gboolean * a_eof) argument
859 status = cr_input_peek_byte (a_this, CR_SEEK_CUR, a_offset, &result);
871 *@a_offset: the offset of the byte in the input stream starting
880 cr_input_get_byte_addr (CRInput * a_this, gulong a_offset) argument
797 cr_input_peek_byte(CRInput const * a_this, enum CRSeekPos a_origin, gulong a_offset, guchar * a_byte) argument
901 cr_input_get_cur_byte_addr(CRInput * a_this, guchar ** a_offset) argument
[all...]
H A Dcr-tknzr.c150 *@param a_offset the offset of the byte to peek, the
155 #define PEEK_BYTE(a_tknzr, a_offset, a_byte_ptr) \
157 a_offset, \
1776 *@param a_offset the offset of the peeked byte starting from the current
1783 cr_tknzr_peek_byte (CRTknzr * a_this, gulong a_offset, guchar * a_byte) argument
1797 CR_SEEK_CUR, a_offset, a_byte);
1803 *@param a_offset the offset of the peeked byte starting from the current
1811 cr_tknzr_peek_byte2 (CRTknzr * a_this, gulong a_offset, gboolean * a_eof) argument
1816 return cr_input_peek_byte2 (PRIVATE (a_this)->input, a_offset, a_eof);
H A Dcr-parser.c250 *@param a_offset the offset of the byte to peek, the
255 #define PEEK_BYTE(a_parser, a_offset, a_byte_ptr) \
257 a_offset, \
261 #define BYTE(a_parser, a_offset, a_eof) \
262 cr_tknzr_peek_byte2 (PRIVATE (a_this)->tknzr, a_offset, a_eof)

Completed in 33 milliseconds