Home
last modified time | relevance | path

Searched refs:cache_offset (Results 1 – 1 of 1) sorted by relevance

/mirbsd/src/gnu/usr.bin/perl/
Dregexec.c2253 if (cache_offset | cache_bit) { \
2263 PL_reg_poscache[cache_offset] &= ~(1<<cache_bit); \
2269 if (cache_offset | cache_bit) { \
2279 PL_reg_poscache[cache_offset] &= ~(1<<cache_bit); \
3177 I32 cache_offset = 0, cache_bit = 0; in S_regmatch() local
3249 cache_offset = locinput - PL_bostr; in S_regmatch()
3251 cache_offset = (scan->flags & 0xf) - 1 + POSCACHE_START in S_regmatch()
3252 + cache_offset * (scan->flags>>4); in S_regmatch()
3253 cache_bit = cache_offset % 8; in S_regmatch()
3254 cache_offset /= 8; in S_regmatch()
[all …]