Searched refs:PUBL (Results 1 - 8 of 8) sorted by relevance

/forgerock/web-agents-v4/pcre/
H A Dpcre_globals.c70 PCRE_EXP_DATA_DEFN void *(*PUBL(malloc))(size_t) = LocalPcreMalloc;
71 PCRE_EXP_DATA_DEFN void (*PUBL(free))(void *) = LocalPcreFree;
72 PCRE_EXP_DATA_DEFN void *(*PUBL(stack_malloc))(size_t) = LocalPcreMalloc;
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_mallo
[all...]
H A Dpcre_maketables.c62 part of the library, the store is obtained via PUBL(malloc)(), but when
84 yield = (unsigned char*)(PUBL(malloc))(tables_length);
H A Dpcre_get.c462 stringlist = (pcre_uchar **)(PUBL(malloc))(size);
494 programs that can call its functions, but not free() or (PUBL(free))()
512 (PUBL(free))((void *)pointer);
562 substring = (pcre_uchar *)(PUBL(malloc))(IN_UCHARS(yield + 1));
641 programs that can call its functions, but not free() or (PUBL(free))()
659 (PUBL(free))((void *)pointer);
H A Dpcre_study.c1422 PUBL(extra) *extra = NULL;
1529 extra = (PUBL(extra) *)(PUBL(malloc))
1530 (sizeof(PUBL(extra)) + sizeof(pcre_study_data));
1537 study = (pcre_study_data *)((char *)extra + sizeof(PUBL(extra)));
1640 PUBL(free)(extra);
H A Dpcre_exec.c354 newframe = (heapframe *)(PUBL(stack_malloc))(sizeof(heapframe));\
1308 if (PUBL(callout) != NULL)
1310 PUBL(callout_block) cb;
1332 if ((rrc = (*PUBL(callout))(&cb)) > 0) RRETURN(MATCH_NOMATCH);
1703 if (PUBL(callout) != NULL)
1705 PUBL(callout_block) cb;
1727 if ((rrc = (*PUBL(callout))(&cb)) > 0) RRETURN(MATCH_NOMATCH);
1787 (int *)(PUBL(malloc))(new_recursive.saved_max * sizeof(int));
1813 (PUBL(free))(new_recursive.offset_save);
1837 (PUBL(fre
[all...]
H A Dpcre_dfa_exec.c2702 if (PUBL(callout) != NULL)
2704 PUBL(callout_block) cb;
2724 if ((rrc = (*PUBL(callout))(&cb)) < 0) return rrc; /* Abandon */
3055 if (PUBL(callout) != NULL)
3057 PUBL(callout_block) cb;
3077 if ((rrc = (*PUBL(callout))(&cb)) < 0) return rrc; /* Abandon */
H A Dpcre_compile.c925 newspace = (PUBL(malloc))(IN_UCHARS(newsize));
930 (PUBL(free))((void *)cd->start_workspace);
7026 named_group *newspace = (PUBL(malloc))
7038 (PUBL(free))((void *)cd->named_groups);
8064 if (PUBL(stack_guard) != NULL && PUBL(stack_guard)())
9141 re = (REAL_PCRE *)(PUBL(malloc))(size);
9207 (PUBL(free))((void *)cd->named_groups);
9277 (PUBL(free))((void *)cd->start_workspace);
9346 (PUBL(fre
[all...]
H A Dpcre_jit_compile.c55 #define SLJIT_MALLOC(size) (PUBL(malloc))(size)
56 #define SLJIT_FREE(ptr) (PUBL(free))(ptr)
184 PUBL(jit_callback) callback;
6307 static int SLJIT_CALL do_callout(struct jit_arguments* arguments, PUBL(callout_block) *callout_block, pcre_uchar **jit_ovector)
6314 if (PUBL(callout) == NULL)
6348 return (*PUBL(callout))(callout_block);
6353 (((int)sizeof(PUBL(callout_block)) + 7) & ~7)
6356 (-CALLOUT_ARG_SIZE + SLJIT_OFFSETOF(PUBL(callout_block), arg))
9732 PRIV(jit_compile)(const REAL_PCRE *re, PUBL(extra) *extra, int mode)
10381 PRIV(jit_exec)(const PUBL(extr
[all...]

Completed in 91 milliseconds