Symbol: CH
lib/libcurses/tinfo/obsolete.c
132
target[0] = CH(0);
lib/libcurses/tinfo/obsolete.c
136
target[1] = UChar(0x80 | (CH(0) & 0x3f));
lib/libcurses/tinfo/obsolete.c
137
target[0] = UChar(0xc0 | (CH(0) >> 6) | ((CH(1) & 0x07) << 2));
lib/libcurses/tinfo/obsolete.c
141
target[2] = UChar(0x80 | (CH(0) & 0x3f));
lib/libcurses/tinfo/obsolete.c
142
target[1] = UChar(0x80 | (CH(0) >> 6) | ((CH(1) & 0x0f) << 2));
lib/libcurses/tinfo/obsolete.c
143
target[0] = UChar(0xe0 | ((int) (CH(1) & 0xf0) >> 4));
lib/libcurses/tinfo/obsolete.c
147
target[3] = UChar(0x80 | (CH(0) & 0x3f));
lib/libcurses/tinfo/obsolete.c
148
target[2] = UChar(0x80 | (CH(0) >> 6) | ((CH(1) & 0x0f) << 2));
lib/libcurses/tinfo/obsolete.c
150
((int) (CH(1) & 0xf0) >> 4) |
lib/libcurses/tinfo/obsolete.c
151
((int) (CH(2) & 0x03) << 4));
lib/libcurses/tinfo/obsolete.c
152
target[0] = UChar(0xf0 | ((int) (CH(2) & 0x1f) >> 2));
lib/libcurses/tinfo/obsolete.c
156
target[4] = UChar(0x80 | (CH(0) & 0x3f));
lib/libcurses/tinfo/obsolete.c
157
target[3] = UChar(0x80 | (CH(0) >> 6) | ((CH(1) & 0x0f) << 2));
lib/libcurses/tinfo/obsolete.c
159
((int) (CH(1) & 0xf0) >> 4) |
lib/libcurses/tinfo/obsolete.c
160
((int) (CH(2) & 0x03) << 4));
lib/libcurses/tinfo/obsolete.c
161
target[1] = UChar(0x80 | (CH(2) >> 2));
lib/libcurses/tinfo/obsolete.c
162
target[0] = UChar(0xf8 | (CH(3) & 0x03));
lib/libcurses/tinfo/obsolete.c
166
target[5] = UChar(0x80 | (CH(0) & 0x3f));
lib/libcurses/tinfo/obsolete.c
167
target[4] = UChar(0x80 | (CH(0) >> 6) | ((CH(1) & 0x0f) << 2));
lib/libcurses/tinfo/obsolete.c
168
target[3] = UChar(0x80 | (CH(1) >> 4) | ((CH(2) & 0x03) << 4));
lib/libcurses/tinfo/obsolete.c
169
target[2] = UChar(0x80 | (CH(2) >> 2));
lib/libcurses/tinfo/obsolete.c
170
target[1] = UChar(0x80 | (CH(3) & 0x3f));
lib/libcurses/tinfo/obsolete.c
171
target[0] = UChar(0xfc | ((int) (CH(3) & 0x40) >> 6));