Searched refs:std (Results 1 – 14 of 14) sorted by relevance
/hal_espressif-latest/components/log/host_test/log_test/main/ |
D | log_test.cpp | 17 using namespace std; 27 std::memset(print_buffer, 0, BUFFER_SIZE); in BasicLogFixture() 43 std::memset(print_buffer, 0, BUFFER_SIZE); in reset_buffer() 133 const std::regex test_print("V \\([0-9]*\\) test: verbose", std::regex::ECMAScript); 142 const std::regex test_print("D \\([0-9]*\\) test: debug", std::regex::ECMAScript); 151 const std::regex test_print("I \\([0-9]*\\) test: info", std::regex::ECMAScript); 160 const std::regex test_print("W \\([0-9]*\\) test: warn", std::regex::ECMAScript); 169 const std::regex test_print("E \\([0-9]*\\) test: error", std::regex::ECMAScript); 178 …const std::regex test_print("I \\([0-9]*\\) test: must indeed be printed", std::regex::ECMAScript); 204 …const std::regex buffer_regex("I \\([0-9]*\\) test: 01 02 03 04 05 06 07 08 11 12 13 14 15 16 17 1… [all …]
|
/hal_espressif-latest/components/hal/ |
D | i2s_hal.c | 116 i2s_ll_tx_enable_msb_shift(hal->dev, slot_cfg->std.bit_shift); in i2s_hal_std_set_tx_slot() 117 i2s_ll_tx_set_ws_width(hal->dev, slot_cfg->std.ws_width); in i2s_hal_std_set_tx_slot() 120 …i2s_ll_tx_select_std_slot(hal->dev, slot_cfg->std.slot_mask, slot_cfg->slot_mode == I2S_SLOT_MODE_… in i2s_hal_std_set_tx_slot() 122 i2s_ll_tx_enable_msb_right(hal->dev, slot_cfg->std.msb_right); in i2s_hal_std_set_tx_slot() 123 i2s_ll_tx_enable_right_first(hal->dev, slot_cfg->std.ws_pol); in i2s_hal_std_set_tx_slot() 127 …bool is_copy_mono = slot_cfg->slot_mode == I2S_SLOT_MODE_MONO && slot_cfg->std.slot_mask == I2S_ST… in i2s_hal_std_set_tx_slot() 129 i2s_ll_tx_select_std_slot(hal->dev, is_copy_mono ? I2S_STD_SLOT_LEFT : slot_cfg->std.slot_mask); in i2s_hal_std_set_tx_slot() 130 i2s_ll_tx_set_skip_mask(hal->dev, (slot_cfg->std.slot_mask != I2S_STD_SLOT_BOTH) && in i2s_hal_std_set_tx_slot() 133 i2s_ll_tx_set_ws_idle_pol(hal->dev, slot_cfg->std.ws_pol); in i2s_hal_std_set_tx_slot() 134 i2s_ll_tx_set_bit_order(hal->dev, slot_cfg->std.bit_order_lsb); in i2s_hal_std_set_tx_slot() [all …]
|
/hal_espressif-latest/components/bt/ |
D | CMakeLists.txt | 111 host/bluedroid/btc/profile/std/a2dp/include 112 host/bluedroid/btc/profile/std/include 225 "host/bluedroid/btc/profile/std/a2dp/bta_av_co.c" 226 "host/bluedroid/btc/profile/std/a2dp/btc_a2dp.c" 227 "host/bluedroid/btc/profile/std/a2dp/btc_a2dp_control.c" 228 "host/bluedroid/btc/profile/std/a2dp/btc_a2dp_sink.c" 229 "host/bluedroid/btc/profile/std/a2dp/btc_a2dp_source.c" 230 "host/bluedroid/btc/profile/std/a2dp/btc_av.c" 231 "host/bluedroid/btc/profile/std/avrc/btc_avrc.c" 232 "host/bluedroid/btc/profile/std/avrc/bta_avrc_co.c" [all …]
|
/hal_espressif-latest/components/hal/esp32s3/include/hal/ |
D | lcd_ll.h | 33 #define LCD_LL_CONV_STD_TO_REG(std) (uint8_t[]){0,1}[(std)] argument 192 static inline void lcd_ll_set_yuv_convert_std(lcd_cam_dev_t *dev, lcd_yuv_conv_std_t std) in lcd_ll_set_yuv_convert_std() argument 194 dev->lcd_rgb_yuv.lcd_conv_protocol_mode = LCD_LL_CONV_STD_TO_REG(std); in lcd_ll_set_yuv_convert_std()
|
D | cam_ll.h | 279 static inline void cam_ll_set_yuv_convert_std(lcd_cam_dev_t *dev, color_conv_std_rgb_yuv_t std) in cam_ll_set_yuv_convert_std() argument 281 if (std == COLOR_CONV_STD_RGB_YUV_BT601) { in cam_ll_set_yuv_convert_std() 283 } else if (std == COLOR_CONV_STD_RGB_YUV_BT709) { in cam_ll_set_yuv_convert_std()
|
/hal_espressif-latest/tools/esptool_py/test/elf2image/esp32-too-many-sections/ |
D | Makefile | 13 CFLAGS=-W -std=c99
|
/hal_espressif-latest/components/driver/deprecated/ |
D | i2s_legacy.c | 1068 if (slot_cfg->std.slot_mask == I2S_STD_SLOT_BOTH) { in i2s_set_clk() 1069 slot_cfg->std.slot_mask = I2S_STD_SLOT_LEFT; in i2s_set_clk() 1072 slot_cfg->std.ws_pol = !slot_cfg->std.ws_pol; in i2s_set_clk() 1076 slot_cfg->std.slot_mask = I2S_STD_SLOT_BOTH; in i2s_set_clk() 1288 SLOT_CFG(std).ws_width = i2s_config->bits_per_sample; in i2s_config_transfer() 1289 SLOT_CFG(std).ws_pol = false; in i2s_config_transfer() 1291 SLOT_CFG(std).slot_mask = I2S_STD_SLOT_BOTH; in i2s_config_transfer() 1294 SLOT_CFG(std).slot_mask = I2S_STD_SLOT_LEFT; in i2s_config_transfer() 1296 SLOT_CFG(std).slot_mask = I2S_STD_SLOT_RIGHT; in i2s_config_transfer() 1299 SLOT_CFG(std).bit_shift = true; in i2s_config_transfer() [all …]
|
/hal_espressif-latest/components/esp_event/host_test/ |
D | fixtures.hpp | 27 class CMockException : public std::exception {
|
/hal_espressif-latest/tools/esptool_py/test/images/ram_helloworld/source/ |
D | Makefile | 43 CFLAGS = -std=c99 -Wall -Werror -Os \ 46 CFLAGS_ESPRISCV32 = -std=c99 -Wall -Werror -Os \
|
/hal_espressif-latest/components/spi_flash/sim/ |
D | Makefile | 21 CXXFLAGS += $(INCLUDE_FLAGS) -std=c++11 -g -m32
|
D | SpiFlash.cpp | 28 using namespace std;
|
/hal_espressif-latest/components/spi_flash/sim/stubs/ |
D | Makefile | 21 CXXFLAGS += $(INCLUDE_FLAGS) -std=c++11 -g -m32
|
/hal_espressif-latest/tools/esptool_py/flasher_stub/ |
D | Makefile | 119 CFLAGS = -std=c99 -Wall -Werror -Os \ 123 CFLAGS_ESPRISCV32 = -std=c99 -Wall -Werror -Os \
|
/hal_espressif-latest/components/hal/include/hal/ |
D | i2s_hal.h | 48 … } std; /*!< Specific configurations for standard mode */ member
|