Searched refs:study (Results 1 - 6 of 6) sorted by relevance

/forgerock/web-agents-v4/pcre/
H A Dpcre_fullinfo.c83 const pcre_study_data *study = NULL; local
88 study = (const pcre_study_data *)extra_data->study_data;
114 *((size_t *)where) = (study == NULL)? 0 : study->size;
159 (study != NULL && (study->flags & PCRE_STUDY_MAPPED) != 0)?
165 (study != NULL && (study->flags & PCRE_STUDY_MINLEN) != 0)?
166 (int)(study->minlength) : -1;
H A Dpcre_byte_order.c110 pcre_study_data *study; local
157 study = (pcre_study_data *)extra_data->study_data;
158 study->size = swap_uint32(study->size);
159 study->flags = swap_uint32(study->flags);
160 study->minlength = swap_uint32(study->minlength);
H A Dpcre_study.c1393 /* This function is handed a compiled expression that it must study to produce
1423 pcre_study_data *study; local
1516 pcre_study_data block. The study data is put in the latter, which is pointed to
1537 study = (pcre_study_data *)((char *)extra + sizeof(PUBL(extra)));
1539 extra->study_data = study;
1541 study->size = sizeof(pcre_study_data);
1542 study->flags = 0;
1545 study data is written to a file, but set the flag only if any of the bits
1550 study->flags |= PCRE_STUDY_MAPPED;
1551 memcpy(study
[all...]
H A Dpcre_dfa_exec.c3196 const pcre_study_data *study = NULL; local
3238 /* Set up study, callout, and table data */
3247 study = (const pcre_study_data *)extra_data->study_data;
3403 if (!startline && study != NULL &&
3404 (study->flags & PCRE_STUDY_MAPPED) != 0)
3405 start_bits = study->start_bits;
3520 /* Advance to a non-unique first pcre_uchar after study */
3553 if (study != NULL && (study->flags & PCRE_STUDY_MINLEN) != 0 &&
3554 (pcre_uint32)(end_subject - current_subject) < study
[all...]
H A Dpcre_exec.c6373 const pcre_study_data *study; local
6491 study = NULL;
6506 study = (const pcre_study_data *)extra_data->study_data;
6701 if (!startline && study != NULL &&
6702 (study->flags & PCRE_STUDY_MAPPED) != 0)
6703 start_bits = study->start_bits;
6814 /* Or to a non-unique first byte after study */
6844 if (study != NULL && (study->flags & PCRE_STUDY_MINLEN) != 0 &&
6845 (pcre_uint32)(end_subject - start_match) < study
[all...]
H A Dpcre_jit_compile.c9739 pcre_study_data *study; local
9759 study = extra->study_data;
9775 common->might_be_empty = study->minlength == 0;
10025 else if ((re->flags & PCRE_STARTLINE) == 0 && study != NULL && (study->flags & PCRE_STUDY_MAPPED) != 0)
10026 fast_forward_start_bits(common, study->start_bits, (re->options & PCRE_FIRSTLINE) != 0);
10032 if (mode == JIT_COMPILE && study->minlength > 0 && (re->options & PCRE_NO_START_OPTIMIZE) == 0)
10035 OP2(SLJIT_ADD, TMP2, 0, STR_PTR, 0, SLJIT_IMM, IN_UCHARS(study->minlength));

Completed in 92 milliseconds