Lines Matching refs:need_eof
2322 bytes_to_feed=0, need_eof=False, chars_to_skip=0):
2325 # into the decoder with need_eof as the EOF flag, then skip
2329 (chars_to_skip<<192) | bool(need_eof)<<256)
2335 need_eof, chars_to_skip = divmod(rest, 1<<64)
2336 return position, dec_flags, bytes_to_feed, bool(need_eof), chars_to_skip
2410 need_eof = False
2427 need_eof = True
2433 start_pos, start_flags, bytes_fed, need_eof, chars_to_skip)
2495 start_pos, dec_flags, bytes_to_feed, need_eof, chars_to_skip = \
2515 self._decoder.decode(input_chunk, need_eof))