Lines Matching refs:data

388 			  struct __gconv_step_data *data,
394 FUNCTION_NAME (struct __gconv_step *step, struct __gconv_step_data *data, in FUNCTION_NAME() argument
400 struct __gconv_step_data *next_data = data + 1; in FUNCTION_NAME()
404 if ((data->__flags & __GCONV_IS_LAST) == 0) in FUNCTION_NAME()
427 unsigned char *outbuf = data->__outbuf; in FUNCTION_NAME()
429 unsigned char *outend = data->__outbufend; in FUNCTION_NAME()
449 if (data->__flags & __GCONV_IS_LAST) in FUNCTION_NAME()
451 data->__outbuf = outbuf; in FUNCTION_NAME()
497 memset (data->__statep, '\0', sizeof (*data->__statep)); in FUNCTION_NAME()
499 if (! (data->__flags & __GCONV_IS_LAST)) in FUNCTION_NAME()
512 ? data->__outbuf : *outbufstart); in FUNCTION_NAME()
513 unsigned char *outend = data->__outbufend; in FUNCTION_NAME()
558 && consume_incomplete && (data->__statep->__count & 7) != 0) in FUNCTION_NAME()
567 status = SINGLE(FROM_LOOP) (step, data, inptrp, inend, &outbuf, in FUNCTION_NAME()
576 status = SINGLE(TO_LOOP) (step, data, inptrp, inend, &outbuf, in FUNCTION_NAME()
590 || ((data->__flags & __GCONV_IS_LAST) in FUNCTION_NAME()
593 && (((data->__flags & __GCONV_IS_LAST) in FUNCTION_NAME()
619 status = FROM_LOOP (step, data, inptrp, inend, &outbuf, outend, in FUNCTION_NAME()
623 status = TO_LOOP (step, data, inptrp, inend, &outbuf, outend, in FUNCTION_NAME()
631 status = GEN_unaligned (FROM_LOOP) (step, data, inptrp, inend, in FUNCTION_NAME()
637 status = GEN_unaligned (TO_LOOP) (step, data, inptrp, inend, in FUNCTION_NAME()
653 ++data->__invocation_counter; in FUNCTION_NAME()
657 if (__glibc_unlikely (data->__flags & __GCONV_IS_LAST)) in FUNCTION_NAME()
660 data->__outbuf = outbuf; in FUNCTION_NAME()
672 const unsigned char *outerr = data->__outbuf; in FUNCTION_NAME()
711 nstatus = FROM_LOOP (step, data, inptrp, inend, in FUNCTION_NAME()
717 nstatus = TO_LOOP (step, data, inptrp, inend, in FUNCTION_NAME()
727 nstatus = GEN_unaligned (FROM_LOOP) (step, data, in FUNCTION_NAME()
735 nstatus = GEN_unaligned (TO_LOOP) (step, data, in FUNCTION_NAME()
751 --data->__invocation_counter; in FUNCTION_NAME()
766 outbuf = data->__outbuf; in FUNCTION_NAME()
774 outbuf = data->__outbuf; in FUNCTION_NAME()
791 mbstate_t *state = data->__statep; in FUNCTION_NAME()
798 assert (cnt_after <= sizeof (data->__statep->__value.__wchb)); in FUNCTION_NAME()
802 data->__statep->__value.__wchb[cnt] = (*inptrp)[cnt]; in FUNCTION_NAME()
804 data->__statep->__count &= ~7; in FUNCTION_NAME()
805 data->__statep->__count |= cnt; in FUNCTION_NAME()