Searched refs:new_pool (Results 1 – 4 of 4) sorted by relevance
/third_party/boost/boost/lockfree/detail/ |
D | freelist.hpp | 194 tagged_node_ptr new_pool (new_pool_ptr, old_pool.get_next_tag()); in allocate_impl() local 196 if (pool_.compare_exchange_weak(old_pool, new_pool)) { in allocate_impl() 219 tagged_node_ptr new_pool (new_pool_ptr, old_pool.get_next_tag()); in allocate_impl_unsafe() local 221 pool_.store(new_pool, memory_order_relaxed); in allocate_impl_unsafe() 244 tagged_node_ptr new_pool (new_pool_ptr, old_pool.get_tag()); in deallocate_impl() local 245 new_pool->next.set_ptr(old_pool.get_ptr()); in deallocate_impl() 247 if (pool_.compare_exchange_weak(old_pool, new_pool)) in deallocate_impl() 258 tagged_node_ptr new_pool (new_pool_ptr, old_pool.get_tag()); in deallocate_impl_unsafe() local 259 new_pool->next.set_ptr(old_pool.get_ptr()); in deallocate_impl_unsafe() 261 pool_.store(new_pool, memory_order_relaxed); in deallocate_impl_unsafe() [all …]
|
/third_party/gettext/gettext-runtime/intl/ |
D | localealias.c | 336 char *new_pool = (char *) realloc (string_space, new_size); in read_alias_file() local 337 if (new_pool == NULL) in read_alias_file() 340 if (__builtin_expect (string_space != new_pool, 0)) in read_alias_file() 346 map[i].alias += new_pool - string_space; in read_alias_file() 347 map[i].value += new_pool - string_space; in read_alias_file() 351 string_space = new_pool; in read_alias_file()
|
/third_party/gstreamer/gstplugins_bad/ext/teletextdec/ |
D | gstteletextdec.c | 611 GstBufferPool *new_pool; in gst_teletextdec_try_get_buffer_pool() local 629 gst_query_parse_nth_allocation_pool (alloc, 0, &new_pool, &pool_bufsize, in gst_teletextdec_try_get_buffer_pool() 632 new_pool = gst_buffer_pool_new (); in gst_teletextdec_try_get_buffer_pool() 637 poolcfg = gst_buffer_pool_get_config (new_pool); in gst_teletextdec_try_get_buffer_pool() 640 if (!gst_buffer_pool_set_config (new_pool, poolcfg)) { in gst_teletextdec_try_get_buffer_pool() 642 gst_object_unref (new_pool); in gst_teletextdec_try_get_buffer_pool() 646 if (!gst_buffer_pool_set_active (new_pool, TRUE)) { in gst_teletextdec_try_get_buffer_pool() 648 gst_object_unref (new_pool); in gst_teletextdec_try_get_buffer_pool() 653 teletext->buf_pool = new_pool; in gst_teletextdec_try_get_buffer_pool()
|
/third_party/gstreamer/gstplugins_bad/sys/d3d11/ |
D | gstd3d11compositor.cpp | 908 GstBufferPool *new_pool; in gst_d3d11_compositor_configure_fallback_pool() local 925 new_pool = gst_d3d11_buffer_pool_new_with_options (self->device, in gst_d3d11_compositor_configure_fallback_pool() 930 if (!new_pool) { in gst_d3d11_compositor_configure_fallback_pool() 935 gst_buffer_pool_set_active (new_pool, TRUE); in gst_d3d11_compositor_configure_fallback_pool() 936 *pool = new_pool; in gst_d3d11_compositor_configure_fallback_pool()
|