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

/barrelfish-master/lib/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.c469 stringlist = (pcre_uchar **)(PUBL(malloc))(size);
501 programs that can call its functions, but not free() or (PUBL(free))()
519 (PUBL(free))((void *)pointer);
569 substring = (pcre_uchar *)(PUBL(malloc))(IN_UCHARS(yield + 1));
648 programs that can call its functions, but not free() or (PUBL(free))()
666 (PUBL(free))((void *)pointer);
H A Dpcre_study.c1465 PUBL(extra) *extra = NULL;
1572 extra = (PUBL(extra) *)(PUBL(malloc))
1573 (sizeof(PUBL(extra)) + sizeof(pcre_study_data));
1580 study = (pcre_study_data *)((char *)extra + sizeof(PUBL(extra)));
1683 PUBL(free)(extra);
H A Dpcreposix.c248 (PUBL(free))(preg->re_pcre);
H A Dpcre_exec.c354 newframe = (heapframe *)(PUBL(stack_malloc))(sizeof(heapframe));\
1296 if (PUBL(callout) != NULL)
1298 PUBL(callout_block) cb;
1320 if ((rrc = (*PUBL(callout))(&cb)) > 0) RRETURN(MATCH_NOMATCH);
1706 if (PUBL(callout) != NULL)
1708 PUBL(callout_block) cb;
1730 if ((rrc = (*PUBL(callout))(&cb)) > 0) RRETURN(MATCH_NOMATCH);
1790 (int *)(PUBL(malloc))(new_recursive.saved_max * sizeof(int));
1816 (PUBL(free))(new_recursive.offset_save);
1834 (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 */
3056 if (PUBL(callout) != NULL)
3058 PUBL(callout_block) cb;
3078 if ((rrc = (*PUBL(callout))(&cb)) < 0) return rrc; /* Abandon */
H A Dpcre_compile.c934 newspace = (PUBL(malloc))(IN_UCHARS(newsize));
939 (PUBL(free))((void *)cd->start_workspace);
7210 named_group *newspace = (PUBL(malloc))
7222 (PUBL(free))((void *)cd->named_groups);
8288 if (PUBL(stack_guard) != NULL && PUBL(stack_guard)())
9363 re = (REAL_PCRE *)(PUBL(malloc))(size);
9430 (PUBL(free))((void *)cd->named_groups);
9510 (PUBL(free))((void *)cd->start_workspace);
9579 (PUBL(fre
[all...]

Completed in 116 milliseconds