Lines Matching refs:numlen
3171 STRLEN numlen = e - p - 1; in S_regatom() local
3172 ender = grok_hex(p + 1, &numlen, &flags, NULL); in S_regatom()
3180 STRLEN numlen = 2; in S_regatom() local
3181 ender = grok_hex(p, &numlen, &flags, NULL); in S_regatom()
3182 p += numlen; in S_regatom()
3195 STRLEN numlen = 3; in S_regatom() local
3196 ender = grok_oct(p, &numlen, &flags, NULL); in S_regatom()
3197 p += numlen; in S_regatom()
3217 STRLEN numlen; in S_regatom() local
3219 &numlen, 0); in S_regatom()
3220 p += numlen; in S_regatom()
3240 STRLEN numlen; in S_regatom() local
3243 foldlen -= numlen) { in S_regatom()
3244 ender = utf8_to_uvchr(foldbuf, &numlen); in S_regatom()
3245 if (numlen > 0) { in S_regatom()
3251 foldbuf += numlen; in S_regatom()
3252 if (numlen >= foldlen) in S_regatom()
3278 STRLEN numlen; in S_regatom() local
3281 foldlen -= numlen) { in S_regatom()
3282 ender = utf8_to_uvchr(foldbuf, &numlen); in S_regatom()
3283 if (numlen > 0) { in S_regatom()
3289 foldbuf += numlen; in S_regatom()
3290 if (numlen >= foldlen) in S_regatom()
3583 STRLEN numlen; in S_regclass() local
3640 &numlen, 0); in S_regclass()
3641 RExC_parse += numlen; in S_regclass()
3652 &numlen, 0); in S_regclass()
3653 RExC_parse += numlen; in S_regclass()
3726 numlen = e - RExC_parse; in S_regclass()
3727 value = grok_hex(RExC_parse, &numlen, &flags, NULL); in S_regclass()
3732 numlen = 2; in S_regclass()
3733 value = grok_hex(RExC_parse, &numlen, &flags, NULL); in S_regclass()
3734 RExC_parse += numlen; in S_regclass()
3745 numlen = 3; in S_regclass()
3746 value = grok_oct(--RExC_parse, &numlen, &flags, NULL); in S_regclass()
3747 RExC_parse += numlen; in S_regclass()