Home
last modified time | relevance | path

Searched defs:size (Results 1 – 25 of 253) sorted by relevance

1234567891011

/hal_espressif-2.7.6/components/bt/common/osi/include/osi/
Dallocator.h45 #define osi_malloc(size) \ argument
55 #define osi_calloc(size) \ argument
67 #define osi_malloc(size) \ argument
75 #define osi_calloc(size) \ argument
126 #define osi_malloc(size) heap_caps_malloc_prefer(size, 2, MALLOC_CAP_DEFAULT|MALLO… argument
127 #define osi_calloc(size) heap_caps_calloc_prefer(1, size, 2, MALLOC_CAP_DEFAULT|MA… argument
129 #define osi_malloc(size) malloc((size)) argument
130 #define osi_calloc(size) calloc(1, (size)) argument
/hal_espressif-2.7.6/components/xtensa/include/xtensa/
Dcore-macros.h193 # 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 …]
Dxtruntime-frames.h35 #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
/hal_espressif-2.7.6/components/ulp/test/esp32/
Dtest_ulp.c61 size_t size = sizeof(program)/sizeof(ulp_insn_t); variable
89 size_t size = sizeof(program)/sizeof(ulp_insn_t); variable
121 size_t size = sizeof(program)/sizeof(ulp_insn_t); variable
155 size_t size = sizeof(program)/sizeof(ulp_insn_t); variable
209 size_t size = sizeof(program)/sizeof(ulp_insn_t); variable
264 size_t size = sizeof(program)/sizeof(ulp_insn_t); variable
305 size_t size = sizeof(program)/sizeof(ulp_insn_t); variable
376 size_t size = sizeof(program)/sizeof(ulp_insn_t); variable
453 size_t size = sizeof(program)/sizeof(ulp_insn_t); variable
/hal_espressif-2.7.6/tools/
Dzephyr_tools.json26 "size": 85731226, number
31 "size": 83888892, number
36 "size": 87715092, number
41 "size": 92424226, number
48 "size": 104226379, number
53 "size": 106855139, number
82 "size": 86069526, number
87 "size": 84254468, number
92 "size": 88053499, number
97 "size": 92817351, number
[all …]
Dtools.json26 "size": 85731226, number
31 "size": 83888892, number
36 "size": 87715092, number
41 "size": 92424226, number
48 "size": 104226379, number
53 "size": 106855139, number
82 "size": 86069526, number
87 "size": 84254468, number
92 "size": 88053499, number
97 "size": 92817351, number
[all …]
/hal_espressif-2.7.6/zephyr/esp32/src/
Dheap_caps.c44 static void *z_esp_aligned_alloc(struct k_heap *heap, size_t align, size_t size) in z_esp_aligned_alloc()
75 static void *z_esp_aligned_calloc(struct k_heap *heap, size_t nmemb, size_t size) in z_esp_aligned_calloc()
90 static void *z_esp_alloc_internal(size_t align, size_t size) in z_esp_alloc_internal()
104 static void *z_esp_calloc_internal(size_t nmemb, size_t size) in z_esp_calloc_internal()
119 void *__wrap_k_malloc(size_t size) in __wrap_k_malloc()
148 void *__wrap_k_calloc(size_t nmemb, size_t size) in __wrap_k_calloc()
/hal_espressif-2.7.6/tools/windows/tool_setup/
Dtools_fallback.json28 "size": 125719261, number
33 "size": 125719261, number
40 "size": 44219107, number
45 "size": 45566336, number
50 "size": 46517409, number
80 "size": 8246604, number
85 "size": 5726662, number
92 "size": 12231559, number
97 "size": 12231559, number
146 "size": 38405896, number
[all …]
/hal_espressif-2.7.6/components/nvs_flash/src/
Dnvs_partition.cpp34 esp_err_t NVSPartition::read_raw(size_t src_offset, void* dst, size_t size) in read_raw()
39 esp_err_t NVSPartition::read(size_t src_offset, void* dst, size_t size) in read()
48 esp_err_t NVSPartition::write_raw(size_t dst_offset, const void* src, size_t size) in write_raw()
53 esp_err_t NVSPartition::write(size_t dst_offset, const void* src, size_t size) in write()
62 esp_err_t NVSPartition::erase_range(size_t dst_offset, size_t size) in erase_range()
/hal_espressif-2.7.6/components/nvs_flash/test_nvs_host/
Dtest_fixtures.hpp23 uint32_t size, in PartitionEmulation()
37 esp_err_t read_raw(size_t src_offset, void* dst, size_t size) override in read_raw()
46 esp_err_t read(size_t src_offset, void* dst, size_t size) override in read()
55 esp_err_t write_raw(size_t dst_offset, const void* src, size_t size) override in write_raw()
64 esp_err_t write(size_t dst_offset, const void* src, size_t size) override in write()
73 esp_err_t erase_range(size_t dst_offset, size_t size) override in erase_range()
111 uint32_t size; member in PartitionEmulation
Dspi_flash_emulation.cpp26 size_t offset, size_t size) in esp_partition_erase_range()
52 size_t src_offset, void* dst, size_t size) in esp_partition_read()
66 size_t src_offset, void* dst, size_t size) in esp_partition_read_raw()
80 size_t dst_offset, const void* src, size_t size) in esp_partition_write()
94 size_t dst_offset, const void* src, size_t size) in esp_partition_write_raw()
/hal_espressif-2.7.6/components/newlib/
Dheap.c29 void* malloc(size_t size) in malloc()
34 void* calloc(size_t n, size_t size) in calloc()
39 void* realloc(void* ptr, size_t size) in realloc()
49 void* _malloc_r(struct _reent *r, size_t size) in _malloc_r()
59 void* _realloc_r(struct _reent *r, void* ptr, size_t size) in _realloc_r()
64 void* _calloc_r(struct _reent *r, size_t nmemb, size_t size) in _calloc_r()
/hal_espressif-2.7.6/components/bootloader_support/src/
Dbootloader_flash.c55 const void *bootloader_mmap(uint32_t src_addr, uint32_t size) in bootloader_mmap()
80 esp_err_t bootloader_flash_read(size_t src, void *dest, size_t size, bool allow_decrypt) in bootloader_flash_read()
89 esp_err_t bootloader_flash_write(size_t dest_addr, void *src, size_t size, bool write_encrypted) in bootloader_flash_write()
107 esp_err_t bootloader_flash_erase_range(uint32_t start_addr, uint32_t size) in bootloader_flash_erase_range()
168 const void *bootloader_mmap(uint32_t src_addr, uint32_t size) in bootloader_mmap()
273 static esp_err_t bootloader_flash_read_no_decrypt(size_t src_addr, void *dest, size_t size) in bootloader_flash_read_no_decrypt()
299 static esp_err_t bootloader_flash_read_allow_decrypt(size_t src_addr, void *dest, size_t size) in bootloader_flash_read_allow_decrypt()
362 esp_err_t bootloader_flash_read(size_t src_addr, void *dest, size_t size, bool allow_decrypt) in bootloader_flash_read()
384 esp_err_t bootloader_flash_write(size_t dest_addr, void *src, size_t size, bool write_encrypted) in bootloader_flash_write()
418 esp_err_t bootloader_flash_erase_range(uint32_t start_addr, uint32_t size) in bootloader_flash_erase_range()
/hal_espressif-2.7.6/components/heap/
Dheap_caps.c90 IRAM_ATTR void *heap_caps_malloc( size_t size, uint32_t caps ) in heap_caps_malloc()
174 IRAM_ATTR void *heap_caps_malloc_default( size_t size ) in heap_caps_malloc_default()
197 IRAM_ATTR void *heap_caps_realloc_default( void *ptr, size_t size ) in heap_caps_realloc_default()
219 IRAM_ATTR void *heap_caps_malloc_prefer( size_t size, size_t num, ... ) in heap_caps_malloc_prefer()
238 IRAM_ATTR void *heap_caps_realloc_prefer( void *ptr, size_t size, size_t num, ... ) in heap_caps_realloc_prefer()
257 IRAM_ATTR void *heap_caps_calloc_prefer( size_t n, size_t size, size_t num, ... ) in heap_caps_calloc_prefer()
308 IRAM_ATTR void *heap_caps_realloc( void *ptr, size_t size, uint32_t caps) in heap_caps_realloc()
386 IRAM_ATTR void *heap_caps_calloc( size_t n, size_t size, uint32_t caps) in heap_caps_calloc()
539 size_t size = multi_heap_get_allocated_size(heap->heap, ptr); in heap_caps_get_allocated_size() local
543 IRAM_ATTR void *heap_caps_aligned_alloc(size_t alignment, size_t size, uint32_t caps) in heap_caps_aligned_alloc()
[all …]
Dheap_tlsf.c123 static inline __attribute__((__always_inline__)) size_t adjust_request_size(size_t size, size_t ali… in adjust_request_size()
144 static inline __attribute__((__always_inline__)) void mapping_insert(size_t size, int* fli, int* sl… in mapping_insert()
164 static inline __attribute__((__always_inline__)) void mapping_search(size_t size, int* fli, int* sl… in mapping_search()
272 …c inline __attribute__((__always_inline__)) int block_can_split(block_header_t* block, size_t size) in block_can_split()
278 … __attribute__((__always_inline__)) block_header_t* block_split(block_header_t* block, size_t size) in block_split()
375 …_((__always_inline__)) void block_trim_free(control_t* control, block_header_t* block, size_t size) in block_trim_free()
388 …_((__always_inline__)) void block_trim_used(control_t* control, block_header_t* block, size_t size) in block_trim_used()
402 …_)) block_header_t* block_trim_free_leading(control_t* control, block_header_t* block, size_t size) in block_trim_free_leading()
424 …attribute__((__always_inline__)) block_header_t* block_locate_free(control_t* control, size_t size) in block_locate_free()
454 …_always_inline__)) void* block_prepare_used(control_t* control, block_header_t* block, size_t size) in block_prepare_used()
[all …]
Dmulti_heap.c122 multi_heap_handle_t multi_heap_register_impl(void *start_ptr, size_t size) in multi_heap_register_impl()
189 void *multi_heap_malloc_impl(multi_heap_handle_t heap, size_t size) in multi_heap_malloc_impl()
224 void *multi_heap_realloc_impl(multi_heap_handle_t heap, void *p, size_t size) in multi_heap_realloc_impl()
254 void *multi_heap_aligned_alloc_impl_offs(multi_heap_handle_t heap, size_t size, size_t alignment, s… in multi_heap_aligned_alloc_impl_offs()
283 void *multi_heap_aligned_alloc_impl(multi_heap_handle_t heap, size_t size, size_t alignment) in multi_heap_aligned_alloc_impl()
307 static void multi_heap_dump_tlsf(void* ptr, size_t size, int used, void* user) in multi_heap_dump_tlsf()
344 static void multi_heap_get_info_tlsf(void* ptr, size_t size, int used, void* user) in multi_heap_get_info_tlsf()
Dmulti_heap_poisoning.c135 static bool verify_fill_pattern(void *data, size_t size, bool print_errors, bool expect_free, bool … in verify_fill_pattern()
188 void *multi_heap_aligned_alloc(multi_heap_handle_t heap, size_t size, size_t alignment) in multi_heap_aligned_alloc()
219 void *multi_heap_malloc(multi_heap_handle_t heap, size_t size) in multi_heap_malloc()
270 void *multi_heap_realloc(multi_heap_handle_t heap, void *p, size_t size) in multi_heap_realloc()
336 multi_heap_handle_t multi_heap_register(void *start, size_t size) in multi_heap_register()
391 bool multi_heap_internal_check_block_poisoning(void *start, size_t size, bool is_free, bool print_e… in multi_heap_internal_check_block_poisoning()
415 void multi_heap_internal_poison_fill_region(void *start, size_t size, bool is_free) in multi_heap_internal_poison_fill_region()
/hal_espressif-2.7.6/components/app_trace/
Dapp_trace_util.c105 uint8_t *esp_apptrace_rb_produce(esp_apptrace_rb_t *rb, uint32_t size) in esp_apptrace_rb_produce()
147 uint8_t *esp_apptrace_rb_consume(esp_apptrace_rb_t *rb, uint32_t size) in esp_apptrace_rb_consume()
175 uint32_t size = 0; in esp_apptrace_rb_read_size_get() local
188 uint32_t size = 0; in esp_apptrace_rb_write_size_get() local
/hal_espressif-2.7.6/components/riscv/include/riscv/
Drvruntime-frames.h30 #define STRUCT_FIELD(ctype,size,asname,name) asname: .space size argument
31 #define STRUCT_AFIELD(ctype,size,asname,name,n) asname: .space (size)*(n) argument
35 #define STRUCT_FIELD(ctype,size,asname,name) ctype name; argument
36 #define STRUCT_AFIELD(ctype,size,asname,name,n) ctype name[n]; argument
/hal_espressif-2.7.6/components/bt/esp_ble_mesh/mesh_common/
Dmesh_common.c24 IRAM_ATTR void *bt_mesh_malloc(size_t size) in bt_mesh_malloc()
37 IRAM_ATTR void *bt_mesh_calloc(size_t size) in bt_mesh_calloc()
55 struct net_buf_simple *bt_mesh_alloc_buf(uint16_t size) in bt_mesh_alloc_buf()
/hal_espressif-2.7.6/components/bt/common/osi/
Dallocator.c33 int size; member
70 void osi_mem_dbg_record(void *p, int size, const char *func, int line) in osi_mem_dbg_record()
203 size_t size = strlen(str) + 1; // + 1 for the null terminator in osi_strdup() local
214 void *osi_malloc_func(size_t size) in osi_malloc_func()
234 void *osi_calloc_func(size_t size) in osi_calloc_func()
/hal_espressif-2.7.6/components/wear_levelling/
DSPI_Flash.cpp39 esp_err_t SPI_Flash::erase_range(size_t start_address, size_t size) in erase_range()
52 esp_err_t SPI_Flash::write(size_t dest_addr, const void *src, size_t size) in write()
63 esp_err_t SPI_Flash::read(size_t src_addr, void *dest, size_t size) in read()
DPartition.cpp35 esp_err_t Partition::erase_range(size_t start_address, size_t size) in erase_range()
46 esp_err_t Partition::write(size_t dest_addr, const void *src, size_t size) in write()
53 esp_err_t Partition::read(size_t src_addr, void *dest, size_t size) in read()
/hal_espressif-2.7.6/components/spi_flash/
Dpartition.c232 esp_err_t esp_partition_register_external(esp_flash_t* flash_chip, size_t offset, size_t size, in esp_partition_register_external()
335 size_t src_offset, void* dst, size_t size) in esp_partition_read()
377 size_t dst_offset, const void* src, size_t size) in esp_partition_write()
406 size_t src_offset, void* dst, size_t size) in esp_partition_read_raw()
424 size_t dst_offset, const void* src, size_t size) in esp_partition_write_raw()
443 size_t offset, size_t size) in esp_partition_erase_range()
473 esp_err_t esp_partition_mmap(const esp_partition_t* partition, size_t offset, size_t size, in esp_partition_mmap()
519 bool esp_partition_main_flash_region_safe(size_t addr, size_t size) in esp_partition_main_flash_region_safe()
/hal_espressif-2.7.6/components/spi_flash/sim/
Dflash_mock.cpp18 int size = 0; in convert_chip_size_string() local
42 size_t size = convert_chip_size_string(chip_size); in _spi_flash_init() local
54 extern "C" esp_err_t spi_flash_mmap(size_t src_addr, size_t size, spi_flash_mmap_memory_t memory, in spi_flash_mmap()
108 void *heap_caps_malloc( size_t size, uint32_t caps ) in heap_caps_malloc()

1234567891011