Home
last modified time | relevance | path

Searched refs:fill (Results 1 – 25 of 37) sorted by relevance

12

/rk3399_rockchip-uboot/lib/zlib/
H A Dinftrees.c46 unsigned fill; /* index for replicating entries */ in inflate_table() local
230 fill = 1U << curr; in inflate_table()
231 min = fill; /* save offset to next table */ in inflate_table()
233 fill -= incr; in inflate_table()
234 next[(huff >> drop) + fill] = this; in inflate_table()
235 } while (fill != 0); in inflate_table()
/rk3399_rockchip-uboot/test/fs/
H A Dfat-noncontig-test.sh59 fill=/dev/urandom
99 dd if=${fill} of=${fn} bs=512 count=${sects} >/dev/null 2>&1
101 dd if=${fill} of=${fn} bs=512 count=${sects} >/dev/null 2>&1
108 dd if=${fill} of=${mnttestfn} bs=511 >/dev/null 2>&1
/rk3399_rockchip-uboot/fs/ext4/
H A Dext4_sparse.c145 u32 i, fill; in ext4_unsparse() local
223 fill = *(u32 *)buf; in ext4_unsparse()
224 if (fill != 0) { in ext4_unsparse()
226 BLOCK_CNT(chunk_len, desc), fill)) in ext4_unsparse()
/rk3399_rockchip-uboot/lib/
H A Dsha512.c239 size_t fill; in sha512_update() local
246 fill = 128 - left; in sha512_update()
253 if (left && ilen >= fill) { in sha512_update()
254 memcpy((void *)(ctx->buffer + left), input, fill); in sha512_update()
259 input += fill; in sha512_update()
260 ilen -= fill; in sha512_update()
H A Dsha256.c229 uint32_t left, fill; in sha256_update() local
243 fill = 64 - left; in sha256_update()
251 if (left && length >= fill) { in sha256_update()
252 memcpy((void *) (ctx->buffer + left), (void *) input, fill); in sha256_update()
254 length -= fill; in sha256_update()
255 input += fill; in sha256_update()
H A Dsha1.c268 int fill; in sha1_update() local
282 fill = 64 - left; in sha1_update()
290 if (left && ilen >= fill) { in sha1_update()
291 memcpy ((void *) (ctx->buffer + left), (void *) input, fill); in sha1_update()
293 input += fill; in sha1_update()
294 ilen -= fill; in sha1_update()
/rk3399_rockchip-uboot/drivers/bios_emulator/include/x86emu/
H A Dprim_ops.h100 u16 shld_word (u16 d, u16 fill, u8 s);
101 u32 shld_long (u32 d, u32 fill, u8 s);
102 u16 shrd_word (u16 d, u16 fill, u8 s);
103 u32 shrd_long (u32 d, u32 fill, u8 s);
/rk3399_rockchip-uboot/board/freescale/mx7ulp_evk/
H A DMakefile10 $(OBJCOPY) -O binary --gap-fill 0xff $< $@
/rk3399_rockchip-uboot/arch/arm/mach-keystone/
H A Dconfig.mk24 --gap-fill=0
/rk3399_rockchip-uboot/arch/nds32/dts/
H A Dag101p.dts31 /* FIXME: to fill correct frqeuency */
H A Dae3xx.dts31 /* FIXME: to fill correct frqeuency */
/rk3399_rockchip-uboot/doc/
H A DREADME.mxc_hab48 objcopy -I binary -O binary --pad-to 0x2000 --gap-fill=0x00 \
93 objcopy -I binary -O binary --pad-to 0x2000 --gap-fill=0x00 \
96 objcopy -I binary -O binary --pad-to <blob_dst> --gap-fill=0x00 \
H A DREADME.commands4 to fill in a cmd_tbl_t struct.
H A DREADME.bitbangMII27 When the CONFIG_BITBANGMII_MULTI is also defined, the board code needs to fill
H A DREADME.arm-relocation68 - fill in bd_t infos (check)
/rk3399_rockchip-uboot/tools/rockchip/
H A Dresource_tool.c227 int fill; in sha1_update() local
234 fill = 64 - left; in sha1_update()
242 if (left && ilen >= fill) { in sha1_update()
243 memcpy ((void *) (ctx->buffer + left), (void *) input, fill); in sha1_update()
245 input += fill; in sha1_update()
246 ilen -= fill; in sha1_update()
479 uint32_t left, fill; in sha256_update() local
485 fill = 64 - left; in sha256_update()
493 if (left && length >= fill) { in sha256_update()
494 memcpy((void *) (ctx->buffer + left), (void *) input, fill); in sha256_update()
[all …]
/rk3399_rockchip-uboot/tools/
H A Dmxsimage.h167 } fill; member
H A Dmxsimage.c1109 ccmd->fill.address = address; in sb_build_command_fill()
1110 ccmd->fill.count = length; in sb_build_command_fill()
1111 ccmd->fill.pattern = pattern; in sb_build_command_fill()
1870 ccmd->fill.address, ccmd->fill.count, in sb_verify_command()
1871 ccmd->fill.pattern, csum); in sb_verify_command()
1878 flag, ccmd->fill.address, ccmd->jump.argument, csum); in sb_verify_command()
1885 flag, ccmd->fill.address, ccmd->jump.argument, csum); in sb_verify_command()
/rk3399_rockchip-uboot/drivers/bios_emulator/x86emu/
H A Dprim_ops.c1518 u16 shld_word (u16 d, u16 fill, u8 s) in shld_word() argument
1525 res = (d << cnt) | (fill >> (16-cnt)); in shld_word()
1553 u32 shld_long (u32 d, u32 fill, u8 s) in shld_long() argument
1560 res = (d << cnt) | (fill >> (32-cnt)); in shld_long()
1588 u16 shrd_word (u16 d, u16 fill, u8 s) in shrd_word() argument
1596 res = (d >> cnt) | (fill << (16 - cnt)); in shrd_word()
1623 u32 shrd_long (u32 d, u32 fill, u8 s) in shrd_long() argument
1631 res = (d >> cnt) | (fill << (32 - cnt)); in shrd_long()
/rk3399_rockchip-uboot/board/pb1x00/
H A DREADME54 b) Partition disk on "laptop" and fill it with all files
/rk3399_rockchip-uboot/board/dbau1x00/
H A DREADME54 b) Partition disk on "laptop" and fill it with all files
/rk3399_rockchip-uboot/drivers/usb/host/
H A Dehci.h222 uint32_t fill[4]; member
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc83xx/
H A Dstart.S78 .fill 8,1,(((w)>>24)&0xff); \
79 .fill 8,1,(((w)>>16)&0xff); \
80 .fill 8,1,(((w)>> 8)&0xff); \
81 .fill 8,1,(((w) )&0xff)
/rk3399_rockchip-uboot/arch/arm/mach-imx/
H A DMakefile57 $(OBJCOPY) -O binary --gap-fill 0xff $< $@
/rk3399_rockchip-uboot/
H A DMakefile841 cmd_objcopy = $(OBJCOPY) --gap-fill=0xff $(OBJCOPYFLAGS) \
1145 --gap-fill=0xff
1244 --gap-fill=0xff
1256 --pad-to=$(CONFIG_UBOOT_PAD_TO) --gap-fill=0xff

12