Home
last modified time | relevance | path

Searched refs:to_read (Results 1 – 2 of 2) sorted by relevance

/hal_espressif-2.7.6/components/nghttp/port/
Dhttp_parser.c1908 uint64_t to_read = MIN(parser->content_length, in http_parser_execute() local
1920 parser->content_length -= to_read; in http_parser_execute()
1921 p += to_read - 1; in http_parser_execute()
2041 uint64_t to_read = MIN(parser->content_length, in http_parser_execute() local
2052 parser->content_length -= to_read; in http_parser_execute()
2053 p += to_read - 1; in http_parser_execute()
/hal_espressif-2.7.6/components/spi_flash/test/
Dtest_esp_flash.c1122 size_t to_read = MIN(INTERNAL_BUF_SZ, len - i); in s_test_compare_flash_contents_small_reads() local
1123 ESP_ERROR_CHECK( esp_flash_read(chip, ibuf, offs + i, to_read) ); in s_test_compare_flash_contents_small_reads()
1124 TEST_ASSERT_EQUAL_HEX8_ARRAY(buffer + i, ibuf, to_read); in s_test_compare_flash_contents_small_reads()