/third_party/node/deps/v8/third_party/zlib/google/ |
H A D | compression_utils_portable.cc | 67 void (*free_fn)(void*)) { in GzipCompressHelper() 69 Z_DEFAULT_COMPRESSION, malloc_fn, free_fn); in GzipCompressHelper() 86 void (*free_fn)(void*)) { in CompressHelper() 105 void (*free_fn)(void*); in CompressHelper() 106 } malloc_free = {malloc_fn, free_fn}; in CompressHelper() 109 if (!free_fn) in CompressHelper() 117 return reinterpret_cast<MallocFreeFunctions*>(opaque)->free_fn(address); in CompressHelper() 62 GzipCompressHelper(Bytef* dest, uLongf* dest_length, const Bytef* source, uLong source_length, void* (*malloc_fn)(size_t), void (*free_fn)(void*)) GzipCompressHelper() argument 79 CompressHelper(WrapperType wrapper_type, Bytef* dest, uLongf* dest_length, const Bytef* source, uLong source_length, int compression_level, void* (*malloc_fn)(size_t), void (*free_fn)(void*)) CompressHelper() argument
|
H A D | compression_utils_portable.h | 39 void (*free_fn)(void*)); 48 void (*free_fn)(void*));
|
H A D | compression_utils.cc | 21 void (*free_fn)(void*)) { in GzipCompress() 29 static_cast<uLongf>(input.size()), malloc_fn, free_fn) != Z_OK) { in GzipCompress() 16 GzipCompress(base::span<const char> input, char* output_buffer, size_t output_buffer_size, size_t* compressed_size, void* (*malloc_fn)(size_t), void (*free_fn)(void*)) GzipCompress() argument
|
H A D | compression_utils.h | 18 // |malloc_fn| and |free_fn| are pointers to malloc() and free()-like functions, 26 void (*free_fn)(void*));
|
/third_party/node/deps/zlib/google/ |
H A D | compression_utils_portable.cc | 67 void (*free_fn)(void*)) { in GzipCompressHelper() 69 Z_DEFAULT_COMPRESSION, malloc_fn, free_fn); in GzipCompressHelper() 86 void (*free_fn)(void*)) { in CompressHelper() 105 void (*free_fn)(void*); in CompressHelper() 106 } malloc_free = {malloc_fn, free_fn}; in CompressHelper() 109 if (!free_fn) in CompressHelper() 117 return reinterpret_cast<MallocFreeFunctions*>(opaque)->free_fn(address); in CompressHelper() 62 GzipCompressHelper(Bytef* dest, uLongf* dest_length, const Bytef* source, uLong source_length, void* (*malloc_fn)(size_t), void (*free_fn)(void*)) GzipCompressHelper() argument 79 CompressHelper(WrapperType wrapper_type, Bytef* dest, uLongf* dest_length, const Bytef* source, uLong source_length, int compression_level, void* (*malloc_fn)(size_t), void (*free_fn)(void*)) CompressHelper() argument
|
H A D | compression_utils_portable.h | 39 void (*free_fn)(void*)); 48 void (*free_fn)(void*));
|
H A D | compression_utils.cc | 20 void (*free_fn)(void*)) { in GzipCompress() 28 static_cast<uLongf>(input.size()), malloc_fn, free_fn) != Z_OK) { in GzipCompress() 15 GzipCompress(base::span<const char> input, char* output_buffer, size_t output_buffer_size, size_t* compressed_size, void* (*malloc_fn)(size_t), void (*free_fn)(void*)) GzipCompress() argument
|
H A D | compression_utils.h | 18 // |malloc_fn| and |free_fn| are pointers to malloc() and free()-like functions, 26 void (*free_fn)(void*));
|
/third_party/skia/third_party/externals/zlib/google/ |
H A D | compression_utils_portable.cc | 67 void (*free_fn)(void*)) { in GzipCompressHelper() 69 Z_DEFAULT_COMPRESSION, malloc_fn, free_fn); in GzipCompressHelper() 86 void (*free_fn)(void*)) { in CompressHelper() 105 void (*free_fn)(void*); in CompressHelper() 106 } malloc_free = {malloc_fn, free_fn}; in CompressHelper() 109 if (!free_fn) in CompressHelper() 117 return reinterpret_cast<MallocFreeFunctions*>(opaque)->free_fn(address); in CompressHelper() 62 GzipCompressHelper(Bytef* dest, uLongf* dest_length, const Bytef* source, uLong source_length, void* (*malloc_fn)(size_t), void (*free_fn)(void*)) GzipCompressHelper() argument 79 CompressHelper(WrapperType wrapper_type, Bytef* dest, uLongf* dest_length, const Bytef* source, uLong source_length, int compression_level, void* (*malloc_fn)(size_t), void (*free_fn)(void*)) CompressHelper() argument
|
H A D | compression_utils_portable.h | 39 void (*free_fn)(void*)); 48 void (*free_fn)(void*));
|
H A D | compression_utils.cc | 21 void (*free_fn)(void*)) { in GzipCompress() 29 static_cast<uLongf>(input.size()), malloc_fn, free_fn) != Z_OK) { in GzipCompress() 16 GzipCompress(base::span<const char> input, char* output_buffer, size_t output_buffer_size, size_t* compressed_size, void* (*malloc_fn)(size_t), void (*free_fn)(void*)) GzipCompress() argument
|
H A D | compression_utils.h | 18 // |malloc_fn| and |free_fn| are pointers to malloc() and free()-like functions, 26 void (*free_fn)(void*));
|
/third_party/skia/third_party/externals/libpng/ |
H A D | pngmem.c | 238 if (png_ptr->free_fn != NULL) in png_free() 239 png_ptr->free_fn(png_constcast(png_structrp,png_ptr), ptr); in png_free() 261 malloc_fn, png_free_ptr free_fn) in png_set_mem_fn() 267 png_ptr->free_fn = free_fn; in png_set_mem_fn() 260 png_set_mem_fn(png_structrp png_ptr, png_voidp mem_ptr, png_malloc_ptr malloc_fn, png_free_ptr free_fn) png_set_mem_fn() argument
|
/third_party/node/deps/openssl/openssl/crypto/ |
H A D | mem.c | 59 CRYPTO_free_fn free_fn) in CRYPTO_set_mem_functions() 67 if (free_fn != NULL) in CRYPTO_set_mem_functions() 68 free_impl = free_fn; in CRYPTO_set_mem_functions() 74 CRYPTO_free_fn *free_fn) in CRYPTO_get_mem_functions() 80 if (free_fn != NULL) in CRYPTO_get_mem_functions() 81 *free_fn = free_impl; in CRYPTO_get_mem_functions() 57 CRYPTO_set_mem_functions(CRYPTO_malloc_fn malloc_fn, CRYPTO_realloc_fn realloc_fn, CRYPTO_free_fn free_fn) CRYPTO_set_mem_functions() argument 72 CRYPTO_get_mem_functions(CRYPTO_malloc_fn *malloc_fn, CRYPTO_realloc_fn *realloc_fn, CRYPTO_free_fn *free_fn) CRYPTO_get_mem_functions() argument
|
/third_party/openssl/crypto/ |
H A D | mem.c | 59 CRYPTO_free_fn free_fn) in CRYPTO_set_mem_functions() 67 if (free_fn != NULL) in CRYPTO_set_mem_functions() 68 free_impl = free_fn; in CRYPTO_set_mem_functions() 74 CRYPTO_free_fn *free_fn) in CRYPTO_get_mem_functions() 80 if (free_fn != NULL) in CRYPTO_get_mem_functions() 81 *free_fn = free_impl; in CRYPTO_get_mem_functions() 57 CRYPTO_set_mem_functions(CRYPTO_malloc_fn malloc_fn, CRYPTO_realloc_fn realloc_fn, CRYPTO_free_fn free_fn) CRYPTO_set_mem_functions() argument 72 CRYPTO_get_mem_functions(CRYPTO_malloc_fn *malloc_fn, CRYPTO_realloc_fn *realloc_fn, CRYPTO_free_fn *free_fn) CRYPTO_get_mem_functions() argument
|
/third_party/node/deps/openssl/openssl/crypto/x509/ |
H A D | x509_meth.c | 61 void (*free_fn) (X509_LOOKUP *ctx)) in X509_LOOKUP_meth_set_free() 63 method->free = free_fn; in X509_LOOKUP_meth_set_free()
|
/third_party/openssl/crypto/x509/ |
H A D | x509_meth.c | 61 void (*free_fn) (X509_LOOKUP *ctx)) in X509_LOOKUP_meth_set_free() 63 method->free = free_fn; in X509_LOOKUP_meth_set_free()
|
/vendor/hisilicon/hispark_pegasus/demo/coap_demo/ |
H A D | cjson_init.c | 34 hooks.free_fn = CJsonFree; in CJsonInit()
|
/vendor/hisilicon/hispark_pegasus/demo/iottencent_demo/ |
H A D | cjson_init.c | 34 hooks.free_fn = cJsonFree; in cJsonInit()
|
/vendor/hisilicon/hispark_pegasus/demo/mqtt_demo/ |
H A D | cjson_init.c | 34 hooks.free_fn = cJsonFree; in cJsonInit()
|
/vendor/hisilicon/hispark_pegasus/demo/oc_demo/ |
H A D | cjson_init.c | 34 hooks.free_fn = CJsonFree; in CJsonInit()
|
/device/soc/hisilicon/common/platform/wifi/hi3881v100/driver/oal/ |
H A D | oal_scatterlist.h | 74 void __sg_free_table(struct sg_table *table, unsigned int max_ents, sg_free_fn *free_fn) in __sg_free_table() argument 107 free_fn(sgl, alloc_size); in __sg_free_table()
|
/device/soc/rockchip/common/kernel/drivers/net/wireless/rockchip_wlan/rkwifi/bcmdhd_wifi6/include/ |
H A D | bcmiov.h | 271 bcm_iov_free_t free_fn; member 297 int bcm_iov_free_parse_context(bcm_iov_parse_context_t **ctx, bcm_iov_free_t free_fn);
|
/third_party/node/deps/openssl/openssl/include/openssl/ |
H A D | engine.h | 744 dyn_MEM_free_fn free_fn; member 803 fns->mem_fns.free_fn); \
|
/third_party/openssl/include/openssl/ |
H A D | engine.h | 744 dyn_MEM_free_fn free_fn; member 803 fns->mem_fns.free_fn); \
|