Home
last modified time | relevance | path

Searched refs:hs (Results 1 – 3 of 3) sorted by relevance

/hal_espressif-2.7.6/components/fatfs/src/
Dff.c825 WCHAR hs, wc; in put_utf() local
827 hs = (WCHAR)(chr >> 16); in put_utf()
829 if (hs == 0) { /* Single encoding unit? */ in put_utf()
834 …if (szb < 2 || !IsSurrogateH(hs) || !IsSurrogateL(wc)) return 0; /* Buffer overflow or wrong surro… in put_utf()
835 *buf++ = hs; in put_utf()
2122 WCHAR wc, hs; local
2127 nc = 0; hs = 0; di = 0;
2132 if (hs == 0 && IsSurrogate(wc)) { /* Is it a surrogate? */
2133 hs = wc; continue; /* Get low surrogate */
2135 …wc = put_utf((DWORD)hs << 16 | wc, &fno->fname[di], FF_LFN_BUF - di); /* Store it in API encoding …
[all …]
/hal_espressif-2.7.6/components/sdmmc/test/
Dtest_sdio.c154 uint8_t hs; in sdio_slave_common_init() local
155 err = sdmmc_io_read_byte(card, 0, SD_IO_CCCR_HIGHSPEED, &hs); in sdio_slave_common_init()
157 printf("HS: 0x%02x\n", hs); in sdio_slave_common_init()
/hal_espressif-2.7.6/components/hal/include/hal/
Dsdio_slave_ll.h118 static inline void sdio_slave_ll_enable_hs(hinf_dev_t *hinf, bool hs) in sdio_slave_ll_enable_hs() argument
120 if (hs) { in sdio_slave_ll_enable_hs()