Lines Matching refs:rws

408 RWS_anchor *rws = *rwsptr;  in more_workspace()  local
411 if (rws->next != NULL) in more_workspace()
413 new = rws->next; in more_workspace()
421 unsigned int newsize = rws->size * 2; in more_workspace()
432 rws->next = new; in more_workspace()
2681 RWS_anchor *rws = (RWS_anchor *)RWS; in internal_dfa_match() local
2683 if (rws->free < RWS_RSIZE + RWS_OVEC_OSIZE) in internal_dfa_match()
2685 rc = more_workspace(&rws, RWS_OVEC_OSIZE, mb); in internal_dfa_match()
2687 RWS = (int *)rws; in internal_dfa_match()
2690 local_offsets = (PCRE2_SIZE *)(RWS + rws->size - rws->free); in internal_dfa_match()
2692 rws->free -= RWS_RSIZE + RWS_OVEC_OSIZE; in internal_dfa_match()
2708 rws->free += RWS_RSIZE + RWS_OVEC_OSIZE; in internal_dfa_match()
2780 RWS_anchor *rws = (RWS_anchor *)RWS; in internal_dfa_match() local
2782 if (rws->free < RWS_RSIZE + RWS_OVEC_OSIZE) in internal_dfa_match()
2784 rc = more_workspace(&rws, RWS_OVEC_OSIZE, mb); in internal_dfa_match()
2786 RWS = (int *)rws; in internal_dfa_match()
2789 local_offsets = (PCRE2_SIZE *)(RWS + rws->size - rws->free); in internal_dfa_match()
2791 rws->free -= RWS_RSIZE + RWS_OVEC_OSIZE; in internal_dfa_match()
2807 rws->free += RWS_RSIZE + RWS_OVEC_OSIZE; in internal_dfa_match()
2825 RWS_anchor *rws = (RWS_anchor *)RWS; in internal_dfa_match() local
2831 if (rws->free < RWS_RSIZE + RWS_OVEC_RSIZE) in internal_dfa_match()
2833 rc = more_workspace(&rws, RWS_OVEC_RSIZE, mb); in internal_dfa_match()
2835 RWS = (int *)rws; in internal_dfa_match()
2838 local_offsets = (PCRE2_SIZE *)(RWS + rws->size - rws->free); in internal_dfa_match()
2840 rws->free -= RWS_RSIZE + RWS_OVEC_RSIZE; in internal_dfa_match()
2870 rws->free += RWS_RSIZE + RWS_OVEC_RSIZE; in internal_dfa_match()
2921 RWS_anchor *rws = (RWS_anchor *)RWS; in internal_dfa_match() local
2924 if (rws->free < RWS_RSIZE + RWS_OVEC_OSIZE) in internal_dfa_match()
2926 rc = more_workspace(&rws, RWS_OVEC_OSIZE, mb); in internal_dfa_match()
2928 RWS = (int *)rws; in internal_dfa_match()
2931 local_offsets = (PCRE2_SIZE *)(RWS + rws->size - rws->free); in internal_dfa_match()
2933 rws->free -= RWS_RSIZE + RWS_OVEC_OSIZE; in internal_dfa_match()
2974 rws->free += RWS_RSIZE + RWS_OVEC_OSIZE; in internal_dfa_match()
3021 RWS_anchor *rws = (RWS_anchor *)RWS; in internal_dfa_match() local
3023 if (rws->free < RWS_RSIZE + RWS_OVEC_OSIZE) in internal_dfa_match()
3025 rc = more_workspace(&rws, RWS_OVEC_OSIZE, mb); in internal_dfa_match()
3027 RWS = (int *)rws; in internal_dfa_match()
3030 local_offsets = (PCRE2_SIZE *)(RWS + rws->size - rws->free); in internal_dfa_match()
3032 rws->free -= RWS_RSIZE + RWS_OVEC_OSIZE; in internal_dfa_match()
3046 rws->free += RWS_RSIZE + RWS_OVEC_OSIZE; in internal_dfa_match()
3260 RWS_anchor *rws = (RWS_anchor *)base_recursion_workspace; in pcre2_dfa_match() local
3261 rws->next = NULL; in pcre2_dfa_match()
3262 rws->size = RWS_BASE_SIZE; in pcre2_dfa_match()
3263 rws->free = RWS_BASE_SIZE - RWS_ANCHOR_SIZE; in pcre2_dfa_match()
3854 while (rws->next != NULL) in pcre2_dfa_match()
3856 RWS_anchor *next = rws->next; in pcre2_dfa_match()
3857 rws->next = next->next; in pcre2_dfa_match()