Home
last modified time | relevance | path

Searched refs:PA_ALIGN (Results 1 – 18 of 18) sorted by relevance

/third_party/pulseaudio/src/pulsecore/
Dauth-cookie.c62 c = pa_xmalloc(PA_ALIGN(sizeof(pa_auth_cookie)) + size); in pa_auth_cookie_get()
70 if (pa_authkey_load(cn, create, (uint8_t*) c + PA_ALIGN(sizeof(pa_auth_cookie)), size) < 0) { in pa_auth_cookie_get()
98 c = pa_xmalloc(PA_ALIGN(sizeof(pa_auth_cookie)) + size); in pa_auth_cookie_create()
106 memcpy((uint8_t *) c + PA_ALIGN(sizeof(pa_auth_cookie)), data, size); in pa_auth_cookie_create()
138 return (const uint8_t*) c + PA_ALIGN(sizeof(pa_auth_cookie)); in pa_auth_cookie_read()
Dshmasyncq.h38 …(n_elements, element_size) (PA_ALIGN(sizeof(pa_shmasyncq_data)) + (((n_elements) * (PA_ALIGN(sizeo…
Dshmasyncq.c63 …pa_atomic_t*) ((uint8*t) l->data + PA_ALIGN(sizeof(pa_shmasyncq_data)) + i * (PA_ALIGN(sizeof(pa_a… in get_cell()
67 return (uint8_t*) a + PA_ALIGN(sizeof(atomic_t));
Dstrlist.c38 #define ITEM_TO_TEXT(c) ((char*) (c) + PA_ALIGN(sizeof(pa_strlist)))
46 n = pa_xmalloc(PA_ALIGN(sizeof(pa_strlist)) + size + 1); in pa_strlist_prepend()
130 n = pa_xmalloc(PA_ALIGN(sizeof(pa_strlist)) + size + 1); in pa_strlist_parse()
Dstrbuf.c41 #define CHUNK_TO_TEXT(c) ((char*) (c) + PA_ALIGN(sizeof(struct chunk)))
149 c = pa_xmalloc(PA_ALIGN(sizeof(struct chunk)) + l); in pa_strbuf_putsn()
169 c = pa_xrealloc(c, PA_ALIGN(sizeof(struct chunk)) + size); in pa_strbuf_printf()
Dfdsem.c60 f = pa_xmalloc0(PA_ALIGN(sizeof(pa_fdsem)) + PA_ALIGN(sizeof(pa_fdsem_data))); in pa_fdsem_new()
74 f->data = (pa_fdsem_data*) ((uint8_t*) f + PA_ALIGN(sizeof(pa_fdsem))); in pa_fdsem_new()
Dasyncq.c71 #define PA_ASYNCQ_CELLS(x) ((pa_atomic_ptr_t*) ((uint8_t*) (x) + PA_ALIGN(sizeof(struct pa_asyncq))…
85 l = pa_xmalloc0(PA_ALIGN(sizeof(pa_asyncq)) + (sizeof(pa_atomic_ptr_t) * size)); in pa_asyncq_new()
Dshm.c64 #define MAX_SHM_SIZE (PA_ALIGN(1024*1024*1024))
98 return PA_ALIGN(sizeof(struct shm_marker)); in shm_marker_size()
385 PA_ALIGN((size_t) st.st_size) != (size_t) st.st_size) { in shm_attach()
Dsvolume_arm.c48 unsigned rem = PA_ALIGN((size_t) samples) - (size_t) samples; in pa_volume_s16ne_arm()
Dhashmap.c54 #define BY_HASH(h) ((struct hashmap_entry**) ((uint8_t*) (h) + PA_ALIGN(sizeof(pa_hashmap))))
61 h = pa_xmalloc0(PA_ALIGN(sizeof(pa_hashmap)) + NBUCKETS*sizeof(struct hashmap_entry*)); in pa_hashmap_new_full()
Ddevice-port.h66 #define PA_DEVICE_PORT_DATA(d) ((void*) ((uint8_t*) d + PA_ALIGN(sizeof(pa_device_port))))
Dcard.h63 #define PA_CARD_PROFILE_DATA(d) ((void*) ((uint8_t*) d + PA_ALIGN(sizeof(pa_card_profile))))
Didxset.c56 #define BY_DATA(i) ((struct idxset_entry**) ((uint8_t*) (i) + PA_ALIGN(sizeof(pa_idxset))))
86 s = pa_xmalloc0(PA_ALIGN(sizeof(pa_idxset)) + NBUCKETS*2*sizeof(struct idxset_entry*)); in pa_idxset_new()
Dmemblock.c279 b = pa_xmalloc(PA_ALIGN(sizeof(pa_memblock)) + length); in memblock_new_appended()
285 pa_atomic_ptr_store(&b->data, (uint8_t*) b + PA_ALIGN(sizeof(pa_memblock))); in memblock_new_appended()
385 if (p->block_size >= PA_ALIGN(sizeof(pa_memblock)) + length) { in pa_memblock_new_pool()
392 pa_atomic_ptr_store(&b->data, (uint8_t*) b + PA_ALIGN(sizeof(pa_memblock))); in pa_memblock_new_pool()
954 return p->block_size - PA_ALIGN(sizeof(pa_memblock)); in pa_mempool_block_size_max()
Dmacro.h43 static inline size_t PA_ALIGN(size_t l) { in PA_ALIGN() function
Ddevice-port.c185 …p = PA_DEVICE_PORT(pa_object_new_internal(PA_ALIGN(sizeof(pa_device_port)) + extra, pa_device_port… in pa_device_port_new()
Dsrbchannel.c238 sr->rb_read.memory = (uint8_t*) srh + PA_ALIGN(sizeof(*srh)); in pa_srbchannel_new()
Dcard.c57 c = pa_xmalloc0(PA_ALIGN(sizeof(pa_card_profile)) + extra); in pa_card_profile_new()