Searched refs:free_func (Results 1 - 19 of 19) sorted by relevance

/xsrc/external/mit/libXfont/dist/src/stubs/
H A Dregfpefunc.c13 FreeFpeFunc free_func,
27 OVERRIDE_SYMBOL(RegisterFPEFunctions, name_func, init_func, free_func,
11 RegisterFPEFunctions(NameCheckFunc name_func,InitFpeFunc init_func,FreeFpeFunc free_func,ResetFpeFunc reset_func,OpenFontFunc open_func,CloseFontFunc close_func,ListFontsFunc list_func,StartLfwiFunc start_lfwi_func,NextLfwiFunc next_lfwi_func,WakeupFpeFunc wakeup_func,ClientDiedFunc client_died,LoadGlyphsFunc load_glyphs,StartLaFunc start_list_alias_func,NextLaFunc next_list_alias_func,SetPathFunc set_path_func) argument
/xsrc/external/mit/brotli/dist/c/enc/
H A Dmemory.c31 MemoryManager* m, brotli_alloc_func alloc_func, brotli_free_func free_func,
35 m->free_func = BrotliDefaultFreeFunc;
39 m->free_func = free_func;
59 m->free_func(m->opaque, p);
151 m->free_func(m->opaque, p);
161 m->free_func(m->opaque, m->pointers[PERM_ALLOCATED_OFFSET + i]);
30 BrotliInitMemoryManager(MemoryManager * m,brotli_alloc_func alloc_func,brotli_free_func free_func,void * opaque) argument
H A Dmemory.h28 brotli_free_func free_func; member in struct:MemoryManager
40 MemoryManager* m, brotli_alloc_func alloc_func, brotli_free_func free_func,
H A Dencode.c798 brotli_alloc_func alloc_func, brotli_free_func free_func, void* opaque) {
800 if (!alloc_func && !free_func) {
802 } else if (alloc_func && free_func) {
810 &state->memory_manager_, alloc_func, free_func, opaque);
836 brotli_free_func free_func = m->free_func; local in function:BrotliEncoderDestroyInstance
839 free_func(opaque, state);
797 BrotliEncoderCreateInstance(brotli_alloc_func alloc_func,brotli_free_func free_func,void * opaque) argument
/xsrc/external/mit/freetype/dist/src/gzip/
H A Dzlib.h64 typedef void (*free_func) OF((voidpf opaque, voidpf address)); typedef in typeref:typename:void (*)OF ((voidpf opaque,voidpf address))
81 free_func zfree; /* used to free the internal state */
H A Dftgzip.c308 zstream->zfree = (free_func) ft_gzip_free;
745 stream.zfree = (free_func) ft_gzip_free;
/xsrc/external/mit/brotli/dist/c/dec/
H A Dstate.h245 brotli_free_func free_func; member in struct:BrotliDecoderStateStruct
345 brotli_alloc_func alloc_func, brotli_free_func free_func, void* opaque);
357 S->free_func(S->memory_manager_opaque, X); \
H A Dstate.c19 brotli_alloc_func alloc_func, brotli_free_func free_func, void* opaque) {
22 s->free_func = BrotliDefaultFreeFunc;
26 s->free_func = free_func;
18 BrotliDecoderStateInit(BrotliDecoderState * s,brotli_alloc_func alloc_func,brotli_free_func free_func,void * opaque) argument
H A Ddecode.c78 brotli_alloc_func alloc_func, brotli_free_func free_func, void* opaque) {
80 if (!alloc_func && !free_func) {
82 } else if (alloc_func && free_func) {
89 if (!BrotliDecoderStateInit(state, alloc_func, free_func, opaque)) {
91 if (!alloc_func && !free_func) {
93 } else if (alloc_func && free_func) {
94 free_func(opaque, state);
106 brotli_free_func free_func = state->free_func; local in function:BrotliDecoderDestroyInstance
109 free_func(opaqu
77 BrotliDecoderCreateInstance(brotli_alloc_func alloc_func,brotli_free_func free_func,void * opaque) argument
[all...]
/xsrc/external/mit/xorgproto/dist/include/X11/fonts/
H A Dfontproto.h33 FreeFpeFunc free_func,
/xsrc/external/mit/brotli/dist/c/include/brotli/
H A Dencode.h251 * @p alloc_func and @p free_func @b MUST be both zero or both non-zero. In the
253 * passed to @p alloc_func and @p free_func when they are called. @p free_func
257 * @param free_func custom memory free function
263 brotli_alloc_func alloc_func, brotli_free_func free_func, void* opaque);
H A Ddecode.h164 * @p alloc_func and @p free_func @b MUST be both zero or both non-zero. In the
166 * passed to @p alloc_func and @p free_func when they are called. @p free_func
170 * @param free_func custom memory free function
176 brotli_alloc_func alloc_func, brotli_free_func free_func, void* opaque);
/xsrc/external/mit/xorg-server.old/dist/include/
H A Ddixfont.h162 FreeFpeFunc free_func,
/xsrc/external/mit/freetype/dist/src/bzip2/
H A Dftbzip2.c61 typedef void (* free_func)(void*, void*); typedef in typeref:typename:void (*)(void *,void *)
171 bzstream->bzfree = (free_func) ft_bzip2_free;
/xsrc/external/mit/xorg-server.old/dist/dix/
H A Ddixfonts.c1950 FreeFpeFunc free_func,
1983 fpe_functions[num_fpe_types].free_fpe = free_func;
1948 RegisterFPEFunctions(NameCheckFunc name_func,InitFpeFunc init_func,FreeFpeFunc free_func,ResetFpeFunc reset_func,OpenFontFunc open_func,CloseFontFunc close_func,ListFontsFunc list_func,StartLfwiFunc start_lfwi_func,NextLfwiFunc next_lfwi_func,WakeupFpeFunc wakeup_func,ClientDiedFunc client_died,LoadGlyphsFunc load_glyphs,StartLaFunc start_list_alias_func,NextLaFunc next_list_alias_func,SetPathFunc set_path_func) argument
/xsrc/external/mit/MesaLib.old/dist/src/imgui/
H A Dimgui.h680 IMGUI_API void SetAllocatorFunctions(void* (*alloc_func)(size_t sz, void* user_data), void (*free_func)(void* ptr, void* user_data), void* user_data = NULL);
H A Dimgui.cpp3014 void ImGui::SetAllocatorFunctions(void* (*alloc_func)(size_t sz, void* user_data), void (*free_func)(void* ptr, void* user_data), void* user_data)
3017 GImAllocatorFreeFunc = free_func;
/xsrc/external/mit/MesaLib/dist/src/imgui/
H A Dimgui.h680 IMGUI_API void SetAllocatorFunctions(void* (*alloc_func)(size_t sz, void* user_data), void (*free_func)(void* ptr, void* user_data), void* user_data = NULL);
H A Dimgui.cpp3014 void ImGui::SetAllocatorFunctions(void* (*alloc_func)(size_t sz, void* user_data), void (*free_func)(void* ptr, void* user_data), void* user_data)
3017 GImAllocatorFreeFunc = free_func;

Completed in 66 milliseconds