study            6385 ext/pcre/pcrelib/pcre_exec.c const pcre_study_data *study;
study            6503 ext/pcre/pcrelib/pcre_exec.c study = NULL;
study            6518 ext/pcre/pcrelib/pcre_exec.c     study = (const pcre_study_data *)extra_data->study_data;
study            6714 ext/pcre/pcrelib/pcre_exec.c     if (!startline && study != NULL &&
study            6715 ext/pcre/pcrelib/pcre_exec.c       (study->flags & PCRE_STUDY_MAPPED) != 0)
study            6716 ext/pcre/pcrelib/pcre_exec.c         start_bits = study->start_bits;
study            6857 ext/pcre/pcrelib/pcre_exec.c     if (study != NULL && (study->flags & PCRE_STUDY_MINLEN) != 0 &&
study            6858 ext/pcre/pcrelib/pcre_exec.c         (pcre_uint32)(end_subject - start_match) < study->minlength)
study              83 ext/pcre/pcrelib/pcre_fullinfo.c const pcre_study_data *study = NULL;
study              88 ext/pcre/pcrelib/pcre_fullinfo.c   study = (const pcre_study_data *)extra_data->study_data;
study             114 ext/pcre/pcrelib/pcre_fullinfo.c   *((size_t *)where) = (study == NULL)? 0 : study->size;
study             159 ext/pcre/pcrelib/pcre_fullinfo.c     (study != NULL && (study->flags & PCRE_STUDY_MAPPED) != 0)?
study             165 ext/pcre/pcrelib/pcre_fullinfo.c     (study != NULL && (study->flags & PCRE_STUDY_MINLEN) != 0)?
study             166 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            1466 ext/pcre/pcrelib/pcre_study.c pcre_study_data *study;
study            1580 ext/pcre/pcrelib/pcre_study.c   study = (pcre_study_data *)((char *)extra + sizeof(PUBL(extra)));
study            1582 ext/pcre/pcrelib/pcre_study.c   extra->study_data = study;
study            1584 ext/pcre/pcrelib/pcre_study.c   study->size = sizeof(pcre_study_data);
study            1585 ext/pcre/pcrelib/pcre_study.c   study->flags = 0;
study            1593 ext/pcre/pcrelib/pcre_study.c     study->flags |= PCRE_STUDY_MAPPED;
study            1594 ext/pcre/pcrelib/pcre_study.c     memcpy(study->start_bits, start_bits, sizeof(start_bits));
study            1596 ext/pcre/pcrelib/pcre_study.c   else memset(study->start_bits, 0, 32 * sizeof(pcre_uint8));
study            1617 ext/pcre/pcrelib/pcre_study.c     study->flags |= PCRE_STUDY_MINLEN;
study            1618 ext/pcre/pcrelib/pcre_study.c     study->minlength = min;
study            1620 ext/pcre/pcrelib/pcre_study.c   else study->minlength = 0;
study            1636 ext/pcre/pcrelib/pcre_study.c   if (study->flags == 0 && (extra->flags & PCRE_EXTRA_EXECUTABLE_JIT) == 0 &&