Lines Matching refs:ref_count
1196 PCRE2_SIZE* ref_count; in pcre2_code_copy() local
1210 ref_count = (PCRE2_SIZE *)(code->tables + TABLES_LENGTH); in pcre2_code_copy()
1211 (*ref_count)++; in pcre2_code_copy()
1230 PCRE2_SIZE* ref_count; in pcre2_code_copy_with_tables() local
1248 ref_count = (PCRE2_SIZE *)(newtables + TABLES_LENGTH); in pcre2_code_copy_with_tables()
1249 *ref_count = 1; in pcre2_code_copy_with_tables()
1265 PCRE2_SIZE* ref_count; in pcre2_code_free() local
1280 ref_count = (PCRE2_SIZE *)(code->tables + TABLES_LENGTH); in pcre2_code_free()
1281 if (*ref_count > 0) in pcre2_code_free()
1283 (*ref_count)--; in pcre2_code_free()
1284 if (*ref_count == 0) in pcre2_code_free()