study            6383 ext/pcre/pcrelib/pcre_exec.c const pcre_study_data *study;
study            6501 ext/pcre/pcrelib/pcre_exec.c study = NULL;
study            6516 ext/pcre/pcrelib/pcre_exec.c     study = (const pcre_study_data *)extra_data->study_data;
study            6712 ext/pcre/pcrelib/pcre_exec.c     if (!startline && study != NULL &&
study            6713 ext/pcre/pcrelib/pcre_exec.c       (study->flags & PCRE_STUDY_MAPPED) != 0)
study            6714 ext/pcre/pcrelib/pcre_exec.c         start_bits = study->start_bits;
study            6855 ext/pcre/pcrelib/pcre_exec.c     if (study != NULL && (study->flags & PCRE_STUDY_MINLEN) != 0 &&
study            6856 ext/pcre/pcrelib/pcre_exec.c         (pcre_uint32)(end_subject - start_match) < study->minlength)
study              81 ext/pcre/pcrelib/pcre_fullinfo.c const pcre_study_data *study = NULL;
study              86 ext/pcre/pcrelib/pcre_fullinfo.c   study = (const pcre_study_data *)extra_data->study_data;
study             112 ext/pcre/pcrelib/pcre_fullinfo.c   *((size_t *)where) = (study == NULL)? 0 : study->size;
study             157 ext/pcre/pcrelib/pcre_fullinfo.c     (study != NULL && (study->flags & PCRE_STUDY_MAPPED) != 0)?
study             163 ext/pcre/pcrelib/pcre_fullinfo.c     (study != NULL && (study->flags & PCRE_STUDY_MINLEN) != 0)?
study             164 ext/pcre/pcrelib/pcre_fullinfo.c       (int)(study->minlength) : -1;
study            9799 ext/pcre/pcrelib/pcre_jit_compile.c pcre_study_data *study;
study            9819 ext/pcre/pcrelib/pcre_jit_compile.c study = extra->study_data;
study            9833 ext/pcre/pcrelib/pcre_jit_compile.c common->might_be_empty = study->minlength == 0;
study            10061 ext/pcre/pcrelib/pcre_jit_compile.c     else if (study != NULL && (study->flags & PCRE_STUDY_MAPPED) != 0)
study            10062 ext/pcre/pcrelib/pcre_jit_compile.c       fast_forward_start_bits(common, study->start_bits, (re->options & PCRE_FIRSTLINE) != 0);
study            10068 ext/pcre/pcrelib/pcre_jit_compile.c if (mode == JIT_COMPILE && study->minlength > 0 && (re->options & PCRE_NO_START_OPTIMIZE) == 0)
study            10071 ext/pcre/pcrelib/pcre_jit_compile.c   OP2(SLJIT_ADD, TMP2, 0, STR_PTR, 0, SLJIT_IMM, IN_UCHARS(study->minlength));
study            1464 ext/pcre/pcrelib/pcre_study.c pcre_study_data *study;
study            1578 ext/pcre/pcrelib/pcre_study.c   study = (pcre_study_data *)((char *)extra + sizeof(PUBL(extra)));
study            1580 ext/pcre/pcrelib/pcre_study.c   extra->study_data = study;
study            1582 ext/pcre/pcrelib/pcre_study.c   study->size = sizeof(pcre_study_data);
study            1583 ext/pcre/pcrelib/pcre_study.c   study->flags = 0;
study            1591 ext/pcre/pcrelib/pcre_study.c     study->flags |= PCRE_STUDY_MAPPED;
study            1592 ext/pcre/pcrelib/pcre_study.c     memcpy(study->start_bits, start_bits, sizeof(start_bits));
study            1594 ext/pcre/pcrelib/pcre_study.c   else memset(study->start_bits, 0, 32 * sizeof(pcre_uint8));
study            1615 ext/pcre/pcrelib/pcre_study.c     study->flags |= PCRE_STUDY_MINLEN;
study            1616 ext/pcre/pcrelib/pcre_study.c     study->minlength = min;
study            1618 ext/pcre/pcrelib/pcre_study.c   else study->minlength = 0;
study            1634 ext/pcre/pcrelib/pcre_study.c   if (study->flags == 0 && (extra->flags & PCRE_EXTRA_EXECUTABLE_JIT) == 0 &&