Lines Matching refs:res
50 uint32_t res; \
63 res = __ibm932sb_to_ucs4[ch]; \
64 if (__builtin_expect (res == 0, 0) && ch != 0) \
82 || (res = __ibm932db_to_ucs4[ch + rp2->idx], \
83 __builtin_expect (res, '\1') == 0 && ch !=0)) \
90 put32 (outptr, res); \
97 if (res == 0xa5) \
98 res = 0x5c; \
99 else if (res == 0x203e) \
100 res = 0x7e; \
101 put32 (outptr, res); \
111 uint32_t res = __ibm932sb_to_ucs4[c]; \
112 if (res == 0 && c != 0) \
114 if (res == 0xa5) \
115 res = 0x5c; \
116 else if (res == 0x203e) \
117 res = 0x7e; \
118 return res; \