Searched refs:in (Results 1 - 25 of 227) sorted by relevance

12345678910

/u-boot/tools/kermit/
H A Dflash_param25 in 10 =>
28 in 10 =>
30 in 5 autoboot
32 in 10 =>
35 in 10 =>
37 in 10 =>
39 in 10 =>
41 #in 10 =>
43 #in 10 =>
45 in 1
[all...]
H A Dsend_image19 in 10 =>
21 in 10 download ...
24 in 10 ## Start Addr
/u-boot/fs/yaffs2/
H A Dyaffs_yaffs1.c35 struct yaffs_obj *in; local
91 /* For each chunk in each block that needs scanning.... */
110 /* An unassigned chunk in the block
116 /* We're looking at the first chunk in
141 in = yaffs_find_or_create_by_number(dev,
148 if (!in)
151 if (in) {
153 (in, tags.chunk_id, chunk, 1))
161 if (in &&
162 in
[all...]
/u-boot/lib/
H A Dlz4_wrapper.c21 const void *in = src; local
27 { /* With in-place decompression the header may become invalid later. */
35 magic = get_unaligned_le32(in);
36 in += sizeof(u32);
37 flags = *(u8 *)in;
38 in += sizeof(u8);
39 block_desc = *(u8 *)in;
40 in += sizeof(u8);
58 in += sizeof(u64);
61 in
[all...]
H A Dmd5.c9 * written by Colin Plumb in 1993, no copyright is claimed.
10 * This code is in the public domain; do with it what you wish.
36 MD5Transform(__u32 buf[4], __u32 const in[16]);
85 t = (t >> 3) & 0x3f; /* Bytes already in shsInfo->data */
90 unsigned char *p = (unsigned char *) ctx->in + t;
98 byteReverse(ctx->in, 16);
99 MD5Transform(ctx->buf, (__u32 *) ctx->in);
103 /* Process data in 64-byte chunks */
106 memmove(ctx->in, buf, 64);
107 byteReverse(ctx->in, 1
182 MD5Transform(__u32 buf[4], __u32 const in[16]) argument
[all...]
/u-boot/tools/
H A Dimx9_image.sh4 # Script to check whether the file exists in mkimage cfg files for the i.MX9.
11 for f in $blobs; do
27 sed -in "/$f/ s/./#&/" $file
H A Dimx_cntr_image.sh4 # script to check whether the file exists in imximage.cfg for i.MX8
11 for f in $blobs; do
26 sed -in "s;$f;$tmp;" $file
H A Dnetconsole5 echo "Usage: $0 <board-IP> [board-port [board-in-port]]"
17 case $1 in
31 echo Board in port: ${board_in_port}
37 for nc in socat netcat nc ; do
47 # see if ncb is in $PATH
55 # maybe it's in the same dir as the netconsole script
H A Djtagconsole18 case $1 in
/u-boot/fs/erofs/
H A Ddecompress.h8 char *in, *out; member in struct:z_erofs_decompress_req
/u-boot/scripts/
H A Dshow-gnu-make9 # It is not a good idea to hard-code the command name in scripts
15 for m in make gmake
/u-boot/drivers/firmware/scmi/
H A Dsandbox-scmi_agent.c23 * SCMI protocols embedded in U-Boot. Currently:
61 * struct scmi_channel - Channel instance referenced in SCMI drivers
377 struct scmi_base_set_device_permissions_in *in = NULL; local
380 if (!msg->in_msg || msg->in_msg_sz < sizeof(*in) ||
384 in = (struct scmi_base_set_device_permissions_in *)msg->in_msg;
387 if (in->agent_id != 1 || in->device_id != 0)
389 else if (in->flags & ~SCMI_BASE_SET_DEVICE_PERMISSIONS_ACCESS)
391 else if (in->flags & SCMI_BASE_SET_DEVICE_PERMISSIONS_ACCESS)
411 struct scmi_base_set_protocol_permissions_in *in local
450 struct scmi_base_reset_agent_configuration_in *in = NULL; local
606 struct scmi_pwd_state_set_in *in; local
721 struct scmi_clk_attribute_in *in = NULL; local
756 struct scmi_clk_rate_set_in *in = NULL; local
786 struct scmi_clk_rate_get_in *in = NULL; local
814 struct scmi_clk_state_in *in = NULL; local
843 struct scmi_rd_attr_in *in = NULL; local
871 struct scmi_rd_reset_in *in = NULL; local
913 struct scmi_voltd_attr_in *in = NULL; local
942 struct scmi_voltd_config_set_in *in = NULL; local
978 struct scmi_voltd_config_get_in *in = NULL; local
1009 struct scmi_voltd_level_set_in *in = NULL; local
1036 struct scmi_voltd_level_get_in *in = NULL; local
[all...]
/u-boot/arch/arm/mach-mvebu/armada3700/
H A Defuse.c84 u32 in[2]; local
94 in[0] = row;
95 in[1] = word * 32;
96 res = mbox_do_cmd(MBOX_CMD_OTP_READ_32B, in, 2, out, 1);
107 in[0] = row;
108 res = mbox_do_cmd(MBOX_CMD_OTP_READ, in, 1, out, 3);
118 u32 in[4]; local
129 in[0] = row;
130 in[1] = word * 32;
131 in[
[all...]
/u-boot/fs/jffs2/
H A Dcompr_rubin.c8 * Heavily modified by Russ Dill <Russ.Dill@asu.edu> in an attempt at
16 * except in compliance with the Licence. You may obtain a copy of
27 * terms of the GNU General Public License version 2 (the "GPL"), in
46 void rubin_do_decompress(unsigned char *bits, unsigned char *in, argument
61 temp = *(u32 *) in;
69 rec_q = (in[0] << 8) | in[1];
72 /* in byte */
86 u32 *p = (u32 *)in;
89 in
[all...]
/u-boot/lib/zlib/
H A Dinffast.c3 * For conditions of distribution and use, see copyright notice in zlib.h
21 inflate execution time is spent in this routine.
35 BAD -- error in block data
55 z_const unsigned char FAR *in; /* local strm->next_in */ local
56 z_const unsigned char FAR *last; /* have enough input while in < last */
64 unsigned whave; /* valid bytes in the window */
82 in = strm->next_in;
83 last = in + (strm->avail_in - 5);
84 if (in > last && strm->avail_in > 5) {
89 strm->avail_in = 0xffffffff - (uintptr_t)in;
[all...]
/u-boot/drivers/power/regulator/
H A Dscmi_regulator.c31 struct scmi_voltd_config_set_in in = { local
38 in, out);
51 struct scmi_voltd_config_get_in in = { local
57 in, out);
74 struct scmi_voltd_level_set_in in = { local
81 in, out);
94 struct scmi_voltd_level_get_in in = { local
100 in, out);
131 struct scmi_voltd_attr_in in = { 0 }; local
136 .in_msg = (u8 *)&in,
[all...]
/u-boot/include/xen/interface/io/
H A Dconsole.h18 char in[1024]; member in struct:xencons_interface
/u-boot/include/u-boot/
H A Dmd5.h17 unsigned char in[64]; member in union:MD5Context::__anon265
27 * Calculate and store in 'output' the MD5 digest of 'len' bytes at
33 * Calculate and store in 'output' the MD5 digest of 'len' bytes at 'input'.
/u-boot/arch/arm/mach-mvebu/include/mach/
H A Dmbox.h38 int mbox_do_cmd(enum mbox_cmd cmd, u32 *in, int nin, u32 *out, int nout);
/u-boot/lib/zstd/
H A Dzstd.c14 int zstd_decompress(struct abuf *in, struct abuf *out) argument
40 len = zstd_find_frame_compressed_size(abuf_data(in), abuf_size(in));
49 abuf_data(in), len);
/u-boot/dts/upstream/scripts/
H A Dmerge-new-release.sh3 case $1 in
33 case "${v%-dts}" in
/u-boot/drivers/reset/
H A Dreset-scmi.c18 struct scmi_rd_reset_in in = { local
26 in, out);
48 struct scmi_rd_attr_in in = { local
54 in, out);
/u-boot/include/
H A Dcharset.h54 * Return: length in u16 after conversion to utf-16 without the
64 * Return: length in u16 after conversion to utf-16 without the
113 * Return: length in code points. If an invalid UTF-16 sequence is
125 * Return: length in bytes after conversion to utf-8 without the
135 * Return: length in bytes after conversion to utf-8 without the
181 * Return: 0 if the first n u16 are the same in s1 and s2
182 * < 0 if the first different u16 in s1 is less than the
183 * corresponding u16 in s2
184 * > 0 if the first different u16 in s1 is greater than the
194 * Return: 0 if the first n u16 are the same in s
[all...]
/u-boot/test/
H A Dcompression.c36 "If I were any shorter, there wouldn't be much sense in\n"
37 "compressing me in the first place. At least with lzo, anyway,\n"
38 "which appears to behave poorly in the face of short text\n"
150 void *in, unsigned long in_size,
157 ret = gzip(out, &inout_size, in, in_size);
165 void *in, unsigned long in_size,
172 ret = gunzip(out, out_max, in, &inout_size);
180 void *in, unsigned long in_size,
184 /* There is no bzip2 compression in u-boot, so fake it. */
186 ut_asserteq_mem(plain, in, in_siz
149 compress_using_gzip(struct unit_test_state *uts, void *in, unsigned long in_size, void *out, unsigned long out_max, unsigned long *out_size) argument
164 uncompress_using_gzip(struct unit_test_state *uts, void *in, unsigned long in_size, void *out, unsigned long out_max, unsigned long *out_size) argument
179 compress_using_bzip2(struct unit_test_state *uts, void *in, unsigned long in_size, void *out, unsigned long out_max, unsigned long *out_size) argument
198 uncompress_using_bzip2(struct unit_test_state *uts, void *in, unsigned long in_size, void *out, unsigned long out_max, unsigned long *out_size) argument
214 compress_using_lzma(struct unit_test_state *uts, void *in, unsigned long in_size, void *out, unsigned long out_max, unsigned long *out_size) argument
233 uncompress_using_lzma(struct unit_test_state *uts, void *in, unsigned long in_size, void *out, unsigned long out_max, unsigned long *out_size) argument
248 compress_using_lzo(struct unit_test_state *uts, void *in, unsigned long in_size, void *out, unsigned long out_max, unsigned long *out_size) argument
267 uncompress_using_lzo(struct unit_test_state *uts, void *in, unsigned long in_size, void *out, unsigned long out_max, unsigned long *out_size) argument
283 compress_using_lz4(struct unit_test_state *uts, void *in, unsigned long in_size, void *out, unsigned long out_max, unsigned long *out_size) argument
302 uncompress_using_lz4(struct unit_test_state *uts, void *in, unsigned long in_size, void *out, unsigned long out_max, unsigned long *out_size) argument
318 compress_using_zstd(struct unit_test_state *uts, void *in, unsigned long in_size, void *out, unsigned long out_max, unsigned long *out_size) argument
337 uncompress_using_zstd(struct unit_test_state *uts, void *in, unsigned long in_size, void *out, unsigned long out_max, unsigned long *out_size) argument
511 compress_using_none(struct unit_test_state *uts, void *in, unsigned long in_size, void *out, unsigned long out_max, unsigned long *out_size) argument
[all...]
/u-boot/drivers/clk/
H A Dclk_scmi.c38 struct scmi_clk_attribute_in in = { local
45 .in_msg = (u8 *)&in,
46 .in_msg_sz = sizeof(in),
63 struct scmi_clk_state_in in = { local
70 in, out);
92 struct scmi_clk_rate_get_in in = { local
98 in, out);
114 struct scmi_clk_rate_set_in in = { local
123 in, out);

Completed in 132 milliseconds

12345678910