HomeSort by relevance Sort by last modified time
    Searched refs:PUBL (Results 1 - 9 of 9) sorted by null

  /external/pcre/dist/
pcre_globals.c 70 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_malloc))(size_t) = malloc
    [all...]
pcre_maketables.c 62 part of the library, the store is obtained via PUBL(malloc)(), but when
84 yield = (unsigned char*)(PUBL(malloc))(tables_length);
pcre_get.c 462 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);
pcre_study.c     [all...]
pcreposix.c 247 (PUBL(free))(preg->re_pcre);
pcre_exec.c 354 newframe = (heapframe *)(PUBL(stack_malloc))(sizeof(heapframe));\
    [all...]
pcre_dfa_exec.c     [all...]
pcre_compile.c     [all...]
pcre_jit_compile.c 55 #define SLJIT_MALLOC(size) (PUBL(malloc))(size)
56 #define SLJIT_FREE(ptr) (PUBL(free))(ptr)
184 PUBL(jit_callback) callback;
    [all...]

Completed in 181 milliseconds