Lines Matching refs:data
42 struct __gconv_step_data data; in __mbsrtowcs_l() local
50 data.__invocation_counter = 0; in __mbsrtowcs_l()
51 data.__internal_use = 1; in __mbsrtowcs_l()
52 data.__flags = __GCONV_IS_LAST; in __mbsrtowcs_l()
53 data.__statep = ps; in __mbsrtowcs_l()
74 temp_state = *data.__statep; in __mbsrtowcs_l()
75 data.__statep = &temp_state; in __mbsrtowcs_l()
78 data.__outbufend = (unsigned char *) buf + sizeof (buf); in __mbsrtowcs_l()
81 data.__outbuf = (unsigned char *) buf; in __mbsrtowcs_l()
83 status = DL_CALL_FCT (fct, (towc, &data, &inbuf, srcend, NULL, in __mbsrtowcs_l()
86 result += (wchar_t *) data.__outbuf - buf; in __mbsrtowcs_l()
93 assert (((wchar_t *) data.__outbuf)[-1] == L'\0'); in __mbsrtowcs_l()
106 data.__outbuf = (unsigned char *) dst; in __mbsrtowcs_l()
107 data.__outbufend = data.__outbuf + len * sizeof (wchar_t); in __mbsrtowcs_l()
117 status = DL_CALL_FCT (fct, (towc, &data, &srcp, srcend, NULL, in __mbsrtowcs_l()
127 len = (wchar_t *) data.__outbufend - (wchar_t *) data.__outbuf; in __mbsrtowcs_l()
133 result = (wchar_t *) data.__outbuf - dst; in __mbsrtowcs_l()
141 assert (__mbsinit (data.__statep)); in __mbsrtowcs_l()