Lines Matching refs:s

150 	int c1, s, s1, s2, w;  in mbfl_filt_conv_sjis_open_wchar()  local
174 s = (s1 - 0x21)*94 + s2 - 0x21; in mbfl_filt_conv_sjis_open_wchar()
175 if (s <= 137) { in mbfl_filt_conv_sjis_open_wchar()
176 if (s == 31) { in mbfl_filt_conv_sjis_open_wchar()
178 } else if (s == 32) { in mbfl_filt_conv_sjis_open_wchar()
180 } else if (s == 33) { in mbfl_filt_conv_sjis_open_wchar()
182 } else if (s == 60) { in mbfl_filt_conv_sjis_open_wchar()
184 } else if (s == 80) { in mbfl_filt_conv_sjis_open_wchar()
186 } else if (s == 81) { in mbfl_filt_conv_sjis_open_wchar()
188 } else if (s == 137) { in mbfl_filt_conv_sjis_open_wchar()
193 if (s >= cp932ext1_ucs_table_min && s < cp932ext1_ucs_table_max) { /* vendor ext1 (13ku) */ in mbfl_filt_conv_sjis_open_wchar()
194 w = cp932ext1_ucs_table[s - cp932ext1_ucs_table_min]; in mbfl_filt_conv_sjis_open_wchar()
195 } else if (s >= 0 && s < jisx0208_ucs_table_size) { /* X 0208 */ in mbfl_filt_conv_sjis_open_wchar()
196 w = jisx0208_ucs_table[s]; in mbfl_filt_conv_sjis_open_wchar()
197 …} else if (s >= cp932ext2_ucs_table_min && s < cp932ext2_ucs_table_max) { /* vendor ext2 (89ku - … in mbfl_filt_conv_sjis_open_wchar()
198 w = cp932ext2_ucs_table[s - cp932ext2_ucs_table_min]; in mbfl_filt_conv_sjis_open_wchar()
199 …} else if (s >= cp932ext3_ucs_table_min && s < cp932ext3_ucs_table_max) { /* vendor ext3 (115ku -… in mbfl_filt_conv_sjis_open_wchar()
200 w = cp932ext3_ucs_table[s - cp932ext3_ucs_table_min]; in mbfl_filt_conv_sjis_open_wchar()
201 } else if (s >= (94*94) && s < (114*94)) { /* user (95ku - 114ku) */ in mbfl_filt_conv_sjis_open_wchar()
202 w = s - (94*94) + 0xe000; in mbfl_filt_conv_sjis_open_wchar()