/hal_espressif-3.6.0/components/fatfs/test/ |
D | test_fatfs_common.h | 22 #define HEAP_SIZE_CAPTURE(heap_size) \ argument 23 heap_size = esp_get_free_heap_size(); 25 #define HEAP_SIZE_CHECK(heap_size, tolerance) \ argument 28 if (final_heap_size < heap_size - tolerance) { \ 29 …printf("Initial heap size: %d, final: %d, diff=%d\n", heap_size, final_heap_size, heap_size - fina…
|
D | test_fatfs_sdmmc.c | 77 size_t heap_size; variable 78 HEAP_SIZE_CAPTURE(heap_size); 92 HEAP_SIZE_CHECK(heap_size, 0); 206 size_t heap_size; variable 207 HEAP_SIZE_CAPTURE(heap_size); 224 HEAP_SIZE_CHECK(heap_size, 0); 329 size_t heap_size; variable 330 HEAP_SIZE_CAPTURE(heap_size); 359 HEAP_SIZE_CHECK(heap_size, 0);
|
/hal_espressif-3.6.0/tools/ci/python_packages/idf_iperf_test_util/ |
D | IperfUtility.py | 54 self.heap_size = INVALID_HEAP_SIZE 57 …def _save_result(self, throughput, ap_ssid, att, rssi, heap_size): # type: (float, str, int, int,… argument 83 if int(heap_size) < self.heap_size: 84 self.heap_size = int(heap_size) 86 …def add_result(self, raw_data, ap_ssid, att, rssi, heap_size): # type: (str, str, int, int, str) … argument 125 self._save_result(throughput, ap_ssid, att, rssi, heap_size) 224 if self.heap_size != INVALID_HEAP_SIZE: 225 ret += 'Minimum heap size: {}'.format(self.heap_size) 286 …def _save_test_result(self, test_case, raw_data, att, rssi, heap_size): # type: (str, str, int, i… argument 287 return self.test_result[test_case].add_result(raw_data, self.ap_ssid, att, rssi, heap_size) [all …]
|
D | TestReport.py | 125 heap_size = str(result.heap_size) 128 ret += '| {:<12}| {:<18}| {:<23}|\r\n'.format(config, throughput, heap_size)
|
/hal_espressif-3.6.0/examples/bluetooth/nimble/throughput_app/blecent_throughput/components/cmd_system/ |
D | cmd_system.c | 121 static int heap_size(int argc, char **argv) in heap_size() function 123 uint32_t heap_size = heap_caps_get_minimum_free_size(MALLOC_CAP_DEFAULT); in heap_size() local 124 ESP_LOGI(TAG, "min heap size: %u", heap_size); in heap_size() 134 .func = &heap_size, in register_heap()
|
/hal_espressif-3.6.0/examples/system/console/advanced/components/cmd_system/ |
D | cmd_system.c | 135 static int heap_size(int argc, char **argv) in heap_size() function 137 uint32_t heap_size = heap_caps_get_minimum_free_size(MALLOC_CAP_DEFAULT); in heap_size() local 138 printf("min heap size: %u\n", heap_size); in heap_size() 148 .func = &heap_size, in register_heap()
|
/hal_espressif-3.6.0/components/heap/ |
D | heap_caps_init.c | 32 size_t heap_size = region->end - region->start; in register_heap() local 33 assert(heap_size <= HEAP_SIZE_MAX); in register_heap() 34 region->heap = multi_heap_register((void *)region->start, heap_size); in register_heap()
|
/hal_espressif-3.6.0/examples/bluetooth/esp_ble_mesh/ble_mesh_wifi_coexist/main/ |
D | cmd_wifi.c | 417 static int heap_size(int argc, char **argv) in heap_size() function 419 uint32_t heap_size = heap_caps_get_minimum_free_size(MALLOC_CAP_DEFAULT); in heap_size() local 420 ESP_LOGI(TAG, "min heap size: %u", heap_size); in heap_size() 508 .func = &heap_size, in register_wifi()
|
/hal_espressif-3.6.0/examples/wifi/iperf/ |
D | iperf_test.py | 127 heap_size = self.dut.expect(re.compile(r'min heap size: (\d+)\D'))[0] 130 return server_raw_data, rssi, heap_size
|
/hal_espressif-3.6.0/tools/test_idf_size/ |
D | overflow.map | 35027 .rodata.heap_size.str1.4 39680 .literal.heap_size 44406 .text.heap_size
|
D | overflow_esp32s2.map | 35865 .rodata.heap_size.str1.4 40527 .literal.heap_size 45456 .text.heap_size
|