Home
last modified time | relevance | path

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

123

/external/pcre/dist/
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()
Dpcre_byte_order.c110 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()
Dpcre_study.c1423 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 …]
Dpcre_dfa_exec.c3196 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/
Dtestoutput1212 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
Dtestoutput21-327 No study data
Dtestoutput21-167 No study data
Dtestoutput14375 No study data
381 No study data
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/test/
Dgrammar.rb71 study
260 def study method in ANTLR3.Test.Grammar
282 study
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
Dtask.rb263 study
402 def study method
433 study
/external/ceres-solver/data/nist/
DMisra1c.dat11 Description: These data are the result of a NIST study regarding
DMisra1b.dat11 Description: These data are the result of a NIST study regarding
DMisra1a.dat11 Description: These data are the result of a NIST study regarding
DRoszman1.dat11 Description: These data are the result of a NIST study involving
DMisra1d.dat11 Description: These data are the result of a NIST study regarding
DEckerle4.dat11 Description: These data are the result of a NIST study involving
DThurber.dat11 Description: These data are the result of a NIST study involving
DChwirut2.dat11 Description: These data are the result of a NIST study involving
DKirby2.dat11 Description: These data are the result of a NIST study involving
DBennett5.dat11 Description: These data are the result of a NIST study involving
DChwirut1.dat11 Description: These data are the result of a NIST study involving
DNelson.dat11 Description: These data are the result of a study involving
DHahn1.dat11 Description: These data are the result of a NIST study involving
/external/nanopb-c/
DREADME.txt17 The easiest way to get started is to study the project in "examples/simple".
/external/pcre/dist/doc/
Dpcretest.txt211 -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