Lines Matching defs:comp
199 #define comp CoMP /* "comp" is a keyword in some compilers ... */
206 UV comp = utf8_to_uvchr(s, &len);
208 if (comp > 0xff) {
216 ch = (rlen == 0) ? comp :
217 (comp - 0x100 < rlen) ?
218 tbl[comp+1] : tbl[0x100+rlen];
228 else if ((ch = tbl[comp]) >= 0) {
250 UV comp = utf8_to_uvchr(s, &len);
251 if (comp > 0xff) {
259 if (comp - 0x100 < rlen)
260 d = uvchr_to_utf8(d, tbl[comp+1]);
266 else if ((ch = tbl[comp]) >= 0) {