Searched refs:allocator (Results 76 - 100 of 251) sorted by relevance

1234567891011

/freebsd-11-stable/contrib/xz/src/liblzma/delta/
H A Ddelta_encoder.c52 delta_encode(void *coder_ptr, const lzma_allocator *allocator, argument
77 ret = coder->next.code(coder->next.coder, allocator,
89 delta_encoder_update(void *coder_ptr, const lzma_allocator *allocator, argument
99 &coder->next, allocator, reversed_filters + 1);
104 lzma_delta_encoder_init(lzma_next_coder *next, const lzma_allocator *allocator, argument
109 return lzma_delta_coder_init(next, allocator, filters);
/freebsd-11-stable/contrib/xz/src/liblzma/simple/
H A Dx86.c127 x86_coder_init(lzma_next_coder *next, const lzma_allocator *allocator, argument
130 const lzma_ret ret = lzma_simple_coder_init(next, allocator, filters,
146 const lzma_allocator *allocator,
149 return x86_coder_init(next, allocator, filters, true);
155 const lzma_allocator *allocator,
158 return x86_coder_init(next, allocator, filters, false);
145 lzma_simple_x86_encoder_init(lzma_next_coder *next, const lzma_allocator *allocator, const lzma_filter_info *filters) argument
154 lzma_simple_x86_decoder_init(lzma_next_coder *next, const lzma_allocator *allocator, const lzma_filter_info *filters) argument
H A Dsimple_private.h67 const lzma_allocator *allocator,
/freebsd-11-stable/contrib/apr/memory/unix/
H A Dapr_pools.c81 * XXX: This is not optimal when using --enable-allocator-uses-mmap on
163 APR_DECLARE(apr_status_t) apr_allocator_create(apr_allocator_t **allocator)
167 *allocator = NULL;
175 *allocator = new_allocator;
180 APR_DECLARE(void) apr_allocator_destroy(apr_allocator_t *allocator) argument
186 ref = &allocator->free[index];
198 free(allocator);
202 APR_DECLARE(void) apr_allocator_mutex_set(apr_allocator_t *allocator, argument
205 allocator->mutex = mutex;
209 apr_allocator_t *allocator)
208 apr_allocator_mutex_get( apr_allocator_t *allocator) argument
215 apr_allocator_owner_set(apr_allocator_t *allocator, apr_pool_t *pool) argument
221 apr_allocator_owner_get(apr_allocator_t *allocator) argument
226 apr_allocator_max_free_set(apr_allocator_t *allocator, apr_size_t in_size) argument
280 allocator_alloc(apr_allocator_t *allocator, apr_size_t in_size) argument
435 allocator_free(apr_allocator_t *allocator, apr_memnode_t *node) argument
512 apr_allocator_alloc(apr_allocator_t *allocator, apr_size_t size) argument
518 apr_allocator_free(apr_allocator_t *allocator, apr_memnode_t *node) argument
584 apr_allocator_t *allocator; member in struct:apr_pool_t
984 apr_allocator_t *allocator; local
[all...]
/freebsd-11-stable/contrib/xz/src/liblzma/api/lzma/
H A Dindex_hash.h40 lzma_index_hash *index_hash, const lzma_allocator *allocator)
48 lzma_index_hash *index_hash, const lzma_allocator *allocator)
H A Dfilter.h121 const lzma_allocator *allocator) lzma_nothrow;
237 * \param allocator lzma_allocator for custom allocator functions.
260 const lzma_filter *filters, const lzma_allocator *allocator,
270 * \param allocator lzma_allocator for custom allocator functions.
284 const lzma_filter *filters, const lzma_allocator *allocator,
348 * \param allocator Custom memory allocator used to allocate the
361 lzma_filter *filter, const lzma_allocator *allocator,
[all...]
H A Dindex.h306 extern LZMA_API(lzma_index *) lzma_index_init(const lzma_allocator *allocator)
316 lzma_index *i, const lzma_allocator *allocator) lzma_nothrow;
323 * \param allocator Pointer to lzma_allocator, or NULL to
344 lzma_index *i, const lzma_allocator *allocator,
558 * \param allocator Custom memory allocator; can be NULL to use
568 const lzma_allocator *allocator)
578 const lzma_index *i, const lzma_allocator *allocator)
649 * \note This function doesn't take allocator argument since all
669 * \param allocator Pointe
[all...]
/freebsd-11-stable/contrib/xz/src/liblzma/common/
H A Doutqueue.c57 lzma_outq_init(lzma_outq *outq, const lzma_allocator *allocator, argument
70 lzma_outq_end(outq, allocator);
78 allocator);
80 allocator);
83 lzma_outq_end(outq, allocator);
101 lzma_outq_end(lzma_outq *outq, const lzma_allocator *allocator) argument
103 lzma_free(outq->bufs, allocator);
106 lzma_free(outq->bufs_mem, allocator);
H A Doutqueue.h78 /// \param allocator Pointer to allocator or NULL
91 lzma_outq *outq, const lzma_allocator *allocator,
96 extern void lzma_outq_end(lzma_outq *outq, const lzma_allocator *allocator);
H A Dstream_decoder.c87 stream_decoder_reset(lzma_stream_coder *coder, const lzma_allocator *allocator) argument
90 coder->index_hash = lzma_index_hash_init(coder->index_hash, allocator);
103 stream_decode(void *coder_ptr, const lzma_allocator *allocator, argument
202 allocator, coder->buffer));
231 allocator,
239 lzma_free(filters[i].options, allocator);
255 coder->block_decoder.coder, allocator,
367 return_if_error(stream_decoder_reset(coder, allocator));
380 stream_decoder_end(void *coder_ptr, const lzma_allocator *allocator) argument
383 lzma_next_end(&coder->block_decoder, allocator);
419 lzma_stream_decoder_init( lzma_next_coder *next, const lzma_allocator *allocator, uint64_t memlimit, uint32_t flags) argument
[all...]
H A Dfilter_decoder.c39 void **options, const lzma_allocator *allocator,
140 lzma_raw_decoder_init(lzma_next_coder *next, const lzma_allocator *allocator, argument
143 return lzma_raw_coder_init(next, allocator,
169 lzma_properties_decode(lzma_filter *filter, const lzma_allocator *allocator,
183 &filter->options, allocator, props, props_size);
H A Dstream_encoder_mt.c71 /// The allocator is set by the main thread. Since a copy of the
73 /// allocator before calling lzma_end().
74 const lzma_allocator *allocator; member in struct:worker_thread_s
228 thr->allocator, &thr->block_options);
278 thr->block_encoder.coder, thr->allocator,
413 lzma_next_end(&thr->block_encoder, thr->allocator);
414 lzma_free(thr->in, thr->allocator);
450 threads_end(lzma_stream_coder *coder, const lzma_allocator *allocator) argument
465 lzma_free(coder->threads, allocator);
473 const lzma_allocator *allocator)
472 initialize_new_thread(lzma_stream_coder *coder, const lzma_allocator *allocator) argument
515 get_thread(lzma_stream_coder *coder, const lzma_allocator *allocator) argument
553 stream_encode_in(lzma_stream_coder *coder, const lzma_allocator *allocator, const uint8_t *restrict in, size_t *restrict in_pos, size_t in_size, lzma_action action) argument
667 stream_encode_mt(void *coder_ptr, const lzma_allocator *allocator, const uint8_t *restrict in, size_t *restrict in_pos, size_t in_size, uint8_t *restrict out, size_t *restrict out_pos, size_t out_size, lzma_action action) argument
841 stream_encoder_mt_end(void *coder_ptr, const lzma_allocator *allocator) argument
940 stream_encoder_mt_init(lzma_next_coder *next, const lzma_allocator *allocator, const lzma_mt *options) argument
[all...]
/freebsd-11-stable/contrib/libstdc++/include/std/
H A Dstd_queue.h68 #include <bits/allocator.h>
/freebsd-11-stable/contrib/serf/buckets/
H A Dmmap_buckets.c39 serf_bucket_alloc_t *allocator)
43 ctx = serf_bucket_mem_alloc(allocator, sizeof(*ctx));
49 return serf_bucket_create(&serf_bucket_type_mmap, allocator, ctx);
129 serf_bucket_alloc_t *allocator)
37 serf_bucket_mmap_create( apr_mmap_t *file_mmap, serf_bucket_alloc_t *allocator) argument
128 serf_bucket_mmap_create(apr_mmap_t *file_mmap, serf_bucket_alloc_t *allocator) argument
H A Dbarrier_buckets.c34 serf_bucket_alloc_t *allocator)
38 ctx = serf_bucket_mem_alloc(allocator, sizeof(*ctx));
41 return serf_bucket_create(&serf_bucket_type_barrier, allocator, ctx);
32 serf_bucket_barrier_create( serf_bucket_t *stream, serf_bucket_alloc_t *allocator) argument
H A Dresponse_body_buckets.c40 serf_bucket_t *stream, apr_uint64_t len, serf_bucket_alloc_t *allocator)
44 ctx = serf_bucket_mem_alloc(allocator, sizeof(*ctx));
48 return serf_bucket_create(&serf_bucket_type_response_body, allocator, ctx);
39 serf_bucket_response_body_create( serf_bucket_t *stream, apr_uint64_t len, serf_bucket_alloc_t *allocator) argument
H A Dlimit_buckets.c34 serf_bucket_t *stream, apr_uint64_t len, serf_bucket_alloc_t *allocator)
38 ctx = serf_bucket_mem_alloc(allocator, sizeof(*ctx));
42 return serf_bucket_create(&serf_bucket_type_limit, allocator, ctx);
33 serf_bucket_limit_create( serf_bucket_t *stream, apr_uint64_t len, serf_bucket_alloc_t *allocator) argument
/freebsd-11-stable/contrib/libstdc++/include/ext/pb_ds/
H A Dtree_policy.hpp83 typedef Allocator allocator; typedef in class:pb_ds::tree_order_statistics_node_update
84 typedef typename allocator::size_type size_type;
123 typedef typename allocator::template rebind<metadata_type>::other metadata_rebind;
/freebsd-11-stable/contrib/libstdc++/include/ext/
H A Dvstring_fwd.h43 #include <memory> // For allocator.
54 typename _Alloc = std::allocator<_CharT>,
63 std::allocator<char>, __rc_string_base> __rc_string;
70 std::allocator<wchar_t>, __rc_string_base> __wrc_string;
/freebsd-11-stable/contrib/apr/include/
H A Dapr_pools.h189 * @param allocator The allocator to use with the new pool. If NULL the
190 * allocator of the parent pool will be used.
199 apr_allocator_t *allocator)
208 apr_allocator_t *allocator);
214 * @param allocator The allocator to use with the new pool. If NULL a
215 * new allocator will be created with the new pool as owner.
228 apr_allocator_t *allocator)
236 * @param allocator
[all...]
/freebsd-11-stable/contrib/subversion/subversion/libsvn_ra_serf/
H A Deagain_bucket.c118 serf_bucket_alloc_t *allocator)
122 eab = serf_bucket_mem_alloc(allocator, sizeof(*eab));
126 return serf_bucket_create(&delay_bucket_vtable, allocator, eab);
116 svn_ra_serf__create_bucket_with_eagain(const char *data, apr_size_t len, serf_bucket_alloc_t *allocator) argument
H A Dstream_bucket.c105 serf_bucket_alloc_t *allocator,
111 ctx = serf_bucket_mem_calloc(allocator, sizeof(*ctx));
119 return serf_bucket_create(&stream_bucket_vtable, allocator, ctx);
104 svn_ra_serf__create_stream_bucket(svn_stream_t *stream, serf_bucket_alloc_t *allocator, svn_ra_serf__stream_bucket_errfunc_t errfunc, void *errfunc_baton) argument
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/hwasan/
H A Dhwasan_allocator.cpp11 // HWAddressSanitizer allocator.
27 static Allocator allocator; member in namespace:__hwasan
71 return allocator.GetActuallyAllocatedSize(reinterpret_cast<void *>(block_));
75 return allocator.FromPrimary(reinterpret_cast<void *>(block_));
79 allocator.GetStats(s);
86 allocator.Init(common_flags()->allocator_release_to_os_interval_ms);
92 allocator.SwallowCache(cache);
118 allocated = allocator.Allocate(t->allocator_cache(), size, alignment);
122 allocated = allocator.Allocate(cache, size, alignment);
131 reinterpret_cast<Metadata *>(allocator
[all...]
/freebsd-11-stable/contrib/xz/src/liblzma/lzma/
H A Dlzma2_decoder.c214 lzma2_decoder_end(void *coder_ptr, const lzma_allocator *allocator) argument
219 lzma_free(coder->lzma.coder, allocator);
221 lzma_free(coder, allocator);
228 lzma2_decoder_init(lzma_lz_decoder *lz, const lzma_allocator *allocator, argument
233 coder = lzma_alloc(sizeof(lzma_lzma2_coder), allocator);
252 allocator, options, lz_options);
257 lzma_lzma2_decoder_init(lzma_next_coder *next, const lzma_allocator *allocator, argument
264 return lzma_lz_decoder_init(next, allocator, filters,
278 lzma_lzma2_props_decode(void **options, const lzma_allocator *allocator, argument
293 sizeof(lzma_options_lzma), allocator);
[all...]
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_symbolizer_mac.h34 explicit AtosSymbolizer(const char *path, LowLevelAllocator *allocator);

Completed in 122 milliseconds

1234567891011