| /u-boot/fs/jffs2/ |
| A D | mini_inflate.c | 39 stream->codes.lengths = stream->code_lengths; in init_stream() 40 stream->codes.symbols = stream->code_symbols; in init_stream() 41 stream->codes.count = stream->code_count; in init_stream() 42 stream->codes.first = stream->code_first; in init_stream() 43 stream->codes.pos = stream->code_pos; in init_stream() 49 stream->lengths.count = stream->length_count; in init_stream() 50 stream->lengths.first = stream->length_first; in init_stream() 51 stream->lengths.pos = stream->length_pos; in init_stream() 59 stream->distance.pos = stream->distance_pos; in init_stream() 116 stream->memcpy(dest, stream->data, length); in decompress_none() [all …]
|
| /u-boot/fs/cramfs/ |
| A D | uncompress.c | 29 static z_stream stream; variable 36 inflateReset (&stream); in cramfs_uncompress_block() 38 stream.next_in = src; in cramfs_uncompress_block() 41 stream.next_out = dst; in cramfs_uncompress_block() 48 return stream.total_out; in cramfs_uncompress_block() 60 stream.zalloc = gzalloc; in cramfs_uncompress_init() 61 stream.zfree = gzfree; in cramfs_uncompress_init() 62 stream.next_in = 0; in cramfs_uncompress_init() 63 stream.avail_in = 0; in cramfs_uncompress_init() 68 stream.outcb = Z_NULL; in cramfs_uncompress_init() [all …]
|
| /u-boot/lib/zlib/ |
| A D | uncompr.c | 34 z_stream stream; local 51 stream.avail_in = 0; 53 stream.zfree = (free_func)0; 54 stream.opaque = (voidpf)0; 56 err = inflateInit(&stream); 60 stream.next_out = dest; 61 stream.avail_out = 0; 66 left -= stream.avail_out; 69 if (stream.avail_in == 0) { 71 len -= stream.avail_in; [all …]
|
| /u-boot/fs/btrfs/ |
| A D | compression.c | 90 z_stream stream; in decompress_zlib() local 94 memset(&stream, 0, sizeof(stream)); in decompress_zlib() 98 stream.total_in = 0; in decompress_zlib() 100 stream.next_out = dbuf; in decompress_zlib() 101 stream.avail_out = dlen; in decompress_zlib() 102 stream.total_out = 0; in decompress_zlib() 116 while (stream.total_in < clen) { in decompress_zlib() 117 stream.next_in = cbuf + stream.total_in; in decompress_zlib() 118 stream.avail_in = min((u32) (clen - stream.total_in), in decompress_zlib() 126 res = stream.total_out; in decompress_zlib() [all …]
|
| /u-boot/tools/ |
| A D | getline.c | 21 static int getstr(char **lineptr, size_t *n, FILE *stream, in getstr() argument 28 if (!lineptr || !n || !stream) in getstr() 42 register int c = getc(stream); in getstr() 63 if (c == EOF || ferror (stream)) { in getstr() 86 int getline (char **lineptr, size_t *n, FILE *stream) in getline() argument 88 return getstr(lineptr, n, stream, '\n', 0); in getline()
|
| A D | getline.h | 1 int getline(char **lineptr, size_t *n, FILE *stream);
|
| A D | kwboot.c | 2256 kwboot_usage(FILE *stream, char *progname) in kwboot_usage() argument 2258 fprintf(stream, in kwboot_usage() 2261 fprintf(stream, "\n"); in kwboot_usage() 2262 fprintf(stream, in kwboot_usage() 2264 fprintf(stream, in kwboot_usage() 2270 fprintf(stream, in kwboot_usage() 2272 fprintf(stream, "\n"); in kwboot_usage() 2273 fprintf(stream, " -t: mini terminal\n"); in kwboot_usage() 2274 fprintf(stream, "\n"); in kwboot_usage() 2275 fprintf(stream, " -B <baud>: set baud rate\n"); in kwboot_usage() [all …]
|
| A D | pblimage.c | 64 static void pbl_fget(size_t size, FILE *stream) in pbl_fget() argument 70 c_temp = fgetc(stream); in pbl_fget()
|
| /u-boot/arch/x86/lib/ |
| A D | acpigen.c | 35 static char stream[] = { in acpigen_write_empty_pct() local 50 acpigen_emit_stream(ctx, stream, ARRAY_SIZE(stream)); in acpigen_write_empty_pct()
|
| /u-boot/lib/lzma/ |
| A D | Types.h | 127 SRes SeqInStream_Read(ISeqInStream *stream, void *buf, size_t size); 128 SRes SeqInStream_Read2(ISeqInStream *stream, void *buf, size_t size, SRes errorType); 129 SRes SeqInStream_ReadByte(ISeqInStream *stream, Byte *buf); 165 SRes LookInStream_LookRead(ILookInStream *stream, void *buf, size_t *size); 166 SRes LookInStream_SeekTo(ILookInStream *stream, UInt64 offset); 169 SRes LookInStream_Read2(ILookInStream *stream, void *buf, size_t size, SRes errorType); 170 SRes LookInStream_Read(ILookInStream *stream, void *buf, size_t size);
|
| A D | history.txt | 52 If encoded stream was corrupted, decoder could access memory 118 If encoded stream was corrupted, decoder could access memory 201 If _LZMA_OUT_READ was defined, and if encoded stream was corrupted, 214 LZMA-Encoder didn't release output stream in some cases.
|
| A D | lzma.txt | 375 current output buffer covers last bytes of stream. 410 - Buffer for input stream: any size (for example, 16 KB) 411 - Buffer for output stream: any size (for example, 16 KB) 427 3) Init LzmaDec structure before any new LZMA stream. And call LzmaDec_DecodeToBuf in loop 538 but you provide pointers to buffers instead of pointers to stream callbacks:
|
| /u-boot/test/py/tests/ |
| A D | vboot_forge.py | 187 def parse_struct(stream): argument 191 tag = bytearray(stream.read(4))[3] 195 name += stream.read(4) 199 item = parse_struct(stream) 205 item = parse_struct(stream) 210 h = PropHeader.unpack_from(stream.read(PropHeader.size)) 212 value = stream.read(length)[:h.value_size]
|
| /u-boot/tools/u_boot_pylib/ |
| A D | test_util.py | 123 def __init__(self, stream, descriptions, verbosity): argument 125 super().__init__(stream, descriptions, verbosity) 180 stream=sys.stdout,
|
| A D | cros_subprocess.py | 274 def output(self, stream, data): argument 276 if stream == sys.stdout: 278 if stream == sys.stderr:
|
| /u-boot/test/py/ |
| A D | multiplexed_log.py | 671 def write(self, stream, data, implicit=False): argument 690 if stream != self.last_stream: 694 stream.name + '</div>\n') 702 self.last_stream = stream
|
| /u-boot/arch/sandbox/cpu/ |
| A D | sdl.c | 440 void sandbox_sdl_fill_audio(void *udata, Uint8 *stream, int len) in sandbox_sdl_fill_audio() argument 456 memcpy(stream, buf->data + buf->pos, avail); in sandbox_sdl_fill_audio() 457 stream += avail; in sandbox_sdl_fill_audio() 467 memset(stream, 0, len); in sandbox_sdl_fill_audio()
|
| /u-boot/doc/usage/cmd/ |
| A D | loadm.rst | 26 destination address of the byte stream to be loaded
|
| A D | seama.rst | 29 destination address of the byte stream to be loaded
|
| /u-boot/doc/device-tree-bindings/gpio/ |
| A D | mscc_sgpio.txt | 26 the serialized gpio stream. One 'port' will transport from 1 to 4
|
| /u-boot/board/bsh/imx6ulz_smm_m2/ |
| A D | README | 34 # This command will be run when ROM support stream mode
|
| /u-boot/lib/zstd/decompress/ |
| A D | huf_decompress.c | 247 …mainingDStream(BIT_DStream_t* bit, HUF_DecompressAsmArgs const* args, int stream, BYTE* segmentEnd) in HUF_initRemainingDStream() argument 250 if (args->op[stream] > segmentEnd) in HUF_initRemainingDStream() 257 if (args->ip[stream] < args->iend[stream] - 8) in HUF_initRemainingDStream() 261 bit->bitContainer = MEM_readLE64(args->ip[stream]); in HUF_initRemainingDStream() 262 bit->bitsConsumed = ZSTD_countTrailingZeros((size_t)args->bits[stream]); in HUF_initRemainingDStream() 265 bit->ptr = (const char*)args->ip[stream]; in HUF_initRemainingDStream()
|
| /u-boot/include/usb/ |
| A D | xhci.h | 457 #define DB_VALUE(ep, stream) ((((ep) + 1) & 0xff) | ((stream) << 16)) argument
|
| /u-boot/doc/device-tree-bindings/video/ |
| A D | exynos_mipi_dsi.txt | 14 samsung,dsim-config-e-pixel-format: pixel stream format for main
|
| /u-boot/scripts/kconfig/ |
| A D | confdata.c | 249 static ssize_t compat_getline(char **lineptr, size_t *n, FILE *stream) in compat_getline() argument 255 int c = getc(stream); in compat_getline()
|