Searched refs:size_bytes (Results 1 – 6 of 6) sorted by relevance
/hal_espressif-3.4.0/components/newlib/ |
D | heap.c | 60 size_t size_bytes; in _calloc_r() local 61 if (__builtin_mul_overflow(nmemb, size, &size_bytes)) { in _calloc_r() 65 result = heap_caps_malloc_default(size_bytes); in _calloc_r() 67 bzero(result, size_bytes); in _calloc_r()
|
/hal_espressif-3.4.0/components/heap/ |
D | heap_caps.c | 435 size_t size_bytes; in heap_caps_calloc() local 437 if (__builtin_mul_overflow(n, size, &size_bytes)) { in heap_caps_calloc() 441 result = heap_caps_malloc(size_bytes, caps); in heap_caps_calloc() 443 bzero(result, size_bytes); in heap_caps_calloc() 644 size_t size_bytes; in heap_caps_aligned_calloc() local 645 if (__builtin_mul_overflow(n, size, &size_bytes)) { in heap_caps_aligned_calloc() 649 void *ptr = heap_caps_aligned_alloc(alignment,size_bytes, caps); in heap_caps_aligned_calloc() 651 memset(ptr, 0, size_bytes); in heap_caps_aligned_calloc()
|
/hal_espressif-3.4.0/components/bt/host/bluedroid/btc/core/ |
D | btc_config.c | 156 bool btc_config_get_str(const char *section, const char *key, char *value, int *size_bytes) in btc_config_get_str() argument 162 assert(size_bytes != NULL); in btc_config_get_str() 170 strlcpy(value, stored_value, *size_bytes); in btc_config_get_str() 171 *size_bytes = strlen(value) + 1; in btc_config_get_str()
|
/hal_espressif-3.4.0/components/bt/host/bluedroid/btc/include/btc/ |
D | btc_config.h | 33 bool btc_config_get_str(const char *section, const char *key, char *value, int *size_bytes);
|
/hal_espressif-3.4.0/components/xtensa/trax/ |
D | traceparse.py | 77 self.size_bytes = len(data) 118 return '%d byte packet%s' % (self.size_bytes, ' (truncated)' if self.truncated else '')
|
/hal_espressif-3.4.0/components/esptool_py/esptool/esptool/ |
D | loader.py | 109 def timeout_per_mb(seconds_per_mb, size_bytes): argument 111 result = seconds_per_mb * (size_bytes / 1e6)
|