Lines Matching refs:conv
675 XlcConv conv)
677 State state = (State) conv->state;
699 XlcConv conv,
707 State state = (State) conv->state;
866 XlcConv conv,
874 State state = (State) conv->state;
1078 XlcConv conv,
1086 State state = (State) conv->state;
1116 XlcConv conv,
1124 State state = (State) conv->state;
1170 XlcConv conv;
1172 conv = Xmalloc(sizeof(XlcConvRec) + sizeof(StateRec));
1173 if (conv == NULL)
1176 conv->state = (XPointer) &conv[1];
1178 conv->methods = methods;
1180 init_state(conv);
1182 return conv;
1187 XlcConv conv)
1189 /* conv->state is allocated together with conv, free both at once. */
1190 Xfree(conv);