Home
last modified time | relevance | path

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

/hal_espressif-2.7.6/examples/peripherals/spi_master/lcd/components/tjpgd/src/
Dtjpgd.c197 uint16_t hc, *ph; in create_huffman_tbl() local
215 hc = 0; in create_huffman_tbl()
218 while (b--) ph[j++] = hc++; in create_huffman_tbl()
219 hc <<= 1; in create_huffman_tbl()
475 const uint16_t *hc; in mcu_load() local
489 hc = jd->huffcode[id][0]; in mcu_load()
491 b = huffext(jd, hb, hc, hd); /* Extract a huffman coded data (bit length) */ in mcu_load()
508 hc = jd->huffcode[id][1]; in mcu_load()
512 b = huffext(jd, hb, hc, hd); /* Extract a huffman coded value (zero runs and bit length) */ in mcu_load()
/hal_espressif-2.7.6/components/console/linenoise/
Dlinenoise.c787 linenoiseHintsCallback *hc = hintsCallback; in linenoiseEdit() local
790 hintsCallback = hc; in linenoiseEdit()
/hal_espressif-2.7.6/components/fatfs/src/
Dff.c840 DWORD hc; in put_utf()
862 hc = ((chr & 0xFFFF0000) - 0xD8000000) >> 6; /* Get high 10 bits */ in put_utf()
864 if (hc >= 0x100000 || chr >= 0x400) return 0; /* Wrong surrogate? */ in put_utf()
865 chr = (hc | chr) + 0x10000; in put_utf()
873 DWORD hc; in put_utf()
877 hc = ((chr & 0xFFFF0000) - 0xD8000000) >> 6; /* Get high 10 bits */ in put_utf()
879 if (hc >= 0x100000 || chr >= 0x400) return 0; /* Wrong surrogate? */ in put_utf()
880 chr = (hc | chr) + 0x10000; in put_utf()