Home
last modified time | relevance | path

Searched refs:mem (Results 1 – 25 of 1508) sorted by relevance

12345678910>>...61

/third_party/gstreamer/gstplugins_bad/sys/msdk/
Dgstmsdksystemmemory.c49 ensure_data (GstMsdkSystemMemory * mem) in ensure_data() argument
57 allocator = GST_MEMORY_CAST (mem)->allocator; in ensure_data()
63 if (mem->cache) in ensure_data()
71 mem->cache = data; in ensure_data()
72 mem->cached_data[0] = mem->cache; in ensure_data()
73 mem->cached_data[1] = mem->cache + GST_VIDEO_INFO_PLANE_OFFSET (info, 1); in ensure_data()
74 mem->cached_data[2] = mem->cache + GST_VIDEO_INFO_PLANE_OFFSET (info, 2); in ensure_data()
76 mem->destination_pitches[0] = GST_VIDEO_INFO_PLANE_STRIDE (info, 0); in ensure_data()
77 mem->destination_pitches[1] = GST_VIDEO_INFO_PLANE_STRIDE (info, 1); in ensure_data()
78 mem->destination_pitches[2] = GST_VIDEO_INFO_PLANE_STRIDE (info, 2); in ensure_data()
[all …]
/third_party/gstreamer/gstplugins_base/gst-libs/gst/allocators/
Dgstfdmemory.c46 GstMemory mem; member
60 GstFdMemory *mem = (GstFdMemory *) gmem; in gst_fd_mem_free() local
62 if (mem->data) { in gst_fd_mem_free()
63 if (!(mem->flags & GST_FD_MEMORY_FLAG_KEEP_MAPPED)) in gst_fd_mem_free()
65 mem); in gst_fd_mem_free()
67 munmap ((void *) mem->data, gmem->maxsize); in gst_fd_mem_free()
69 if (mem->fd >= 0 && gmem->parent == NULL in gst_fd_mem_free()
70 && !(mem->flags & GST_FD_MEMORY_FLAG_DONT_CLOSE)) in gst_fd_mem_free()
71 close (mem->fd); in gst_fd_mem_free()
72 g_mutex_clear (&mem->lock); in gst_fd_mem_free()
[all …]
/third_party/gstreamer/gstreamer/gst/
Dgstmemory.c78 _gst_memory_copy (GstMemory * mem) in _gst_memory_copy() argument
80 GST_CAT_DEBUG (GST_CAT_MEMORY, "copy memory %p", mem); in _gst_memory_copy()
81 return gst_memory_copy (mem, 0, -1); in _gst_memory_copy()
85 _gst_memory_free (GstMemory * mem) in _gst_memory_free() argument
89 GST_CAT_DEBUG (GST_CAT_MEMORY, "free memory %p", mem); in _gst_memory_free()
91 if (mem->parent) { in _gst_memory_free()
92 gst_memory_unlock (mem->parent, GST_LOCK_FLAG_EXCLUSIVE); in _gst_memory_free()
93 gst_memory_unref (mem->parent); in _gst_memory_free()
96 allocator = mem->allocator; in _gst_memory_free()
98 gst_allocator_free (allocator, mem); in _gst_memory_free()
[all …]
/third_party/boost/boost/interprocess/detail/
Datomic.hpp37 inline boost::uint32_t atomic_inc32(volatile boost::uint32_t *mem);
40 inline boost::uint32_t atomic_read32(volatile boost::uint32_t *mem);
45 inline void atomic_write32(volatile boost::uint32_t *mem, boost::uint32_t val);
54 (volatile boost::uint32_t *mem, boost::uint32_t with, boost::uint32_t cmp);
83 inline boost::uint32_t atomic_dec32(volatile boost::uint32_t *mem) in atomic_dec32() argument
84 { return winapi::interlocked_decrement(reinterpret_cast<volatile long*>(mem)) + 1; } in atomic_dec32()
89 inline boost::uint32_t atomic_inc32(volatile boost::uint32_t *mem) in atomic_inc32() argument
90 { return winapi::interlocked_increment(reinterpret_cast<volatile long*>(mem))-1; } in atomic_inc32()
93 inline boost::uint32_t atomic_read32(volatile boost::uint32_t *mem) in atomic_read32() argument
95 const boost::uint32_t val = *mem; in atomic_read32()
[all …]
/third_party/gstreamer/gstplugins_base/gst-libs/gst/gl/
Dgstglbuffer.c94 const GstGLFuncs *gl = gl_mem->mem.context->gl_vtable; in _gl_buffer_create()
98 if (HAVE_BUFFER_STORAGE (gl_mem->mem.context)) { in _gl_buffer_create()
118 gl->BufferStorage (gl_mem->target, gl_mem->mem.mem.maxsize, NULL, flags); in _gl_buffer_create()
120 gl->BufferData (gl_mem->target, gl_mem->mem.mem.maxsize, NULL, in _gl_buffer_create()
130 GstGLBuffer *mem; member
135 _gl_buffer_init (GstGLBuffer * mem, GstAllocator * allocator, in _gl_buffer_init() argument
139 mem->target = gl_target; in _gl_buffer_init()
140 mem->usage_hints = gl_usage; in _gl_buffer_init()
142 gst_gl_base_memory_init ((GstGLBaseMemory *) mem, allocator, parent, context, in _gl_buffer_init()
146 G_GSIZE_FORMAT, mem, mem->mem.mem.maxsize); in _gl_buffer_init()
[all …]
Dgstglbasememory.c68 _default_create (GstGLBaseMemory * mem, GError ** error) in _default_create() argument
81 GstGLBaseMemory *mem; member
91 GST_CAT_TRACE (GST_CAT_GL_BASE_MEMORY, "Create memory %p", transfer->mem); in _mem_create_gl()
94 GST_GL_BASE_MEMORY_ALLOCATOR_GET_CLASS (transfer->mem->mem.allocator); in _mem_create_gl()
99 transfer->mem->query = NULL; in _mem_create_gl()
101 transfer->mem->query = in _mem_create_gl()
104 if ((transfer->result = alloc_class->create (transfer->mem, &error))) in _mem_create_gl()
130 gst_gl_base_memory_init (GstGLBaseMemory * mem, GstAllocator * allocator, in gst_gl_base_memory_init() argument
159 mem->alloc_size = maxsize = size; in gst_gl_base_memory_init()
167 mem->alloc_size = maxsize + align; in gst_gl_base_memory_init()
[all …]
/third_party/gstreamer/gstreamer/tests/check/gst/
Dgstmemory.c132 GstMemory *mem; in create_read_only_memory() local
135 mem = gst_memory_new_wrapped (GST_MEMORY_FLAG_READONLY, in create_read_only_memory()
138 fail_unless (GST_MEMORY_IS_READONLY (mem)); in create_read_only_memory()
140 return mem; in create_read_only_memory()
145 GstMemory *mem, *mem2; in GST_START_TEST() local
149 mem = create_read_only_memory (); in GST_START_TEST()
151 fail_if (gst_memory_map (mem, &info, GST_MAP_WRITE)); in GST_START_TEST()
154 fail_unless (gst_memory_map (mem, &info, GST_MAP_READ)); in GST_START_TEST()
155 gst_memory_unmap (mem, &info); in GST_START_TEST()
157 fail_if (gst_memory_map (mem, &info, GST_MAP_WRITE)); in GST_START_TEST()
[all …]
/third_party/lwip/src/core/
Dmem.c169 mem_trim(void *mem, mem_size_t size) in mem_trim() argument
172 return mem; in mem_trim()
349 struct mem { struct
370 #define SIZEOF_STRUCT_MEM LWIP_MEM_ALIGN_SIZE(sizeof(struct mem)) argument
386 static struct mem *ram_end;
421 static struct mem * LWIP_MEM_LFREE_VOLATILE lfree;
432 mem_overflow_init_element(struct mem *mem, mem_size_t user_size) in mem_overflow_init_element() argument
434 void *p = (u8_t *)mem + SIZEOF_STRUCT_MEM + MEM_SANITY_OFFSET; in mem_overflow_init_element()
435 mem->user_size = user_size; in mem_overflow_init_element()
440 mem_overflow_check_element(struct mem *mem) in mem_overflow_check_element() argument
[all …]
/third_party/gstreamer/gstplugins_bad/sys/nvcodec/
Dgstcudamemory.c40 static gpointer cuda_mem_map (GstCudaMemory * mem, gsize maxsize,
42 static void cuda_mem_unmap_full (GstCudaMemory * mem, GstMapInfo * info);
43 static GstMemory *cuda_mem_copy (GstMemory * mem, gssize offset, gssize size);
106 GstCudaMemory *mem; in gst_cuda_allocator_alloc() local
136 mem = g_new0 (GstCudaMemory, 1); in gst_cuda_allocator_alloc()
137 g_mutex_init (&mem->lock); in gst_cuda_allocator_alloc()
138 mem->data = data; in gst_cuda_allocator_alloc()
139 mem->alloc_params = *params; in gst_cuda_allocator_alloc()
140 mem->stride = stride; in gst_cuda_allocator_alloc()
144 mem->offset[i] = plane_offset; in gst_cuda_allocator_alloc()
[all …]
/third_party/gstreamer/gstplugins_bad/gst-libs/gst/vulkan/
Dgstvkbuffermemory.c64 _vk_buffer_mem_init (GstVulkanBufferMemory * mem, GstAllocator * allocator, in _vk_buffer_mem_init() argument
79 gst_memory_init (GST_MEMORY_CAST (mem), flags, allocator, parent, maxsize, in _vk_buffer_mem_init()
82 mem->device = gst_object_ref (device); in _vk_buffer_mem_init()
83 mem->usage = usage; in _vk_buffer_mem_init()
84 mem->wrapped = FALSE; in _vk_buffer_mem_init()
85 mem->notify = notify; in _vk_buffer_mem_init()
86 mem->user_data = user_data; in _vk_buffer_mem_init()
88 mem->barrier.parent.type = GST_VULKAN_BARRIER_TYPE_BUFFER; in _vk_buffer_mem_init()
89 mem->barrier.parent.pipeline_stages = VK_PIPELINE_STAGE_TOP_OF_PIPE_BIT; in _vk_buffer_mem_init()
90 mem->barrier.parent.access_flags = 0; in _vk_buffer_mem_init()
[all …]
Dgstvkmemory.c50 _vk_mem_init (GstVulkanMemory * mem, GstAllocator * allocator, in _vk_mem_init() argument
68 gst_memory_init (GST_MEMORY_CAST (mem), flags, allocator, parent, maxsize, in _vk_mem_init()
71 mem->device = gst_object_ref (device); in _vk_mem_init()
72 mem->alloc_info.sType = VK_STRUCTURE_TYPE_MEMORY_ALLOCATE_INFO; in _vk_mem_init()
73 mem->alloc_info.pNext = NULL; in _vk_mem_init()
74 mem->alloc_info.allocationSize = (VkDeviceSize) mem->mem.maxsize; in _vk_mem_init()
75 mem->alloc_info.memoryTypeIndex = memory_type_index; in _vk_mem_init()
76 mem->properties = mem_prop_flags; in _vk_mem_init()
77 mem->notify = notify; in _vk_mem_init()
78 mem->user_data = user_data; in _vk_mem_init()
[all …]
/third_party/libexif/libexif/
Dexif-mem.c37 ExifMem *mem; in exif_mem_new() local
41 mem = alloc_func ? alloc_func (sizeof (ExifMem)) : in exif_mem_new()
43 if (!mem) return NULL; in exif_mem_new()
44 mem->ref_count = 1; in exif_mem_new()
46 mem->alloc_func = alloc_func; in exif_mem_new()
47 mem->realloc_func = realloc_func; in exif_mem_new()
48 mem->free_func = free_func; in exif_mem_new()
50 return mem; in exif_mem_new()
54 exif_mem_ref (ExifMem *mem) in exif_mem_ref() argument
56 if (!mem) return; in exif_mem_ref()
[all …]
/third_party/skia/third_party/externals/icu/source/tools/toolutil/
Dtoolutil.cpp250 UToolMemory *mem; in utm_open() local
256 mem=(UToolMemory *)uprv_malloc(sizeof(UToolMemory)+initialCapacity*size); in utm_open()
257 if(mem==NULL) { in utm_open()
261 mem->array=mem->staticArray; in utm_open()
263 uprv_strcpy(mem->name, name); in utm_open()
264 mem->capacity=initialCapacity; in utm_open()
265 mem->maxCapacity=maxCapacity; in utm_open()
266 mem->size=size; in utm_open()
267 mem->idx=0; in utm_open()
268 return mem; in utm_open()
[all …]
/third_party/flutter/skia/third_party/externals/icu/source/tools/toolutil/
Dtoolutil.cpp251 UToolMemory *mem; in utm_open() local
257 mem=(UToolMemory *)uprv_malloc(sizeof(UToolMemory)+initialCapacity*size); in utm_open()
258 if(mem==NULL) { in utm_open()
262 mem->array=mem->staticArray; in utm_open()
264 uprv_strcpy(mem->name, name); in utm_open()
265 mem->capacity=initialCapacity; in utm_open()
266 mem->maxCapacity=maxCapacity; in utm_open()
267 mem->size=size; in utm_open()
268 mem->idx=0; in utm_open()
269 return mem; in utm_open()
[all …]
/third_party/icu/icu4c/source/tools/toolutil/
Dtoolutil.cpp250 UToolMemory *mem; in utm_open() local
256 mem=(UToolMemory *)uprv_malloc(sizeof(UToolMemory)+initialCapacity*size); in utm_open()
257 if(mem==NULL) { in utm_open()
261 mem->array=mem->staticArray; in utm_open()
263 uprv_strcpy(mem->name, name); in utm_open()
264 mem->capacity=initialCapacity; in utm_open()
265 mem->maxCapacity=maxCapacity; in utm_open()
266 mem->size=size; in utm_open()
267 mem->idx=0; in utm_open()
268 return mem; in utm_open()
[all …]
/third_party/gstreamer/gstplugins_base/tests/check/libs/
Dgstglmemory.c75 GstMemory *mem; in GST_START_TEST() local
79 ASSERT_WARNING (mem = gst_allocator_alloc (gl_allocator, 0, NULL)); in GST_START_TEST()
80 fail_unless (mem == NULL); in GST_START_TEST()
90 GstMemory *mem; in GST_START_TEST() local
94 ASSERT_WARNING (mem = gst_allocator_alloc (gl_allocator, 0, NULL)); in GST_START_TEST()
95 fail_unless (mem == NULL); in GST_START_TEST()
110 GstMemory *mem; in create_memory() local
124 mem = (GstMemory *) gst_gl_base_memory_alloc (base_mem_alloc, in create_memory()
126 gl_mem = (GstGLMemory *) mem; in create_memory()
127 fail_unless (!GST_MEMORY_FLAG_IS_SET (mem, in create_memory()
[all …]
/third_party/node/deps/icu-small/source/tools/toolutil/
Dtoolutil.cpp274 UToolMemory *mem; in utm_open() local
280 mem=(UToolMemory *)uprv_malloc(sizeof(UToolMemory)+initialCapacity*size); in utm_open()
281 if(mem==NULL) { in utm_open()
285 mem->array=mem->staticArray; in utm_open()
287 uprv_strcpy(mem->name, name); in utm_open()
288 mem->capacity=initialCapacity; in utm_open()
289 mem->maxCapacity=maxCapacity; in utm_open()
290 mem->size=size; in utm_open()
291 mem->idx=0; in utm_open()
292 return mem; in utm_open()
[all …]
/third_party/musl/porting/liteos_m/kernel/src/regex/
Dtre-mem.c55 tre_mem_t mem; in tre_mem_new_impl() local
58 mem = provided_block; in tre_mem_new_impl()
59 memset(mem, 0, sizeof(*mem)); in tre_mem_new_impl()
62 mem = xcalloc(1, sizeof(*mem)); in tre_mem_new_impl()
63 if (mem == NULL) in tre_mem_new_impl()
65 return mem; in tre_mem_new_impl()
71 tre_mem_destroy(tre_mem_t mem) in tre_mem_destroy() argument
73 tre_list_t *tmp, *l = mem->blocks; in tre_mem_destroy()
82 xfree(mem); in tre_mem_destroy()
89 tre_mem_alloc_impl(tre_mem_t mem, int provided, void *provided_block, in tre_mem_alloc_impl() argument
[all …]
/third_party/musl/porting/liteos_m_iccarm/kernel/src/regex/
Dtre-mem.c55 tre_mem_t mem; in tre_mem_new_impl() local
58 mem = provided_block; in tre_mem_new_impl()
59 memset(mem, 0, sizeof(*mem)); in tre_mem_new_impl()
62 mem = xcalloc(1, sizeof(*mem)); in tre_mem_new_impl()
63 if (mem == NULL) in tre_mem_new_impl()
65 return mem; in tre_mem_new_impl()
71 tre_mem_destroy(tre_mem_t mem) in tre_mem_destroy() argument
73 tre_list_t *tmp, *l = mem->blocks; in tre_mem_destroy()
82 xfree(mem); in tre_mem_destroy()
89 tre_mem_alloc_impl(tre_mem_t mem, int provided, void *provided_block, in tre_mem_alloc_impl() argument
[all …]
/third_party/musl/src/regex/
Dtre-mem.c55 tre_mem_t mem; in tre_mem_new_impl() local
58 mem = provided_block; in tre_mem_new_impl()
59 memset(mem, 0, sizeof(*mem)); in tre_mem_new_impl()
62 mem = xcalloc(1, sizeof(*mem)); in tre_mem_new_impl()
63 if (mem == NULL) in tre_mem_new_impl()
65 return mem; in tre_mem_new_impl()
71 tre_mem_destroy(tre_mem_t mem) in tre_mem_destroy() argument
73 tre_list_t *tmp, *l = mem->blocks; in tre_mem_destroy()
82 xfree(mem); in tre_mem_destroy()
89 tre_mem_alloc_impl(tre_mem_t mem, int provided, void *provided_block, in tre_mem_alloc_impl() argument
[all …]
/third_party/musl/porting/uniproton/kernel/src/regex/
Dtre-mem.c55 tre_mem_t mem; in tre_mem_new_impl() local
58 mem = provided_block; in tre_mem_new_impl()
59 memset(mem, 0, sizeof(*mem)); in tre_mem_new_impl()
62 mem = xcalloc(1, sizeof(*mem)); in tre_mem_new_impl()
63 if (mem == NULL) in tre_mem_new_impl()
65 return mem; in tre_mem_new_impl()
71 tre_mem_destroy(tre_mem_t mem) in tre_mem_destroy() argument
73 tre_list_t *tmp, *l = mem->blocks; in tre_mem_destroy()
82 xfree(mem); in tre_mem_destroy()
89 tre_mem_alloc_impl(tre_mem_t mem, int provided, void *provided_block, in tre_mem_alloc_impl() argument
[all …]
/third_party/gstreamer/gstreamer/tests/examples/memory/
Dmy-vidmem.c26 GstMemory mem; member
45 _my_free (GstAllocator * allocator, GstMemory * mem) in _my_free() argument
47 MyVidmem *vmem = (MyVidmem *) mem; in _my_free()
55 _my_vidmem_map (MyVidmem * mem, gsize maxsize, GstMapFlags flags) in _my_vidmem_map() argument
60 if ((res = g_atomic_pointer_get (&mem->data)) != NULL) in _my_vidmem_map()
65 if (g_atomic_pointer_compare_and_exchange (&mem->data, NULL, res)) in _my_vidmem_map()
71 GST_DEBUG ("%p: mapped %p", mem, res); in _my_vidmem_map()
77 _my_vidmem_unmap (MyVidmem * mem) in _my_vidmem_unmap() argument
79 GST_DEBUG ("%p: unmapped", mem); in _my_vidmem_unmap()
84 _my_vidmem_share (MyVidmem * mem, gssize offset, gsize size) in _my_vidmem_share() argument
[all …]
/third_party/boost/libs/lambda/test/
Dmember_pointer_test.cpp28 my_struct(int x) : mem(x) {}; in my_struct()
30 int mem; member
32 int fooc() const { return mem; } in fooc()
33 int foo() { return mem; } in foo()
34 int foo1c(int y) const { return y + mem; } in foo1c()
35 int foo1(int y) { return y + mem; } in foo1()
36 int foo2c(int y, int x) const { return y + x + mem; } in foo2c()
37 int foo2(int y, int x) { return y + x + mem; } in foo2()
38 int foo3c(int y, int x, int z) const { return y + x + z + mem; } in foo3c()
39 int foo3(int y, int x, int z ){ return y + x + z + mem; } in foo3()
[all …]
/third_party/boost/libs/phoenix/test/bll_compatibility/
Dmember_pointer_test.cpp28 my_struct(int x) : mem(x) {}; in my_struct()
30 int mem; member
32 int fooc() const { return mem; } in fooc()
33 int foo() { return mem; } in foo()
34 int foo1c(int y) const { return y + mem; } in foo1c()
35 int foo1(int y) { return y + mem; } in foo1()
36 int foo2c(int y, int x) const { return y + x + mem; } in foo2c()
37 int foo2(int y, int x) { return y + x + mem; } in foo2()
38 int foo3c(int y, int x, int z) const { return y + x + z + mem; } in foo3c()
39 int foo3(int y, int x, int z ){ return y + x + z + mem; } in foo3()
[all …]
/third_party/gstreamer/gstplugins_base/sys/xvimage/
Dxvimageallocator.c82 gst_xvimage_memory_is_from_context (GstMemory * mem, GstXvContext * context) in gst_xvimage_memory_is_from_context() argument
86 if (!GST_IS_XVIMAGE_ALLOCATOR (mem->allocator)) in gst_xvimage_memory_is_from_context()
89 alloc = GST_XVIMAGE_ALLOCATOR_CAST (mem->allocator); in gst_xvimage_memory_is_from_context()
149 GstXvImageMemory *mem = (GstXvImageMemory *) gmem; in gst_xvimage_allocator_free() local
158 GST_DEBUG_OBJECT (allocator, "free memory %p", mem); in gst_xvimage_allocator_free()
164 if (mem->SHMInfo.shmaddr != ((void *) -1)) { in gst_xvimage_allocator_free()
166 mem->SHMInfo.shmid, mem->SHMInfo.shmseg); in gst_xvimage_allocator_free()
167 XShmDetach (context->disp, &mem->SHMInfo); in gst_xvimage_allocator_free()
169 shmdt (mem->SHMInfo.shmaddr); in gst_xvimage_allocator_free()
170 mem->SHMInfo.shmaddr = (void *) -1; in gst_xvimage_allocator_free()
[all …]

12345678910>>...61