Lines Matching refs:w

116 	int c1, s, w;  in mbfl_filt_conv_cp51932_wchar()  local
128 w = c & MBFL_WCSGROUP_MASK; in mbfl_filt_conv_cp51932_wchar()
129 w |= MBFL_WCSGROUP_THROUGH; in mbfl_filt_conv_cp51932_wchar()
130 CK((*filter->output_function)(w, filter->data)); in mbfl_filt_conv_cp51932_wchar()
138 w = 0; in mbfl_filt_conv_cp51932_wchar()
142 w = 0xff3c; /* FULLWIDTH REVERSE SOLIDUS */ in mbfl_filt_conv_cp51932_wchar()
144 w = 0xff5e; /* FULLWIDTH TILDE */ in mbfl_filt_conv_cp51932_wchar()
146 w = 0x2225; /* PARALLEL TO */ in mbfl_filt_conv_cp51932_wchar()
148 w = 0xff0d; /* FULLWIDTH HYPHEN-MINUS */ in mbfl_filt_conv_cp51932_wchar()
150 w = 0xffe0; /* FULLWIDTH CENT SIGN */ in mbfl_filt_conv_cp51932_wchar()
152 w = 0xffe1; /* FULLWIDTH POUND SIGN */ in mbfl_filt_conv_cp51932_wchar()
154 w = 0xffe2; /* FULLWIDTH NOT SIGN */ in mbfl_filt_conv_cp51932_wchar()
157 if (w == 0) { in mbfl_filt_conv_cp51932_wchar()
159 w = cp932ext1_ucs_table[s - cp932ext1_ucs_table_min]; in mbfl_filt_conv_cp51932_wchar()
161 w = jisx0208_ucs_table[s]; in mbfl_filt_conv_cp51932_wchar()
163 w = cp932ext2_ucs_table[s - cp932ext2_ucs_table_min]; in mbfl_filt_conv_cp51932_wchar()
166 if (w <= 0) { in mbfl_filt_conv_cp51932_wchar()
167 w = ((c1 & 0x7f) << 8) | (c & 0x7f); in mbfl_filt_conv_cp51932_wchar()
168 w &= MBFL_WCSPLANE_MASK; in mbfl_filt_conv_cp51932_wchar()
169 w |= MBFL_WCSPLANE_WINCP932; in mbfl_filt_conv_cp51932_wchar()
171 CK((*filter->output_function)(w, filter->data)); in mbfl_filt_conv_cp51932_wchar()
175 w = (c1 << 8) | c; in mbfl_filt_conv_cp51932_wchar()
176 w &= MBFL_WCSGROUP_MASK; in mbfl_filt_conv_cp51932_wchar()
177 w |= MBFL_WCSGROUP_THROUGH; in mbfl_filt_conv_cp51932_wchar()
178 CK((*filter->output_function)(w, filter->data)); in mbfl_filt_conv_cp51932_wchar()
185 w = 0xfec0 + c; in mbfl_filt_conv_cp51932_wchar()
186 CK((*filter->output_function)(w, filter->data)); in mbfl_filt_conv_cp51932_wchar()
190 w = 0x8e00 | c; in mbfl_filt_conv_cp51932_wchar()
191 w &= MBFL_WCSGROUP_MASK; in mbfl_filt_conv_cp51932_wchar()
192 w |= MBFL_WCSGROUP_THROUGH; in mbfl_filt_conv_cp51932_wchar()
193 CK((*filter->output_function)(w, filter->data)); in mbfl_filt_conv_cp51932_wchar()