Searched refs:jd (Results 1 – 5 of 5) sorted by relevance
/hal_espressif-3.6.0/components/esp_rom/patches/ |
D | esp_rom_tjpgd.c | 141 esp_rom_tjpgd_dec_t* jd, /* Pointer to the decompressor object */ in alloc_pool() argument 150 if (jd->sz_pool >= nd) { in alloc_pool() 151 jd->sz_pool -= nd; in alloc_pool() 152 rp = (char*)jd->pool; /* Get start of available memory pool */ in alloc_pool() 153 jd->pool = (void*)(rp + nd); /* Allocate requierd bytes */ in alloc_pool() 168 esp_rom_tjpgd_dec_t* jd, /* Pointer to the decompressor object */ in create_qt_tbl() argument 184 pb = alloc_pool(jd, 64 * sizeof (int32_t));/* Allocate a memory block for the table */ in create_qt_tbl() 186 jd->qttbl[i] = pb; /* Register the table */ in create_qt_tbl() 205 esp_rom_tjpgd_dec_t* jd, /* Pointer to the decompressor object */ in create_huffman_tbl() argument 221 pb = alloc_pool(jd, 16); /* Allocate a memory block for the bit distribution table */ in create_huffman_tbl() [all …]
|
/hal_espressif-3.6.0/components/esp_rom/test/ |
D | test_tjpgd.c | 21 JpegDev *jd = (JpegDev *)decoder->device; in infunc() local 22 printf("Reading %d bytes from pos %d\n", len, jd->inPos); in infunc() 24 memcpy(buf, jd->inData + jd->inPos, len); in infunc() 26 jd->inPos += len; in infunc() 36 JpegDev *jd = (JpegDev *)decoder->device; in outfunc() local 38 out = jd->outData + ((jd->outW * y) + rect->left) * 3; in outfunc() 57 JpegDev jd; variable 66 jd.inData = logo_jpg; 67 jd.inPos = 0; 68 jd.outData = decoded; [all …]
|
/hal_espressif-3.6.0/examples/peripherals/lcd/tjpgd/main/ |
D | decode_image.c | 48 JpegDev *jd = (JpegDev *)decoder->device; in infunc() local 50 memcpy(buf, jd->inData + jd->inPos, len); in infunc() 52 jd->inPos += len; in infunc() 60 JpegDev *jd = (JpegDev *)decoder->device; in outfunc() local 71 jd->outData[y][x] = v; in outfunc() 87 JpegDev jd; in decode_image() local 116 jd.inData = image_jpg_start; in decode_image() 117 jd.inPos = 0; in decode_image() 118 jd.outData = *pixels; in decode_image() 119 jd.outW = IMAGE_W; in decode_image() [all …]
|
/hal_espressif-3.6.0/examples/peripherals/spi_master/lcd/main/ |
D | decode_image.c | 48 JpegDev *jd = (JpegDev *)decoder->device; in infunc() local 50 memcpy(buf, jd->inData + jd->inPos, len); in infunc() 52 jd->inPos += len; in infunc() 60 JpegDev *jd = (JpegDev *)decoder->device; in outfunc() local 71 jd->outData[y][x] = v; in outfunc() 87 JpegDev jd; in decode_image() local 116 jd.inData = image_jpg_start; in decode_image() 117 jd.inPos = 0; in decode_image() 118 jd.outData = *pixels; in decode_image() 119 jd.outW = IMAGE_W; in decode_image() [all …]
|
/hal_espressif-3.6.0/docs/en/libraries-and-frameworks/ |
D | cloud-frameworks.rst | 35 …{IDF_TARGET_NAME} based on Joylink's `joylink_dev_sdk SDK <https://storage.jd.com/testsmartcloud/j…
|