Lines Matching refs:c
61 #define KICONV_JA_NGET(c) \
66 (c) = *ip++;\
69 #define KICONV_JA_NGET_REP_FR_MB(c) \
76 (c) = *ip++;\
79 #define KICONV_JA_NGET_REP_TO_MB(c) \
86 (c) = *ip++;\
89 #define KICONV_JA_NPUT(c) \
94 *op++ = (uint8_t)(c);\
140 * KICONV_JA_ISXXXX(c) macros below assume (c) is of type ushort_t
143 #define KICONV_JA_ISASC(c) ((c) <= 0x7f)
146 #define KICONV_JA_ISC1CTRL(c) (((c) >= 0x80) && ((c) <= 0x9f))
149 #define KICONV_JA_ISC1CTRLEUC(c) ((((c) >= 0x80) && ((c) <= 0x8d)) ||\
150 (((c) >= 0x90) && ((c) <= 0x9f)))
153 #define KICONV_JA_ISCS1(c) (((c) >= 0xa1) && ((c) <= 0xfe))
156 #define KICONV_JA_ISCS1_0208(c) (((c) >= 0xa1) && ((c) <= 0xf4))
159 #define KICONV_JA_ISCS1_UDC(c) (((c) >= 0xf5) && ((c) <= 0xfe))
162 #define KICONV_JA_ISCS2(c) (((c) >= 0xa1) && ((c) <= 0xdf))
165 #define KICONV_JA_ISCS3(c) (((c) >= 0xa1) && ((c) <= 0xfe))
168 #define KICONV_JA_ISCS3_UDC(c) (((c) >= 0xf5) && ((c) <= 0xfe))
171 #define KICONV_JA_ISSJKANA(c) (((c) >= 0xa1) && ((c) <= 0xdf))
174 #define KICONV_JA_ISSJMB_1(c) \
175 ((((c) >= 0x81) && ((c) <= 0x9f)) || \
176 (((c) >= 0xe0) && ((c) <= 0xfc)))
179 #define KICONV_JA_ISSJKANJI1(c) \
180 ((((c) >= 0x81) && ((c) <= 0x9f)) || \
181 (((c) >= 0xe0) && ((c) <= 0xea)) || \
182 (((c) >= 0xf0) && ((c) <= 0xf4)))
185 #define KICONV_JA_ISSJSUPKANJI1(c) (((c) >= 0xf5) && ((c) <= 0xf9))
188 #define KICONV_JA_ISSJUDC_1(c) (((c) >= 0xf0) && ((c) <= 0xf9))
191 #define KICONV_JA_ISSJIBM(c) (((c) >= 0xfa) && ((c) <= 0xfc))
194 #define KICONV_JA_ISSJNECIBM(c) (((c) >= 0xed) && ((c) <= 0xef))
197 #define KICONV_JA_ISSJKANJI2(c) \
198 ((((c) >= 0x40) && ((c) <= 0x7e)) || \
199 (((c) >= 0x80) && ((c) <= 0xfc)))
202 #define KICONV_JA_ISUTF8UDC(c) (((c) >= 0xe000) && ((c) <= 0xf8ff))