Lines Matching refs:step
43 enum direction dir = ((struct utf32_data *) step->__data)->dir; \
44 enum variant var = ((struct utf32_data *) step->__data)->var; \
106 extern int gconv_init (struct __gconv_step *step);
108 gconv_init (struct __gconv_step *step) in gconv_init() argument
116 if (__strcasecmp (step->__from_name, "UTF-32//") == 0) in gconv_init()
121 else if (__strcasecmp (step->__to_name, "UTF-32//") == 0) in gconv_init()
126 else if (__strcasecmp (step->__from_name, "UTF-32BE//") == 0) in gconv_init()
131 else if (__strcasecmp (step->__to_name, "UTF-32BE//") == 0) in gconv_init()
136 else if (__strcasecmp (step->__from_name, "UTF-32LE//") == 0) in gconv_init()
141 else if (__strcasecmp (step->__to_name, "UTF-32LE//") == 0) in gconv_init()
157 step->__data = new_data; in gconv_init()
161 step->__min_needed_from = MIN_NEEDED_FROM; in gconv_init()
162 step->__max_needed_from = MIN_NEEDED_FROM; in gconv_init()
163 step->__min_needed_to = MIN_NEEDED_TO; in gconv_init()
164 step->__max_needed_to = MIN_NEEDED_TO; in gconv_init()
168 step->__min_needed_from = MIN_NEEDED_TO; in gconv_init()
169 step->__max_needed_from = MIN_NEEDED_TO; in gconv_init()
170 step->__min_needed_to = MIN_NEEDED_FROM; in gconv_init()
171 step->__max_needed_to = MIN_NEEDED_FROM; in gconv_init()
174 step->__stateful = 0; in gconv_init()