Lines Matching refs:a_offset
781 *@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)
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)
884 if (a_offset >= PRIVATE (a_this)->nb_bytes) {
888 return &PRIVATE (a_this)->in_buf[a_offset];
894 *@a_offset: out parameter. The returned address.
901 cr_input_get_cur_byte_addr (CRInput * a_this, guchar ** a_offset)
903 g_return_val_if_fail (a_this && PRIVATE (a_this) && a_offset,
910 *a_offset = cr_input_get_byte_addr