Home
last modified time | relevance | path

Searched refs:alloc_func (Results 1 – 25 of 43) sorted by relevance

12

/external/libexif/libexif/
Dexif-mem.c7 ExifMemAllocFunc alloc_func; member
34 exif_mem_new (ExifMemAllocFunc alloc_func, ExifMemReallocFunc realloc_func, in exif_mem_new() argument
39 if (!alloc_func && !realloc_func) in exif_mem_new()
41 mem = alloc_func ? alloc_func (sizeof (ExifMem)) : in exif_mem_new()
46 mem->alloc_func = alloc_func; in exif_mem_new()
82 if (mem->alloc_func || mem->realloc_func) in exif_mem_alloc()
83 return mem->alloc_func ? mem->alloc_func (ds) : in exif_mem_alloc()
/external/opencv/cxcore/src/
Dcxalloc.cpp80 CV_IMPL void cvSetMemoryManager( CvAllocFunc alloc_func, CvFreeFunc free_func, void* userdata ) in cvSetMemoryManager() argument
86 if( (alloc_func == 0) ^ (free_func == 0) ) in cvSetMemoryManager()
89 p_cvAlloc = alloc_func ? alloc_func : icvDefaultAlloc; in cvSetMemoryManager()
/external/llvm/test/CodeGen/X86/
Dlocalescape.ll13 %a.i8 = call i8* @llvm.localrecover(i8* bitcast (void(i32)* @alloc_func to i8*), i8* %fp, i32 0)
17 %b.i8 = call i8* @llvm.localrecover(i8* bitcast (void(i32)* @alloc_func to i8*), i8* %fp, i32 1)
62 define void @alloc_func(i32 %n) {
77 ; X64-LABEL: alloc_func:
91 ; X86-LABEL: alloc_func:
107 call void @alloc_func(i32 3)
/external/freetype/src/gzip/
Dzlib.h63 typedef voidpf (*alloc_func) OF((voidpf opaque, uInt items, uInt size));
80 alloc_func zalloc; /* used to allocate the internal state */
Dftgzip.c300 zstream->zalloc = (alloc_func)ft_gzip_alloc; in ft_gzip_file_init()
723 stream.zalloc = (alloc_func)ft_gzip_alloc; in FT_Gzip_Uncompress()
/external/pdfium/core/include/fxcodec/
Dfx_codec_flate.h14 void* FPDFAPI_FlateInit(void* (*alloc_func)(void*, unsigned int, unsigned int),
/external/zlib/src/contrib/ada/
Dzlib-thin.ads115 type alloc_func is access function
328 Alloc : in alloc_func;
374 zalloc : alloc_func := null; -- used to allocate the internal state
Dzlib-thin.adb102 Alloc : in alloc_func;
/external/pdfium/third_party/zlib_v128/
Duncompr.c42 stream.zalloc = (alloc_func)0; in uncompress()
Dcompress.c42 stream.zalloc = (alloc_func)0; in compress2()
Dzlib.h149 typedef voidpf (*alloc_func) OF((voidpf opaque, uInt items, uInt size));
166 alloc_func zalloc; /* used to allocate the internal state */
Dzconf.h130 # define alloc_func z_alloc_func macro
/external/zlib/src/
Duncompr.c42 stream.zalloc = (alloc_func)0;
Dcompress.c42 stream.zalloc = (alloc_func)0;
Dzlib.h80 typedef voidpf (*alloc_func) OF((voidpf opaque, uInt items, uInt size));
97 alloc_func zalloc; /* used to allocate the internal state */
Dzconf.h130 # define alloc_func z_alloc_func macro
/external/opencv3/3rdparty/zlib/
Duncompr.c42 stream.zalloc = (alloc_func)0;
Dcompress.c42 stream.zalloc = (alloc_func)0;
Dzlib.h80 typedef voidpf (*alloc_func) OF((voidpf opaque, uInt items, uInt size));
97 alloc_func zalloc; /* used to allocate the internal state */
/external/zlib/src/contrib/pascal/
Dzlibpas.pas17 alloc_func = function(opaque: Pointer; items, size: Integer): Pointer; in paque()
40 zalloc: alloc_func; (* used to allocate the internal state *)
/external/curl/lib/
Dcontent_encoding.c177 z->zalloc = (alloc_func)zalloc_cb; in Curl_unencode_deflate_write()
287 z->zalloc = (alloc_func)zalloc_cb; in Curl_unencode_gzip_write()
/external/zlib/src/test/
Dexample.c72 static alloc_func zalloc = myalloc;
77 static alloc_func zalloc = (alloc_func)0;
/external/zlib/
Dzlib.h80 typedef voidpf (*alloc_func) OF((voidpf opaque, uInt items, uInt size));
97 alloc_func zalloc; /* used to allocate the internal state */
Dzconf.h130 # define alloc_func z_alloc_func macro
/external/pdfium/core/src/fxcodec/codec/
Dfx_codec_flate.cpp36 void* FPDFAPI_FlateInit(void* (*alloc_func)(void*, unsigned int, unsigned int), in FPDFAPI_FlateInit()
38 z_stream* p = (z_stream*)alloc_func(0, 1, sizeof(z_stream)); in FPDFAPI_FlateInit()
43 p->zalloc = alloc_func; in FPDFAPI_FlateInit()

12