/sof-3.4.0/src/arch/host/include/arch/lib/ |
D | cache.h | 15 static inline void dcache_writeback_region(void *addr, size_t size) {} in dcache_writeback_region() 16 static inline void dcache_invalidate_region(void *addr, size_t size) {} in dcache_invalidate_region() 17 static inline void icache_invalidate_region(void *addr, size_t size) {} in icache_invalidate_region() 19 size_t size) {} in dcache_writeback_invalidate_region()
|
/sof-3.4.0/src/arch/xtensa/include/xtensa/ |
D | core-macros.h | 193 # define _XTHAL_DCACHE_BLOCK_UPGRADE(addr, size, type) \ argument 200 # define _XTHAL_DCACHE_BLOCK_DOWNGRADE(addr, size, type) \ argument 211 # define _XTHAL_DCACHE_BLOCK_DOWNGRADE_MAX(addr, size, type, max) \ argument 221 # define xthal_dcache_block_invalidate(addr, size) do { \ argument 224 # define xthal_dcache_block_writeback(addr, size) do { \ argument 227 # define xthal_dcache_block_writeback_inv(addr, size) do { \ argument 231 # define xthal_dcache_block_invalidate_max(addr, size, max) do { \ argument 234 # define xthal_dcache_block_writeback_max(addr, size, max) do { \ argument 237 # define xthal_dcache_block_writeback_inv_max(addr, size, max) do { \ argument 243 # define xthal_dcache_block_prefetch_read_write(addr, size) do { \ argument [all …]
|
D | xtruntime-frames.h | 35 #define STRUCT_FIELD(ctype,size,pre,name) pre##name: .space size argument 36 #define STRUCT_AFIELD(ctype,size,pre,name,n) pre##name: .if n ; .space (size)*(n) ; .endif argument 37 #define STRUCT_AFIELD_A(ctype,size,align,pre,name,n) .balign align ; pre##name: .if n ; .space (siz… argument 41 #define STRUCT_FIELD(ctype,size,pre,name) ctype name; argument 42 #define STRUCT_AFIELD(ctype,size,pre,name,n) ctype name[n]; argument 43 #define STRUCT_AFIELD_A(ctype,size,align,pre,name,n) ctype name[n] __attribute__((aligned(align))); argument
|
/sof-3.4.0/src/include/sof/ |
D | coherent.h | 103 const size_t size) in coherent_acquire() 137 const size_t size) in coherent_release() 157 static inline void *__coherent_init(size_t offset, const size_t size) in __coherent_init() 189 static inline void __coherent_shared(struct coherent *c, const size_t size) in __coherent_shared() 207 struct coherent *c, const size_t size) in coherent_acquire_thread() 231 const size_t size) in coherent_release_thread() 252 static inline void *__coherent_init_thread(size_t offset, const size_t size) in __coherent_init_thread() 279 static inline void __coherent_shared_thread(struct coherent *c, const size_t size) in __coherent_shared_thread() 313 const size_t size) in coherent_acquire() 328 const size_t size) in coherent_release() [all …]
|
D | common.h | 18 #define IS_ALIGNED(size, alignment) ((size) % (alignment) == 0) argument 42 #define ALIGN_UP_COMPILE(size, alignment) \ argument 53 #define ALIGN_UP(size, alignment) ({ \ argument 59 #define ALIGN_DOWN(size, alignment) ({ \ argument 71 #define ALIGN_UP(size, alignment) ({ \ argument 78 #define ALIGN_DOWN(size, alignment) ({ \ argument 89 #define ALIGN_UP(size, alignment) ALIGN_UP_INTERNAL(size, alignment) argument 91 #define ALIGN_DOWN(size, alignment) ((size) & ~((alignment) - 1)) argument
|
/sof-3.4.0/xtos/include/rtos/ |
D | string.h | 21 #define rmemcpy(dest, src, size) \ argument 24 #define rmemcpy(dest, src, size) \ argument
|
/sof-3.4.0/src/arch/xtensa/include/arch/lib/ |
D | cache.h | 93 static inline void dcache_writeback_region(void __sparse_cache *addr, size_t size) in dcache_writeback_region() 108 static inline void dcache_invalidate_region(void __sparse_cache *addr, size_t size) in dcache_invalidate_region() 123 static inline void icache_invalidate_region(void *addr, size_t size) in icache_invalidate_region() 137 static inline void dcache_writeback_invalidate_region(void __sparse_cache *addr, size_t size) in dcache_writeback_invalidate_region()
|
/sof-3.4.0/src/ipc/ |
D | dma-copy.c | 64 int32_t host_offset, void *local_ptr, int32_t size) in dma_copy_to_host() 78 int32_t host_offset, void *local_ptr, int32_t size) in dma_copy_to_host_nowait() 95 int32_t host_offset, void *local_ptr, int32_t size, in dma_copy_to_host_flags() 146 int32_t host_offset, void *local_ptr, int32_t size) in dma_copy_to_host() 153 int32_t host_offset, void *local_ptr, int32_t size) in dma_copy_to_host_nowait()
|
/sof-3.4.0/src/platform/intel/cavs/lib/ |
D | pm_memory.c | 61 void cavs_pm_memory_hp_sram_power_gate(void *ptr, uint32_t size, bool enabled) in cavs_pm_memory_hp_sram_power_gate() 74 void cavs_pm_memory_lp_sram_power_gate(void *ptr, uint32_t size, bool enabled) in cavs_pm_memory_lp_sram_power_gate()
|
D | mem_window.c | 20 uint32_t base, uint32_t size, in memory_window_init()
|
/sof-3.4.0/src/arch/xtensa/include/arch/ |
D | string.h | 18 #define arch_memcpy(dest, src, size) \ argument 21 #define bzero(ptr, size) \ argument
|
/sof-3.4.0/src/arch/host/include/arch/ |
D | string.h | 17 #define arch_memcpy(dest, src, size) \ argument 20 #define bzero(ptr, size) \ argument
|
/sof-3.4.0/src/include/sof/audio/module_adapter/iadk/utilities/ |
D | array.h | 21 size_t size; member 110 Array(T * ptr, size_t size) in Array() 123 void Init(T *ptr, size_t size) in Init() 154 size_t size(void) const { return size_; } in size() function 292 TC *dataAsArray(size_t size) in dataAsArray()
|
/sof-3.4.0/src/audio/ |
D | data_blob.c | 62 size_t *size, uint32_t *crc) in comp_get_data_blob() 129 uint32_t size, const void *init_data) in comp_init_data_blob() 566 struct sof_ipc_ctrl_data *cdata, int size) in comp_data_blob_get_cmd() 617 static void *default_alloc(size_t size) in default_alloc() 629 void *(*alloc)(size_t size), in comp_data_blob_handler_new_ext()
|
/sof-3.4.0/src/include/sof/ipc/ |
D | msg.h | 49 uint32_t size) in ipc_msg_w_ext_init() 79 static inline struct ipc_msg *ipc_msg_init(uint32_t header, uint32_t size) in ipc_msg_init()
|
/sof-3.4.0/src/arch/xtensa/hal/ |
D | attribute.c | 168 int xthal_set_region_attribute( void *vaddr, unsigned size, unsigned cattr, unsigned flags ) in xthal_set_region_attribute()
|
/sof-3.4.0/src/platform/amd/renoir/lib/ |
D | clk.c | 25 uint32_t size) in acp_reg_read_via_smn() 60 uint32_t value, uint32_t size) in acp_reg_write_via_smn()
|
/sof-3.4.0/src/platform/amd/rembrandt/lib/ |
D | clk.c | 25 uint32_t size) in acp_reg_read_via_smn() 61 uint32_t value, uint32_t size) in acp_reg_write_via_smn()
|
/sof-3.4.0/test/cmocka/src/audio/ |
D | module_adapter_test.c | 22 uint32_t size; in module_adapter_test_setup() local
|
/sof-3.4.0/src/include/user/ |
D | smart_amp.h | 16 uint32_t size; member
|
D | crossover.h | 94 uint32_t size; member
|
D | kpb.h | 15 uint32_t size; /**< kpb size in bytes */ member
|
/sof-3.4.0/src/math/fft/ |
D | fft_common.c | 14 struct fft_plan *fft_plan_new(void *inb, void *outb, uint32_t size, int bits) in fft_plan_new()
|
/sof-3.4.0/src/include/ipc/ |
D | pm.h | 31 uint32_t size; member 43 uint32_t size; member
|
/sof-3.4.0/test/cmocka/src/lib/lib/ |
D | rstrcmp.c | 127 const int size = 2048; in test_lib_lib_rstrcmp_for_verylongstrings_equals_0() local 148 const int size = 2048; in test_lib_lib_rstrcmp_for_verylongstrings_is_positive() local 171 const int size = 2048; in test_lib_lib_rstrcmp_for_verylongstrings_is_negative() local
|