Lines Matching refs:step
44 enum direction dir = ((struct utf16_data *) step->__data)->dir; \
45 enum variant var = ((struct utf16_data *) step->__data)->var; \
108 extern int gconv_init (struct __gconv_step *step);
110 gconv_init (struct __gconv_step *step) in gconv_init() argument
118 if (__strcasecmp (step->__from_name, "UTF-16//") == 0) in gconv_init()
123 else if (__strcasecmp (step->__to_name, "UTF-16//") == 0) in gconv_init()
128 else if (__strcasecmp (step->__from_name, "UTF-16BE//") == 0) in gconv_init()
133 else if (__strcasecmp (step->__to_name, "UTF-16BE//") == 0) in gconv_init()
138 else if (__strcasecmp (step->__from_name, "UTF-16LE//") == 0) in gconv_init()
143 else if (__strcasecmp (step->__to_name, "UTF-16LE//") == 0) in gconv_init()
159 step->__data = new_data; in gconv_init()
163 step->__min_needed_from = MIN_NEEDED_FROM; in gconv_init()
164 step->__max_needed_from = MAX_NEEDED_FROM; in gconv_init()
165 step->__min_needed_to = MIN_NEEDED_TO; in gconv_init()
166 step->__max_needed_to = MIN_NEEDED_TO; in gconv_init()
170 step->__min_needed_from = MIN_NEEDED_TO; in gconv_init()
171 step->__max_needed_from = MIN_NEEDED_TO; in gconv_init()
172 step->__min_needed_to = MIN_NEEDED_FROM; in gconv_init()
173 step->__max_needed_to = MAX_NEEDED_FROM; in gconv_init()
176 step->__stateful = 0; in gconv_init()