Home
last modified time | relevance | path

Searched refs:in_stream (Results 1 – 4 of 4) sorted by relevance

/device/soc/hisilicon/hi3861v100/sdk_liteos/boot/flashboot/lzmaram/
Dlzmaram.c132 lzma_stream in_stream; in hi_lzma_decompress() local
134 in_stream.func = in_func; in hi_lzma_decompress()
135 in_stream.offset = 13; /* offset 13 */ in hi_lzma_decompress()
146 ret = LzmaDecode2(lzma_head, 5, &lzma_stat, &alloc, &in_stream, /* size 5 */ in hi_lzma_decompress()
/device/soc/esp/esp32/components/esp_system/
Desp_async_memcpy.c282 async_memcpy_stream_t *in_stream = NULL; in async_memcpy_isr_on_rx_done_event() local
296 in_stream = __containerof(next_desc, async_memcpy_stream_t, desc); in async_memcpy_isr_on_rx_done_event()
298 if (in_stream->cb) { in async_memcpy_isr_on_rx_done_event()
300 if (in_stream->cb(asmcp, &e, in_stream->cb_args)) { in async_memcpy_isr_on_rx_done_event()
303 in_stream->cb = NULL; in async_memcpy_isr_on_rx_done_event()
304 in_stream->cb_args = NULL; in async_memcpy_isr_on_rx_done_event()
/device/soc/hisilicon/hi3861v100/sdk_liteos/boot/flashboot/include/
Dlzmaram.h34 i_sz_alloc *alloc, lzma_stream *in_stream, lzma_stream *out_stream,
/device/soc/hisilicon/hi3861v100/sdk_liteos/third_party/u-boot-v2019.07/hisilicon_patch/
Dhisilicon-u-boot-v2019.07.patch824 +SRes Decode2(CLzmaDec* state, Byte* in_buf, LZMA_STREAM_S* in_stream, Byte* out_buf, LZMA_STREAM_S…
948 + LZMA_STREAM_S* in_stream, LZMA_STREAM_S* out_stream, unsigned int uncompress_len, …
1006 + res = Decode2(&p, in_buf, in_stream, out_buf, out_stream, uncompress_len, compress_len, status…
1028 +SRes Decode2(CLzmaDec* state, Byte* in_buf, LZMA_STREAM_S* in_stream, Byte* out_buf, LZMA_STREAM_S…
1033 + unsigned int in_offset = in_stream->offset;
1043 + RINOK(in_stream->func(in_offset, in_buf, in_size));
1044 + RINOK(in_stream->func(in_offset, in_buf, 1)); /* Make sure the readings are corr…
1122 + ISzAlloc* alloc, LZMA_STREAM_S* in_stream, LZMA_STREAM_S* out_…