Searched refs:dest (Results 101 - 125 of 200) sorted by relevance

12345678

/u-boot/include/u-boot/
H A Dzlib.h547 ZEXTERN int ZEXPORT deflateCopy OF((z_streamp dest,
715 ZEXTERN int ZEXPORT uncompress OF((Bytef *dest, uLongf *destLen,
733 ZEXTERN int ZEXPORT uncompress2 OF((Bytef *dest, uLongf *destLen,
/u-boot/drivers/ram/sifive/
H A Dsifive_ddr.c109 static void sdram_copy_to_reg(volatile u32 *dest, argument
115 writel(*src, dest);
117 dest++;
/u-boot/drivers/remoteproc/
H A Dpru_rproc.c287 static int pru_rproc_memcpy(void *dest, void *src, size_t count) argument
290 int *d = dest;
295 if ((long)dest % 4 || count % 4)
/u-boot/tools/
H A Dsunxi-spl-image-builder.c32 const char *dest; member in struct:image_info
266 dst = fopen(info->dest, "w");
268 fprintf(stderr, "Failed to open dest file (%s)\n", info->dest);
467 info.dest = argv[optind + 1];
/u-boot/include/
H A D_exports.h76 EXPORT_FUNC(strcpy, char *, strcpy, char *dest, const char *src)
H A Dnet.h575 void net_set_ip_header(uchar *pkt, struct in_addr dest, struct in_addr source,
577 void net_set_udp_header(uchar *pkt, struct in_addr dest, int dport,
655 * @dest: IP address to send the datagram to
665 int net_send_ip_packet(uchar *ether, struct in_addr dest, int dport, int sport,
681 int net_send_udp_packet(uchar *ether, struct in_addr dest, int dport,
H A Dos.h380 * @dest: buffer containing executable image
384 int os_jump_to_image(const void *dest, int size);
/u-boot/tools/dtoc/
H A Dmain.py102 parser.add_argument('-t', '--test', action='store_true', dest='test',
H A Ddtoc102 parser.add_argument('-t', '--test', action='store_true', dest='test',
/u-boot/arch/powerpc/include/asm/
H A Dfsl_dma.h92 #define FSL_DMA_DATR_EDAD_MASK 0x000001ff /* Extended dest addr */
118 int dmacpy(phys_addr_t dest, phys_addr_t src, phys_size_t n);
/u-boot/arch/mips/mach-mtmips/mt7621/spl/
H A Ddram.c101 static inline void word_copy(u32 *dest, const u32 *src, u32 count) argument
106 dest[i] = src[i];
/u-boot/arch/arm/include/asm/mach-imx/
H A Dsys_proto.h168 u32 (*download_image)(u8 *dest, u32 offset, u32 size, u32 xor);
207 u32 rom_api_download_image(u8 *dest, u32 offset, u32 size);
/u-boot/drivers/power/
H A Daxp221.c242 u8 *dest = (u8 *)sid; local
254 ret = pmic_bus_read(AXP221_SID + i, &dest[i]);
/u-boot/drivers/net/
H A Dnetconsole.c36 static void nc_wait_arp_handler(uchar *pkt, unsigned dest, argument
43 static void nc_handler(uchar *pkt, unsigned dest, struct in_addr sip, argument
H A De1000_spi.c394 void *dest; local
402 dest = (void *)hextoul(argv[0], NULL);
423 if (e1000_spi_eeprom_dump(hw, dest, offset, length, true) < 0) {
/u-boot/board/cobra5272/
H A Dflash.c250 static int write_word(flash_info_t *info, ulong dest, ulong data) argument
252 volatile u16 *addr = (volatile u16 *) dest;
/u-boot/drivers/mmc/
H A Dtmio-common.c251 char *dest = data->dest; local
256 ret = tmio_sd_pio_read_one_block(dev, cmd, dest,
265 dest += data->blocksize;
340 buf = data->dest;
/u-boot/test/dm/
H A Dvideo.c71 void *dest; local
75 dest = malloc(priv->fb_size);
76 if (!dest)
78 ret = BZ2_bzBuffToBuffCompress(dest, &destlen,
81 free(dest);
/u-boot/test/
H A Dunicode_ut.c805 u16 dest[] = {0x3053, 0x3093, 0x306b, 0x3061, 0x306f, 0}; local
813 /* dest and src are empty string */
818 /* dest is empty string */
827 memcpy(buf, dest, sizeof(dest));
830 ut_assert(!unicode_test_u16_strcmp(buf, dest, 40));
835 memcpy(buf, dest, sizeof(dest));
840 ut_assert(!unicode_test_u16_strcmp(buf, dest, 40));
/u-boot/arch/arm/mach-imx/imx8ulp/upower/
H A Dupower_api.c229 void msg_copy(u32 *dest, u32 *src, u32 size) argument
231 *dest = *src;
233 *(dest + 1) = *(src + 1);
/u-boot/cmd/
H A Dpstore.c79 * @dest: Buffer used to store unwrapped record
89 static u32 pstore_get_buffer(u32 sig, phys_addr_t buffer, u32 size, char *dest) argument
114 memcpy(dest, &prb->data[prb->start], prb->size - prb->start);
115 memcpy(dest + prb->size - prb->start, &prb->data[0], prb->start);
/u-boot/lib/zlib/
H A Ddeflate.c959 int ZEXPORT deflateCopy (dest, source)
960 z_streamp dest;
970 if (source == Z_NULL || dest == Z_NULL || source->state == Z_NULL) {
976 zmemcpy(dest, source, sizeof(z_stream));
978 ds = (deflate_state *) ZALLOC(dest, 1, sizeof(deflate_state));
980 dest->state = (struct internal_state FAR *) ds;
982 ds->strm = dest;
984 ds->window = (Bytef *) ZALLOC(dest, ds->w_size, 2*sizeof(Byte));
985 ds->prev = (Posf *) ZALLOC(dest, ds->w_size, sizeof(Pos));
986 ds->head = (Posf *) ZALLOC(dest, d
[all...]
/u-boot/drivers/ram/rockchip/
H A Dsdram_common.c173 void sdram_copy_to_reg(u32 *dest, const u32 *src, u32 n) argument
178 writel(*src, dest);
180 dest++;
/u-boot/drivers/xen/
H A Dxenbus.c58 char *dest = d; local
62 memcpy(dest, ring + off, c1);
63 memcpy(dest + c1, ring, c2);
/u-boot/drivers/mtd/
H A Dcfi_flash.c786 static int flash_write_cfiword(flash_info_t *info, ulong dest, cfiword_t cword) argument
788 void *dstaddr = (void *)dest;
826 sect = find_sector(info, dest);
833 sect = find_sector(info, dest);
861 sect = find_sector(info, dest);
873 static int flash_write_cfibuffer(flash_info_t *info, ulong dest, uchar *cp, argument
880 u8 *dst = (u8 *)dest;
937 sector = find_sector(info, dest);
1155 void *dest; local
1158 dest
[all...]

Completed in 227 milliseconds

12345678