Searched refs:next_byte_index (Results 1 – 4 of 4) sorted by relevance
67 gulong next_byte_index; member373 *a_end_of_input = (PRIVATE (a_this)->next_byte_index in cr_input_end_of_input()392 g_return_val_if_fail (PRIVATE (a_this)->next_byte_index in cr_input_get_nb_bytes_left()398 return PRIVATE (a_this)->nb_bytes - PRIVATE (a_this)->next_byte_index; in cr_input_get_nb_bytes_left()423 g_return_val_if_fail (PRIVATE (a_this)->next_byte_index <= in cr_input_read_byte()435 *a_byte = PRIVATE (a_this)->in_buf[PRIVATE (a_this)->next_byte_index]; in cr_input_read_byte()438 PRIVATE (a_this)->next_byte_index < 2) { in cr_input_read_byte()441 PRIVATE (a_this)->next_byte_index++; in cr_input_read_byte()480 PRIVATE (a_this)->next_byte_index, in cr_input_read_char()485 PRIVATE (a_this)->next_byte_index += consumed; in cr_input_read_char()[all …]
70 glong next_byte_index ; member
545 (error, pos.line, pos.col, pos.next_byte_index - 1); in cr_parser_push_error()
28 size_t next_byte_index = 1; in Base32Encode() local36 if (free_bits >= 8 && next_byte_index < input.size()) { in Base32Encode()38 bit_stream += static_cast<uint8_t>(input[next_byte_index++]) << free_bits; in Base32Encode()