Searched refs:study (Results 1 – 19 of 19) sorted by relevance
/PHP-5.5/ext/pcre/pcrelib/ |
H A D | pcre_fullinfo.c | 83 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 D | pcre_study.c | 1466 pcre_study_data *study; in pcre_study() local 1580 study = (pcre_study_data *)((char *)extra + sizeof(PUBL(extra))); in pcre_study() 1582 extra->study_data = study; in pcre_study() 1584 study->size = sizeof(pcre_study_data); in pcre_study() 1585 study->flags = 0; in pcre_study() 1593 study->flags |= PCRE_STUDY_MAPPED; in pcre_study() 1594 memcpy(study->start_bits, start_bits, sizeof(start_bits)); in pcre_study() 1596 else memset(study->start_bits, 0, 32 * sizeof(pcre_uint8)); in pcre_study() 1617 study->flags |= PCRE_STUDY_MINLEN; in pcre_study() 1618 study->minlength = min; in pcre_study() [all …]
|
H A D | pcre_exec.c | 6385 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() 6714 if (!startline && study != NULL && in pcre_exec() 6715 (study->flags & PCRE_STUDY_MAPPED) != 0) in pcre_exec() 6716 start_bits = study->start_bits; in pcre_exec() 6857 if (study != NULL && (study->flags & PCRE_STUDY_MINLEN) != 0 && in pcre_exec() 6858 (pcre_uint32)(end_subject - start_match) < study->minlength) in pcre_exec()
|
H A D | ChangeLog | 228 segfault at study time (while trying to find the minimum matching length). 1400 19. If the /S+ option was used in pcretest to study a pattern using JIT, 1420 26. If study data was being save in a file and studying had not found a set of 1623 synonym of -m (show memory usage). I have changed it to mean "force study 1629 "never study" - see 20 below). 2393 study optimizations had never been tested with that matching function. 4410 the character tables forced to be NULL. The study data, if any, is 4569 pcretest, it used to include the size of the study block as part of its 5055 the actual study data pointed to by the study_data field, and the 5538 2. Put dummy code into study.c in order to trick the optimizer of the IBM C [all …]
|
H A D | pcre_jit_compile.c | 9799 pcre_study_data *study; in PRIV() local 9819 study = extra->study_data; in PRIV() 9833 common->might_be_empty = study->minlength == 0; in PRIV() 10061 else if (study != NULL && (study->flags & PCRE_STUDY_MAPPED) != 0) in PRIV() 10062 fast_forward_start_bits(common, study->start_bits, (re->options & PCRE_FIRSTLINE) != 0); in PRIV() 10068 if (mode == JIT_COMPILE && study->minlength > 0 && (re->options & PCRE_NO_START_OPTIMIZE) == 0) in PRIV() 10071 OP2(SLJIT_ADD, TMP2, 0, STR_PTR, 0, SLJIT_IMM, IN_UCHARS(study->minlength)); in PRIV()
|
H A D | NEWS | 284 full match is available. The "study" process has been enhanced by finding a
|
H A D | README | 688 tests that are marked "never study" (see the pcretest program for how this is
|
/PHP-5.5/ext/pcre/pcrelib/testdata/ |
H A D | testoutput21-16 | 7 No study data
|
H A D | testoutput21-32 | 7 No study data
|
H A D | testoutput14 | 375 No study data 381 No study data
|
H A D | testoutput12 | 12 JIT study was successful 21 JIT study was not successful 31 JIT study was not successful 40 JIT study was not successful 49 JIT study was successful 178 JIT study was successful
|
H A D | testinput1 | 4714 /--- 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 D | testoutput8 | 6217 No study data 6229 No study data
|
H A D | testoutput2 | 5648 No study data 5683 No study data 5720 No study data 5759 No study data
|
H A D | testoutput1 | 7871 /--- 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.5/ext/pcre/pcrelib/doc/ |
H A D | pcre.txt | 328 tions from just one library. For example, if you want to study a pat- 330 pcre16_study(), not pcre_study(), and you must free the study data with 660 want to study a pattern that was compiled with pcre32_compile(), you 662 study data with pcre32_free_study(). 2522 the results of the study. 2554 study time. Not all patterns can be optimized by the JIT compiler. For 3091 NULL, /* we didn't study the pattern */ 4118 NULL, /* we didn't study the pattern */ 8389 like this to free the study data: 8573 result of a successful study with PCRE_STUDY_JIT_COMPILE etc. [all …]
|
/PHP-5.5/win32/ |
H A D | php5dll.dsp | 807 SOURCE=..\ext\pcre\pcrelib\study.c
|
H A D | install.txt | 285 In addition to reading these, study the ini settings and set every
|
/PHP-5.5/ext/standard/tests/misc/ |
H A D | browscap.ini | 163 [Mozilla/4.0 (compatible; Yahoo Japan; for robot study; kasugiya)] 365 [Mozilla/4.0 (compatible; Y!J; for robot study*)]
|
Completed in 268 milliseconds