Home
last modified time | relevance | path

Searched refs:MAX_LEN (Results 1 – 6 of 6) sorted by relevance

/hal_espressif-2.7.6/tools/kconfig/
Dexpand_env.c21 #define MAX_LEN (128 * 1024) /* Longest a result can expand to */ macro
28 char *result = malloc(MAX_LEN); in expand_environment()
35 if (out >= result + MAX_LEN - 1) { in expand_environment()
67 if (out + strlen(value) >= result + MAX_LEN - 1) { in expand_environment()
80 src_name, src_line_no, MAX_LEN); in expand_environment()
/hal_espressif-2.7.6/components/spi_flash/test/
Dtest_flash_encryption.c168 const int MAX_LEN = 192; variable
170 WORD_ALIGNED_ATTR uint8_t buffer_to_write[MAX_LEN+4];
191 int len = ((rand() % (MAX_LEN/16)) + 1) * 16;
193 for (int i = 0; i < MAX_LEN; i++) {
215 int len = ((rand() % (MAX_LEN/16)) + 1) * 16;
/hal_espressif-2.7.6/tools/kconfig/lxdialog/
Dtextbox.c231 if (hscroll >= MAX_LEN) in dialog_textbox()
372 static char line[MAX_LEN + 1]; in get_line()
379 } else if (i < MAX_LEN) in get_line()
383 if (i == MAX_LEN) in get_line()
388 if (i <= MAX_LEN) in get_line()
Dinputbox.c24 char dialog_input_result[MAX_LEN + 1];
198 if (len < MAX_LEN) { in dialog_inputbox()
Ddialog.h60 #define MAX_LEN 2048 macro
Dutil.c386 char tempstr[MAX_LEN + 1], *word, *sp, *sp2, *newline_separator = 0; in print_autowrap()