/lvgl-latest/src/libs/freetype/ |
D | lv_ftsystem.c | 34 #define STREAM_FILE( stream ) ( (lv_fs_file_t*)stream->descriptor.pointer ) argument 45 ft_lv_fs_stream_io(FT_Stream stream, 50 ft_lv_fs_stream_close(FT_Stream stream); 90 FT_Stream_Open(FT_Stream stream, in FT_Stream_Open() argument 95 if(!stream) in FT_Stream_Open() 98 stream->descriptor.pointer = NULL; in FT_Stream_Open() 99 stream->pathname.pointer = (char *)filepathname; in FT_Stream_Open() 100 stream->base = NULL; in FT_Stream_Open() 101 stream->pos = 0; in FT_Stream_Open() 102 stream->read = NULL; in FT_Stream_Open() [all …]
|
/lvgl-latest/src/libs/tiny_ttf/ |
D | lv_tiny_ttf.c | 44 static void ttf_cb_stream_read(ttf_cb_stream_t * stream, void * data, size_t to_read); 45 static void ttf_cb_stream_seek(ttf_cb_stream_t * stream, size_t position); 58 ttf_cb_stream_t stream; member 60 const uint8_t * stream; member 158 if(ttf->stream.file != NULL) { in lv_tiny_ttf_destroy() 176 static void ttf_cb_stream_read(ttf_cb_stream_t * stream, void * data, size_t to_read) in ttf_cb_stream_read() argument 178 if(stream->file != NULL) { in ttf_cb_stream_read() 180 lv_fs_read(stream->file, data, to_read, &br); in ttf_cb_stream_read() 183 if(to_read + stream->position >= stream->size) { in ttf_cb_stream_read() 184 to_read = stream->size - stream->position; in ttf_cb_stream_read() [all …]
|
D | stb_truetype_htcw.h | 1432 static int stbtt__isfont(STBTT_STREAM_TYPE stream, stbtt_uint32 offs) in stbtt__isfont() argument 1439 STBTT_STREAM_SEEK(stream, offs); in stbtt__isfont() 1440 STBTT_STREAM_READ(stream, font, 4); in stbtt__isfont()
|
/lvgl-latest/scripts/gen_json/ |
D | get_sdl2.py | 26 stream = io.BytesIO() 28 with requests.get(url, stream=True) as r: 38 stream.write(chunk) 44 stream.seek(0) 45 zf = zipfile.ZipFile(stream) 64 stream.close()
|
/lvgl-latest/src/libs/thorvg/rapidjson/ |
D | stream.h | 84 inline void PutReserve(Stream& stream, size_t count) { in PutReserve() argument 85 (void)stream; in PutReserve() 91 inline void PutUnsafe(Stream& stream, typename Stream::Ch c) { in PutUnsafe() argument 92 stream.Put(c); in PutUnsafe() 97 inline void PutN(Stream& stream, Ch c, size_t n) { in PutN() argument 98 PutReserve(stream, n); in PutN() 100 PutUnsafe(stream, c); in PutN()
|
D | stringbuffer.h | 100 inline void PutReserve(GenericStringBuffer<Encoding, Allocator>& stream, size_t count) { in PutReserve() argument 101 stream.Reserve(count); in PutReserve() 105 inline void PutUnsafe(GenericStringBuffer<Encoding, Allocator>& stream, typename Encoding::Ch c) { in PutUnsafe() argument 106 stream.PutUnsafe(c); in PutUnsafe() 111 inline void PutN(GenericStringBuffer<UTF8<> >& stream, char c, size_t n) { in PutN() argument 112 std::memset(stream.stack_.Push<char>(n), c, n * sizeof(c)); in PutN()
|
D | istreamwrapper.h | 57 …BasicIStreamWrapper(StreamType &stream) : stream_(stream), buffer_(peekBuffer_), bufferSize_(4), b… in RAPIDJSON_DIAG_OFF() 67 …BasicIStreamWrapper(StreamType &stream, char* buffer, size_t bufferSize) : stream_(stream), buffer… in RAPIDJSON_DIAG_OFF()
|
D | ostreamwrapper.h | 48 BasicOStreamWrapper(StreamType& stream) : stream_(stream) {} in RAPIDJSON_DIAG_OFF()
|
D | filewritestream.h | 94 inline void PutN(FileWriteStream& stream, char c, size_t n) { in PutN() argument 95 stream.PutN(c, n); in PutN()
|
D | encodings.h | 687 inline void PutUnsafe(Stream& stream, typename Stream::Ch c);
|
/lvgl-latest/src/libs/thorvg/ |
D | tvgCompressor.cpp | 96 …uint8_t* stream; //Growable buffer to store our bits. Heap allocated & owned by the class in… member 105 stream = nullptr; in internalInit() 142 free(stream); in ~BitStreamWriter() 157 stream = allocBytes(sizeInBytes, stream, bytesAllocated); in allocate() 164 stream[currBytePos] = (stream[currBytePos] & ~mask) | (-bit & mask); in appendBit() 184 auto oldPtr = stream; in release() 206 const uint8_t* stream; // Pointer to the external bit stream. Not owned by the reader. member 213 …BitStreamReader(const uint8_t* bitStream, const int byteCount, const int bitCount) : stream(bitStr… in BitStreamReader() 222 bitOut = !!(stream[currBytePos] & mask); in readNextBit()
|
/lvgl-latest/docs/details/libs/ |
D | ffmpeg.rst | 7 A complete, cross-platform solution to record, convert and stream audio and video.
|
D | tiny_ttf.rst | 26 allowing tiny_ttf to stream from a file. The file must remain open the
|
/lvgl-latest/docs/details/debugging/ |
D | profiler.rst | 99 … you want to use another interface to output log information (e.g., file stream), you can redirect…
|
/lvgl-latest/docs/_static/css/ |
D | fontawesome.min.css | 5 …a-store-alt:before{content:"\f54f"}.fa-strava:before{content:"\f428"}.fa-stream:before{content:"\f…
|