• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10.1/OpenLDAP-499.27/OpenLDAP/libraries/liblunicode/utbm/

Lines Matching refs:c1

92     ucs4_t c1, c2;
98 c1 = *start;
100 if (0xd800 <= c1 && c1 <= 0xdbff && 0xdc00 <= c2 && c2 <= 0xdfff)
101 c1 = 0x10000 + (((c1 & 0x03ff) << 10) | (c2 & 0x03ff));
104 if (!((c1 ^ sp->ch->uc) & (c1 ^ sp->ch->lc) & (c1 ^ sp->ch->tc))) {
117 ucs4_t c1, c2;
126 c1 = *start;
128 if (0xd800 <= c1 && c1 <= 0xdbff && 0xdc00 <= c2 && c2 <= 0xdfff) {
129 c1 = 0x10000 + (((c1 & 0x03ff) << 10) | (c2 & 0x03ff));
151 while (start > text && _utbm_nonspacing(c1)) {
153 c1 = (start - 1 > text) ? *(start - 1) : ~0;
155 0xd800 <= c1 && c1 <= 0xdbff) {
156 c1 = 0x10000 + (((c1 & 0x03ff) << 10) | (c2 & 0x03ff));
159 c1 = c2;
169 (_utbm_isspace(c1, 1) || _utbm_iscntrl(c1))) {
170 check_space = _utbm_isspace(c1, 1);
172 c1 = (start - 1 > text) ? *(start - 1) : ~0;
174 0xd800 <= c1 && c1 <= 0xdbff) {
175 c1 = 0x10000 + (((c1 & 0x03ff) << 10) | (c2 & 0x03ff));
178 c1 = c2;
195 if (count > 0 && ((c1 ^ cp->uc) & (c1 ^ cp->lc) & (c1 ^ cp->tc)))
198 count -= (c1 >= 0x10000) ? 2 : 1;
207 c1 = (start - 1 > text) ? *(start - 1) : ~0;
209 0xd800 <= c1 && c1 <= 0xdbff) {
210 c1 = 0x10000 + (((c1 & 0x03ff) << 10) | (c2 & 0x03ff));
213 c1 = c2;
264 ucs4_t c1, c2, sentinel;
305 c1 = pat[i];
307 if (0xd800 <= c1 && c1 <= 0xdbff && 0xdc00 <= c2 && c2 <= 0xdfff)
308 c1 = 0x10000 + (((c1 & 0x03ff) << 10) | (c2 & 0x03ff));
314 if (!_utbm_isspace(c1, flags & UTBM_SPACE_COMPRESS))
320 if ((flags & UTBM_IGNORE_NONSPACING) && _utbm_nonspacing(c1))
327 if (_utbm_isspace(c1, 1)) {
348 if (_utbm_iscntrl(c1))
356 cp->uc = _utbm_toupper(c1);
357 cp->lc = _utbm_tolower(c1);
358 cp->tc = _utbm_totitle(c1);
360 cp->uc = cp->lc = cp->tc = c1;
375 p->patlen += (c1 >= 0x10000) ? 2 : 1;
380 i += (c1 >= 0x10000) ? 1 : 0;