Lines Matching defs:c1
249 idn__unicode_compose(idn__unicode_version_t version, unsigned long c1,
257 if (c1 > UCS_MAX || c2 > UCS_MAX)
263 if (LBase <= c1 && c1 < LBase + LCount &&
269 ((c1 - LBase) * VCount + (c2 - VBase)) * TCount;
271 } else if (SBase <= c1 && c1 < SLast &&
273 (c1 - SBase) % TCount == 0) {
277 *compp = c1 + (c2 - TBase);
284 * the number of composition that begins with 'c1', and the lower
287 if ((n = (*version->compose_proc)(c1, &cseq)) == 0)