Searched refs:study (Results 1 – 25 of 58) sorted by relevance
123
/external/pcre/dist/ |
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()
|
D | pcre_byte_order.c | 110 pcre_study_data *study; in pcre_pattern_to_host_byte_order() local 157 study = (pcre_study_data *)extra_data->study_data; in pcre_pattern_to_host_byte_order() 158 study->size = swap_uint32(study->size); in pcre_pattern_to_host_byte_order() 159 study->flags = swap_uint32(study->flags); in pcre_pattern_to_host_byte_order() 160 study->minlength = swap_uint32(study->minlength); in pcre_pattern_to_host_byte_order()
|
D | pcre_study.c | 1423 pcre_study_data *study; in pcre_study() local 1537 study = (pcre_study_data *)((char *)extra + sizeof(PUBL(extra))); in pcre_study() 1539 extra->study_data = study; in pcre_study() 1541 study->size = sizeof(pcre_study_data); in pcre_study() 1542 study->flags = 0; in pcre_study() 1550 study->flags |= PCRE_STUDY_MAPPED; in pcre_study() 1551 memcpy(study->start_bits, start_bits, sizeof(start_bits)); in pcre_study() 1553 else memset(study->start_bits, 0, 32 * sizeof(pcre_uint8)); in pcre_study() 1574 study->flags |= PCRE_STUDY_MINLEN; in pcre_study() 1575 study->minlength = min; in pcre_study() [all …]
|
D | pcre_dfa_exec.c | 3196 const pcre_study_data *study = NULL; in pcre_dfa_exec() local 3247 study = (const pcre_study_data *)extra_data->study_data; in pcre_dfa_exec() 3403 if (!startline && study != NULL && in pcre_dfa_exec() 3404 (study->flags & PCRE_STUDY_MAPPED) != 0) in pcre_dfa_exec() 3405 start_bits = study->start_bits; in pcre_dfa_exec() 3553 if (study != NULL && (study->flags & PCRE_STUDY_MINLEN) != 0 && in pcre_dfa_exec() 3554 (pcre_uint32)(end_subject - current_subject) < study->minlength) in pcre_dfa_exec()
|
/external/pcre/dist/testdata/ |
D | testoutput12 | 12 JIT study was successful 21 JIT study was not successful 31 JIT study was not successful 40 JIT study was successful 169 JIT study was successful
|
D | testoutput21-32 | 7 No study data
|
D | testoutput21-16 | 7 No study data
|
D | testoutput14 | 375 No study data 381 No study data
|
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/test/ |
D | grammar.rb | 71 study 260 def study method in ANTLR3.Test.Grammar 282 study
|
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/ |
D | task.rb | 263 study 402 def study method 433 study
|
/external/ceres-solver/data/nist/ |
D | Misra1c.dat | 11 Description: These data are the result of a NIST study regarding
|
D | Misra1b.dat | 11 Description: These data are the result of a NIST study regarding
|
D | Misra1a.dat | 11 Description: These data are the result of a NIST study regarding
|
D | Roszman1.dat | 11 Description: These data are the result of a NIST study involving
|
D | Misra1d.dat | 11 Description: These data are the result of a NIST study regarding
|
D | Eckerle4.dat | 11 Description: These data are the result of a NIST study involving
|
D | Thurber.dat | 11 Description: These data are the result of a NIST study involving
|
D | Chwirut2.dat | 11 Description: These data are the result of a NIST study involving
|
D | Kirby2.dat | 11 Description: These data are the result of a NIST study involving
|
D | Bennett5.dat | 11 Description: These data are the result of a NIST study involving
|
D | Chwirut1.dat | 11 Description: These data are the result of a NIST study involving
|
D | Nelson.dat | 11 Description: These data are the result of a study involving
|
D | Hahn1.dat | 11 Description: These data are the result of a NIST study involving
|
/external/nanopb-c/ |
D | README.txt | 17 The easiest way to get started is to study the project in "examples/simple".
|
/external/pcre/dist/doc/ |
D | pcretest.txt | 211 -t Run each compile, study, and match many times with a timer, 212 and output the resulting times per compile, study, or match 221 not the compile or study phases. 323 /S study the pattern after compilation 524 pcre[16|32]_study() is made with all the JIT study options, requesting 1020 optional study data, each written as four bytes in big-endian order 1021 (most significant byte first). If there is no study data (either the 1024 compiled pattern. If there is additional study data, this (excluding 1036 No study data
|
123