Home
last modified time | relevance | path

Searched refs:study (Results 1 – 15 of 15) sorted by relevance

/PHP-5.4/ext/pcre/pcrelib/
H A Dpcre_fullinfo.c83 const pcre_study_data *study = NULL; in pcre_fullinfo() local
88 study = (const pcre_study_data *)extra_data->study_data; in pcre_fullinfo()
114 *((size_t *)where) = (study == NULL)? 0 : study->size; in pcre_fullinfo()
159 (study != NULL && (study->flags & PCRE_STUDY_MAPPED) != 0)? in pcre_fullinfo()
165 (study != NULL && (study->flags & PCRE_STUDY_MINLEN) != 0)? in pcre_fullinfo()
166 (int)(study->minlength) : -1; in pcre_fullinfo()
H A Dpcre_study.c1459 pcre_study_data *study; in pcre_study() local
1573 study = (pcre_study_data *)((char *)extra + sizeof(PUBL(extra))); in pcre_study()
1575 extra->study_data = study; in pcre_study()
1577 study->size = sizeof(pcre_study_data); in pcre_study()
1578 study->flags = 0; in pcre_study()
1586 study->flags |= PCRE_STUDY_MAPPED; in pcre_study()
1587 memcpy(study->start_bits, start_bits, sizeof(start_bits)); in pcre_study()
1589 else memset(study->start_bits, 0, 32 * sizeof(pcre_uint8)); in pcre_study()
1610 study->flags |= PCRE_STUDY_MINLEN; in pcre_study()
1611 study->minlength = min; in pcre_study()
[all …]
H A Dpcre_exec.c6385 const pcre_study_data *study; in pcre_exec() local
6503 study = NULL; in pcre_exec()
6518 study = (const pcre_study_data *)extra_data->study_data; in pcre_exec()
6713 if (!startline && study != NULL && in pcre_exec()
6714 (study->flags & PCRE_STUDY_MAPPED) != 0) in pcre_exec()
6715 start_bits = study->start_bits; in pcre_exec()
6856 if (study != NULL && (study->flags & PCRE_STUDY_MINLEN) != 0 && in pcre_exec()
6857 (pcre_uint32)(end_subject - start_match) < study->minlength) in pcre_exec()
H A Dpcre_jit_compile.c9757 pcre_study_data *study; in PRIV() local
9777 study = extra->study_data; in PRIV()
9791 common->might_be_empty = study->minlength == 0; in PRIV()
10018 else if (study != NULL && (study->flags & PCRE_STUDY_MAPPED) != 0) in PRIV()
10019 fast_forward_start_bits(common, study->start_bits, (re->options & PCRE_FIRSTLINE) != 0); in PRIV()
10025 if (mode == JIT_COMPILE && study->minlength > 0 && (re->options & PCRE_NO_START_OPTIMIZE) == 0) in PRIV()
10028 OP2(SLJIT_ADD, TMP2, 0, STR_PTR, 0, SLJIT_IMM, IN_UCHARS(study->minlength)); in PRIV()
H A DChangeLog52 segfault at study time (while trying to find the minimum matching length).
1224 19. If the /S+ option was used in pcretest to study a pattern using JIT,
1244 26. If study data was being save in a file and studying had not found a set of
1447 synonym of -m (show memory usage). I have changed it to mean "force study
1453 "never study" - see 20 below).
2217 study optimizations had never been tested with that matching function.
4234 the character tables forced to be NULL. The study data, if any, is
4393 pcretest, it used to include the size of the study block as part of its
4879 the actual study data pointed to by the study_data field, and the
5362 2. Put dummy code into study.c in order to trick the optimizer of the IBM C
[all …]
H A DNEWS276 full match is available. The "study" process has been enhanced by finding a
H A DREADME688 tests that are marked "never study" (see the pcretest program for how this is
/PHP-5.4/ext/pcre/pcrelib/doc/
H A Dpcre.txt317 tions from just one library. For example, if you want to study a pat-
319 pcre16_study(), not pcre_study(), and you must free the study data with
649 want to study a pattern that was compiled with pcre32_compile(), you
651 study data with pcre32_free_study().
2511 the results of the study.
2543 study time. Not all patterns can be optimized by the JIT compiler. For
3080 NULL, /* we didn't study the pattern */
4107 NULL, /* we didn't study the pattern */
8365 like this to free the study data:
8549 result of a successful study with PCRE_STUDY_JIT_COMPILE etc.
[all …]
/PHP-5.4/win32/
H A Dphp5dll.dsp815 SOURCE=..\ext\pcre\pcrelib\study.c
H A Dinstall.txt413 In addition to reading these, study the ini settings and set every
/PHP-5.4/ext/pcre/pcrelib/testdata/
H A Dtestinput14714 /--- Force no study, otherwise mark is not seen. The studied version is in
4749 /--- Don't loop! Force no study, otherwise mark is not seen. ---/
H A Dtestoutput25635 No study data
5670 No study data
5707 No study data
5746 No study data
H A Dtestoutput86217 No study data
6229 No study data
H A Dtestoutput17871 /--- Force no study, otherwise mark is not seen. The studied version is in
7917 /--- Don't loop! Force no study, otherwise mark is not seen. ---/
/PHP-5.4/ext/standard/tests/misc/
H A Dbrowscap.ini163 [Mozilla/4.0 (compatible; Yahoo Japan; for robot study; kasugiya)]
365 [Mozilla/4.0 (compatible; Y!J; for robot study*)]

Completed in 272 milliseconds