Searched refs:study (Results 1 - 10 of 10) sorted by relevance

/macosx-10.10/pcre-7/pcre/
H A Dpcre_fullinfo.c75 const pcre_study_data *study = NULL; local
80 study = (const pcre_study_data *)extra_data->study_data;
84 re = _pcre_try_flipped(re, &internal_re, study, &internal_study);
86 if (study != NULL) study = &internal_study;
100 *((size_t *)where) = (study == NULL)? 0 : study->size;
122 (study != NULL && (study->flags & PCRE_STUDY_MAPPED) != 0)?
128 (study !
[all...]
H A Dpcre_try_flipped.c93 study points to study data, or NULL
95 internal_study points to a new study block
103 const pcre_study_data *study, pcre_study_data *internal_study)
127 if (study != NULL)
129 *internal_study = *study; /* To copy other fields */
130 internal_study->size = byteflip(study->size, sizeof(study->size));
131 internal_study->flags = byteflip(study->flags, sizeof(study
102 _pcre_try_flipped(const real_pcre *re, real_pcre *internal_re, const pcre_study_data *study, pcre_study_data *internal_study) argument
[all...]
H A Dpcre_study.c866 /* This function is handed a compiled expression that it must study to produce
888 pcre_study_data *study; local
946 /* Get a pcre_extra block and a pcre_study_data block. The study data is put in
962 study = (pcre_study_data *)((char *)extra + sizeof(pcre_extra));
964 extra->study_data = study;
966 study->size = sizeof(pcre_study_data);
967 study->flags = 0;
971 study->flags |= PCRE_STUDY_MAPPED;
972 memcpy(study->start_bits, start_bits, sizeof(start_bits));
977 study
[all...]
H A Dpcre_dfa_exec.c2692 const pcre_study_data *study = NULL; local
2712 /* We need to find the pointer to any study data before we test for byte
2724 study = (const pcre_study_data *)extra_data->study_data;
2737 study data too. */
2741 re = _pcre_try_flipped(re, &internal_re, study, &internal_study);
2743 if (study != NULL) study = &internal_study;
2872 if (!startline && study != NULL &&
2873 (study->flags & PCRE_STUDY_MAPPED) != 0)
2874 start_bits = study
[all...]
H A Dpcre_exec.c5201 const pcre_study_data *study; local
5224 study = NULL;
5237 study = (const pcre_study_data *)extra_data->study_data;
5256 study data too. */
5260 re = _pcre_try_flipped(re, &internal_re, study, &internal_study);
5262 if (study != NULL) study = &internal_study;
5452 if (!startline && study != NULL &&
5453 (study->flags & PCRE_STUDY_MAPPED) != 0)
5454 start_bits = study
[all...]
H A Dpcretest.c637 static void new_info(pcre *re, pcre_extra *study, int option, void *ptr) argument
640 if ((rc = pcre_fullinfo(re, study, option, ptr)) < 0)
1123 /* Now see if there is any following study data */
1147 else fprintf(outfile, "No study data\n");
1398 /* If /S was present, study the regexp to generate additional info to
1418 fprintf(outfile, "Failed to study: %s\n", error);
1424 fields in the regex data block and the study block. This is to make it
1621 /* Don't output study size; at present it is in any case a fixed
1675 the study length, in big-endian order. */
/macosx-10.10/swig-12/Lib/perl5/
H A Dperlkw.swg37 PERLBN(study);
/macosx-10.10/emacs-93/emacs/lisp/play/
H A Ddoctor.el497 ((doc$ maybe) you should study (doc$ something) \.)))
1138 sing sings sit sits sitting sold studied study
/macosx-10.10/vim-55/runtime/syntax/
H A Dperl.vim74 syn match perlStatementRegexp "\<\%(pos\|quotemeta\|split\|study\)\>"
/macosx-10.10/Heimdal-398.1.2/lib/hcrypto/libtommath/
H A Dtommath.tex218 However, cryptography is not the only field of study that can benefit from fast multiple precision integer routines.
271 package. As a case study the ``LibTomMath''\footnote{Available at \url{http://math.libtomcrypt.com}} package is used
464 LibTomMath was chosen as the case study of this text not only because the author of both projects is one and the same but
520 the case study of this text. Various source files from the LibTomMath project will be included within the text. However,

Completed in 270 milliseconds