Searched refs:PUBL (Results 1 – 9 of 9) sorted by relevance
/PHP-5.4/ext/pcre/pcrelib/ |
H A D | pcre_globals.c | 70 PCRE_EXP_DATA_DEFN void *(*PUBL(malloc))(size_t) = LocalPcreMalloc; 71 PCRE_EXP_DATA_DEFN void (*PUBL(free))(void *) = LocalPcreFree; 73 PCRE_EXP_DATA_DEFN void (*PUBL(stack_free))(void *) = LocalPcreFree; 74 PCRE_EXP_DATA_DEFN int (*PUBL(callout))(PUBL(callout_block) *) = NULL; 75 PCRE_EXP_DATA_DEFN int (*PUBL(stack_guard))(void) = NULL; 78 PCRE_EXP_DATA_DEFN void *(*PUBL(malloc))(size_t) = malloc; 79 PCRE_EXP_DATA_DEFN void (*PUBL(free))(void *) = free; 80 PCRE_EXP_DATA_DEFN void *(*PUBL(stack_malloc))(size_t) = malloc; 81 PCRE_EXP_DATA_DEFN void (*PUBL(stack_free))(void *) = free; 82 PCRE_EXP_DATA_DEFN int (*PUBL(callout))(PUBL(callout_block) *) = NULL; [all …]
|
H A D | pcre_get.c | 462 stringlist = (pcre_uchar **)(PUBL(malloc))(size); in pcre_get_substring_list() 512 (PUBL(free))((void *)pointer); in pcre_free_substring_list() 562 substring = (pcre_uchar *)(PUBL(malloc))(IN_UCHARS(yield + 1)); in pcre_get_substring() 659 (PUBL(free))((void *)pointer); in pcre_free_substring()
|
H A D | pcre_maketables.c | 84 yield = (unsigned char*)(PUBL(malloc))(tables_length); in pcre_maketables()
|
H A D | pcre_study.c | 1458 PUBL(extra) *extra = NULL; in pcre_study() 1565 extra = (PUBL(extra) *)(PUBL(malloc)) in pcre_study() 1566 (sizeof(PUBL(extra)) + sizeof(pcre_study_data)); in pcre_study() 1573 study = (pcre_study_data *)((char *)extra + sizeof(PUBL(extra))); in pcre_study() 1676 PUBL(free)(extra); in pcre_free_study()
|
H A D | pcre_internal.h | 2615 #ifndef PUBL 2616 #define PUBL(name) pcre_##name macro 2622 #ifndef PUBL 2623 #define PUBL(name) pcre16_##name macro 2629 #ifndef PUBL 2630 #define PUBL(name) pcre32_##name macro 2746 PUBL(extra) *, int); 2747 extern int PRIV(jit_exec)(const PUBL(extra) *,
|
H A D | pcreposix.c | 247 (PUBL(free))(preg->re_pcre); in regfree()
|
H A D | pcre_exec.c | 1296 if (PUBL(callout) != NULL) in match() 1298 PUBL(callout_block) cb; in match() 1706 if (PUBL(callout) != NULL) in match() 1708 PUBL(callout_block) cb; in match() 1816 (PUBL(free))(new_recursive.offset_save); in match() 1834 (PUBL(free))(new_recursive.offset_save); in match() 1844 (PUBL(free))(new_recursive.offset_save); in match() 1856 (PUBL(free))(new_recursive.offset_save); in match() 6315 (PUBL(stack_free))(oldframe); in release_match_heapframes() 7068 (PUBL(free))(md->offset_vector); in pcre_exec() [all …]
|
H A D | pcre_compile.c | 921 newspace = (PUBL(malloc))(IN_UCHARS(newsize)); in expand_workspace() 926 (PUBL(free))((void *)cd->start_workspace); in expand_workspace() 7094 named_group *newspace = (PUBL(malloc)) in compile_branch() 7106 (PUBL(free))((void *)cd->named_groups); in compile_branch() 8143 if (PUBL(stack_guard) != NULL && PUBL(stack_guard)()) in compile_regex() 9217 re = (REAL_PCRE *)(PUBL(malloc))(size); in pcre_compile2() 9284 (PUBL(free))((void *)cd->named_groups); in pcre_compile2() 9354 (PUBL(free))((void *)cd->start_workspace); in pcre_compile2() 9423 (PUBL(free))(re); in pcre_compile2() 9564 (PUBL(free))(re); in pcre_compile2()
|
H A D | pcre_jit_compile.c | 55 #define SLJIT_MALLOC(size, allocator_data) (PUBL(malloc))(size) 56 #define SLJIT_FREE(ptr, allocator_data) (PUBL(free))(ptr) 184 PUBL(jit_callback) callback; 6322 static int SLJIT_CALL do_callout(struct jit_arguments *arguments, PUBL(callout_block) *callout_bloc… in do_callout() 6329 if (PUBL(callout) == NULL) in do_callout() 6363 return (*PUBL(callout))(callout_block); in do_callout() 6368 (((int)sizeof(PUBL(callout_block)) + 7) & ~7) 6371 (-CALLOUT_ARG_SIZE + SLJIT_OFFSETOF(PUBL(callout_block), arg)) 9750 PRIV(jit_compile)(const REAL_PCRE *re, PUBL(extra) *extra, int mode) in PRIV() 10368 PRIV(jit_exec)(const PUBL(extra) *extra_data, const pcre_uchar *subject, in PRIV() [all …]
|
Completed in 140 milliseconds