Home
last modified time | relevance | path

Searched refs:decode (Results 1 – 15 of 15) sorted by relevance

/lvgl-latest/scripts/
Drelease_branch_updater.py109 in out.decode().strip().splitlines()
119 lvgl_sha = out.decode().strip()
125 port_lvgl_submodule_sha = out.decode().strip()
142 port_lv_conf_defaults = next(iter(out.decode().strip().splitlines()), None)
147 port_lv_conf_h = next(iter(out.decode().strip().splitlines()), None)
157 diff = out.decode().strip()
165 diff = out.decode().strip()
197 branches = out.decode().strip().splitlines()
/lvgl-latest/src/libs/lodepng/
Dlodepng.h261 unsigned decode(std::vector<unsigned char> & out, unsigned & w, unsigned & h,
264 unsigned decode(std::vector<unsigned char> & out, unsigned & w, unsigned & h,
275 unsigned decode(std::vector<unsigned char> & out, unsigned & w, unsigned & h,
1116 unsigned decode(std::vector<unsigned char> & out, unsigned & w, unsigned & h,
1119 unsigned decode(std::vector<unsigned char> & out, unsigned & w, unsigned & h,
Dlodepng.c7532 unsigned decode(std::vector<unsigned char> & out, unsigned & w, unsigned & h, const unsigned char *… in decode() function
7548 unsigned decode(std::vector<unsigned char> & out, unsigned & w, unsigned & h, in decode() function
7551 return decode(out, w, h, in.empty() ? 0 : &in[0], (unsigned)in.size(), colortype, bitdepth); in decode()
7554 unsigned decode(std::vector<unsigned char> & out, unsigned & w, unsigned & h, in decode() function
7568 unsigned decode(std::vector<unsigned char> & out, unsigned & w, unsigned & h, in decode() function
7572 return decode(out, w, h, state, in.empty() ? 0 : &in[0], in.size()); in decode()
7576 unsigned decode(std::vector<unsigned char> & out, unsigned & w, unsigned & h, const std::string & f… in decode() function
7584 return decode(out, w, h, buffer, colortype, bitdepth); in decode()
/lvgl-latest/scripts/gen_json/
Dgen_json.py48 data = f.read().decode('utf-8').split('\n')
168 sys.stdout.write(out.decode('utf-8').strip() + '\n')
170 sys.stderr.write(err.decode('utf-8').strip() + '\n')
/lvgl-latest/tests/micropy_test/
D__init__.py125 log('---> ERROR: ', error_data.decode('utf-8'))
139 log('---> ERROR: ', error_data.decode('utf-8'))
340 error.append(err.decode('utf-8'))
Dmicropy.py73 print(ubinascii.hexlify(bytes(chunk)).decode('utf-8'))
/lvgl-latest/docs/details/main-components/
Dimage.rst91 needs to be used to decode the image.
230 library. In other words, the image decoder must decode the *Raw* images
273 * Open a PNG image and decode it into dsc.decoded
301 * @param full_area input parameter. the full area to decode after enough subsequent calls
304 … @return LV_RESULT_OK: ok; LV_RESULT_INVALID: failed or there is nothing left to decode
312 * incrementally decode the image by calling it repeatedly until it returns `LV_RESULT_INVALID`.
324 decoded_area->y2 = decoded_area->y1; /* decode line-by-line, starting with the first line */
342 /* otherwise decoding is already in progress. decode the next line */
382 decode the entire image (e.g. no memory for it), set ``dsc->decoded = NULL`` and
385 - ``decoder_get_area`` is optional. In this case you should decode the whole image In
[all …]
Dfont.rst67 Although LVGL can decode and display any Unicode characters
/lvgl-latest/docs/details/libs/
Dgif.rst41 To decode and display a GIF animation the following amount of RAM is
Dlodepng.rst23 As it might take significant time to decode PNG images LVGL's :ref:`overview_image_caching` feature…
/lvgl-latest/docs/_ext/
Dlv_example.py46 contents = f.read().decode('utf-8')
/lvgl-latest/docs/
Dbuild.py461 data = f.read().decode('utf-8')
537 index_data = f.read().decode('utf-8')
Ddoc_builder.py203 d = f.read().decode('utf-8')
1337 data = f.read().decode('utf-8')
1412 sys.stdout.write(out.decode("utf-8"))
1415 sys.stderr.write(err.decode("utf-8"))
1637 data = f.read().decode('utf-8')
DROADMAP.rst113 (see `here <https://github.com/lvgl/lvgl/tree/arch/img-decode-rework>`__)
/lvgl-latest/
DKconfig654 save the continuous open/decode of images.