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

/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/pcre-8.31/
H A Dpcre_fullinfo.c79 const pcre_study_data *study = NULL; local
84 study = (const pcre_study_data *)extra_data->study_data;
110 *((size_t *)where) = (study == NULL)? 0 : study->size;
144 (study != NULL && (study->flags & PCRE_STUDY_MAPPED) != 0)?
150 (study != NULL && (study->flags & PCRE_STUDY_MINLEN) != 0)?
151 (int)(study->minlength) : -1;
H A Dpcre_byte_order.c107 pcre_study_data *study; local
144 study = (pcre_study_data *)extra_data->study_data;
145 study->size = swap_uint32(study->size);
146 study->flags = swap_uint32(study->flags);
147 study->minlength = swap_uint32(study->minlength);
H A Dpcre_study.c1300 /* This function is handed a compiled expression that it must study to produce
1327 pcre_study_data *study; local
1412 pcre[16]_extra block and a pcre_study_data block. The study data is put in the
1434 study = (pcre_study_data *)((char *)extra + sizeof(PUBL(extra)));
1436 extra->study_data = study;
1438 study->size = sizeof(pcre_study_data);
1439 study->flags = 0;
1442 study data is written to a file, but set the flag only if any of the bits
1447 study->flags |= PCRE_STUDY_MAPPED;
1448 memcpy(study
[all...]
H A Dpcre_dfa_exec.c3150 const pcre_study_data *study = NULL; local
3191 /* Set up study, callout, and table data */
3200 study = (const pcre_study_data *)extra_data->study_data;
3347 if (!startline && study != NULL &&
3348 (study->flags & PCRE_STUDY_MAPPED) != 0)
3349 start_bits = study->start_bits;
3461 /* Or to a non-unique first char after study */
3503 if (study != NULL && (study->flags & PCRE_STUDY_MINLEN) != 0 &&
3504 (pcre_uint32)(end_subject - current_subject) < study
[all...]
H A Dpcre_exec.c6373 const pcre_study_data *study; local
6489 study = NULL;
6502 study = (const pcre_study_data *)extra_data->study_data;
6690 if (!startline && study != NULL &&
6691 (study->flags & PCRE_STUDY_MAPPED) != 0)
6692 start_bits = study->start_bits;
6801 /* Or to a non-unique first byte after study */
6841 if (study != NULL && (study->flags & PCRE_STUDY_MINLEN) != 0 &&
6842 (pcre_uint32)(end_subject - start_match) < study
[all...]
H A Dpcre_jit_compile.c6827 pcre_study_data *study; local
6841 study = extra->study_data;
6986 else if ((re->flags & PCRE_STARTLINE) == 0 && study != NULL && (study->flags & PCRE_STUDY_MAPPED) != 0)
6987 fast_forward_start_bits(common, (sljit_uw)study->start_bits, (re->options & PCRE_FIRSTLINE) != 0);
7066 if (mode == JIT_COMPILE && study != NULL && study->minlength > 1 && (re->options & PCRE_NO_START_OPTIMIZE) == 0)
7068 OP2(SLJIT_ADD, TMP1, 0, STR_PTR, 0, SLJIT_IMM, IN_UCHARS(study->minlength + 1));
7077 if (mode == JIT_COMPILE && study != NULL && study
[all...]
H A DRunTest.bat20 @rem Sheri P also added override tests for study and jit testing
H A Dpcretest.c693 /* JIT study options for -s+n and /S+n where '1' <= n <= '7'. */
1755 study study data
1763 new_info(pcre *re, pcre_extra *study, int option, void *ptr) argument
1769 rc = pcre16_fullinfo((pcre16 *)re, (pcre16_extra *)study, option, ptr);
1775 rc = pcre_fullinfo(re, study, option, ptr);
1830 regex data block and the study block. In 16-bit mode this also flips relevant
1849 /* Always flip the bytes in the main data block and study blocks. */
2678 /* Now see if there is any following study data. */
2705 else fprintf(outfile, "No study dat
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/pcre-8.31/
H A Dpcre_fullinfo.c79 const pcre_study_data *study = NULL; local
84 study = (const pcre_study_data *)extra_data->study_data;
110 *((size_t *)where) = (study == NULL)? 0 : study->size;
144 (study != NULL && (study->flags & PCRE_STUDY_MAPPED) != 0)?
150 (study != NULL && (study->flags & PCRE_STUDY_MINLEN) != 0)?
151 (int)(study->minlength) : -1;
H A Dpcre_byte_order.c107 pcre_study_data *study; local
144 study = (pcre_study_data *)extra_data->study_data;
145 study->size = swap_uint32(study->size);
146 study->flags = swap_uint32(study->flags);
147 study->minlength = swap_uint32(study->minlength);
H A Dpcre_study.c1300 /* This function is handed a compiled expression that it must study to produce
1327 pcre_study_data *study; local
1412 pcre[16]_extra block and a pcre_study_data block. The study data is put in the
1434 study = (pcre_study_data *)((char *)extra + sizeof(PUBL(extra)));
1436 extra->study_data = study;
1438 study->size = sizeof(pcre_study_data);
1439 study->flags = 0;
1442 study data is written to a file, but set the flag only if any of the bits
1447 study->flags |= PCRE_STUDY_MAPPED;
1448 memcpy(study
[all...]
H A Dpcre_dfa_exec.c3150 const pcre_study_data *study = NULL; local
3191 /* Set up study, callout, and table data */
3200 study = (const pcre_study_data *)extra_data->study_data;
3347 if (!startline && study != NULL &&
3348 (study->flags & PCRE_STUDY_MAPPED) != 0)
3349 start_bits = study->start_bits;
3461 /* Or to a non-unique first char after study */
3503 if (study != NULL && (study->flags & PCRE_STUDY_MINLEN) != 0 &&
3504 (pcre_uint32)(end_subject - current_subject) < study
[all...]
H A Dpcre_exec.c6373 const pcre_study_data *study; local
6489 study = NULL;
6502 study = (const pcre_study_data *)extra_data->study_data;
6690 if (!startline && study != NULL &&
6691 (study->flags & PCRE_STUDY_MAPPED) != 0)
6692 start_bits = study->start_bits;
6801 /* Or to a non-unique first byte after study */
6841 if (study != NULL && (study->flags & PCRE_STUDY_MINLEN) != 0 &&
6842 (pcre_uint32)(end_subject - start_match) < study
[all...]
H A Dpcre_jit_compile.c6827 pcre_study_data *study; local
6841 study = extra->study_data;
6986 else if ((re->flags & PCRE_STARTLINE) == 0 && study != NULL && (study->flags & PCRE_STUDY_MAPPED) != 0)
6987 fast_forward_start_bits(common, (sljit_uw)study->start_bits, (re->options & PCRE_FIRSTLINE) != 0);
7066 if (mode == JIT_COMPILE && study != NULL && study->minlength > 1 && (re->options & PCRE_NO_START_OPTIMIZE) == 0)
7068 OP2(SLJIT_ADD, TMP1, 0, STR_PTR, 0, SLJIT_IMM, IN_UCHARS(study->minlength + 1));
7077 if (mode == JIT_COMPILE && study != NULL && study
[all...]
H A DRunTest.bat20 @rem Sheri P also added override tests for study and jit testing
H A Dpcretest.c693 /* JIT study options for -s+n and /S+n where '1' <= n <= '7'. */
1755 study study data
1763 new_info(pcre *re, pcre_extra *study, int option, void *ptr) argument
1769 rc = pcre16_fullinfo((pcre16 *)re, (pcre16_extra *)study, option, ptr);
1775 rc = pcre_fullinfo(re, study, option, ptr);
1830 regex data block and the study block. In 16-bit mode this also flips relevant
1849 /* Always flip the bytes in the main data block and study blocks. */
2678 /* Now see if there is any following study data. */
2705 else fprintf(outfile, "No study dat
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/pcre-8.31/
H A Dpcre_fullinfo.c79 const pcre_study_data *study = NULL; local
84 study = (const pcre_study_data *)extra_data->study_data;
110 *((size_t *)where) = (study == NULL)? 0 : study->size;
144 (study != NULL && (study->flags & PCRE_STUDY_MAPPED) != 0)?
150 (study != NULL && (study->flags & PCRE_STUDY_MINLEN) != 0)?
151 (int)(study->minlength) : -1;
H A Dpcre_byte_order.c107 pcre_study_data *study; local
144 study = (pcre_study_data *)extra_data->study_data;
145 study->size = swap_uint32(study->size);
146 study->flags = swap_uint32(study->flags);
147 study->minlength = swap_uint32(study->minlength);
H A Dpcre_study.c1300 /* This function is handed a compiled expression that it must study to produce
1327 pcre_study_data *study; local
1412 pcre[16]_extra block and a pcre_study_data block. The study data is put in the
1434 study = (pcre_study_data *)((char *)extra + sizeof(PUBL(extra)));
1436 extra->study_data = study;
1438 study->size = sizeof(pcre_study_data);
1439 study->flags = 0;
1442 study data is written to a file, but set the flag only if any of the bits
1447 study->flags |= PCRE_STUDY_MAPPED;
1448 memcpy(study
[all...]
H A Dpcre_dfa_exec.c3150 const pcre_study_data *study = NULL; local
3191 /* Set up study, callout, and table data */
3200 study = (const pcre_study_data *)extra_data->study_data;
3347 if (!startline && study != NULL &&
3348 (study->flags & PCRE_STUDY_MAPPED) != 0)
3349 start_bits = study->start_bits;
3461 /* Or to a non-unique first char after study */
3503 if (study != NULL && (study->flags & PCRE_STUDY_MINLEN) != 0 &&
3504 (pcre_uint32)(end_subject - current_subject) < study
[all...]
H A Dpcre_exec.c6373 const pcre_study_data *study; local
6489 study = NULL;
6502 study = (const pcre_study_data *)extra_data->study_data;
6690 if (!startline && study != NULL &&
6691 (study->flags & PCRE_STUDY_MAPPED) != 0)
6692 start_bits = study->start_bits;
6801 /* Or to a non-unique first byte after study */
6841 if (study != NULL && (study->flags & PCRE_STUDY_MINLEN) != 0 &&
6842 (pcre_uint32)(end_subject - start_match) < study
[all...]
H A Dpcre_jit_compile.c6827 pcre_study_data *study; local
6841 study = extra->study_data;
6986 else if ((re->flags & PCRE_STARTLINE) == 0 && study != NULL && (study->flags & PCRE_STUDY_MAPPED) != 0)
6987 fast_forward_start_bits(common, (sljit_uw)study->start_bits, (re->options & PCRE_FIRSTLINE) != 0);
7066 if (mode == JIT_COMPILE && study != NULL && study->minlength > 1 && (re->options & PCRE_NO_START_OPTIMIZE) == 0)
7068 OP2(SLJIT_ADD, TMP1, 0, STR_PTR, 0, SLJIT_IMM, IN_UCHARS(study->minlength + 1));
7077 if (mode == JIT_COMPILE && study != NULL && study
[all...]
H A DRunTest.bat20 @rem Sheri P also added override tests for study and jit testing
H A Dpcretest.c693 /* JIT study options for -s+n and /S+n where '1' <= n <= '7'. */
1755 study study data
1763 new_info(pcre *re, pcre_extra *study, int option, void *ptr) argument
1769 rc = pcre16_fullinfo((pcre16 *)re, (pcre16_extra *)study, option, ptr);
1775 rc = pcre_fullinfo(re, study, option, ptr);
1830 regex data block and the study block. In 16-bit mode this also flips relevant
1849 /* Always flip the bytes in the main data block and study blocks. */
2678 /* Now see if there is any following study data. */
2705 else fprintf(outfile, "No study dat
[all...]

Completed in 275 milliseconds