| /rk3399_rockchip-uboot/lib/zlib/ |
| H A D | inftrees.c | 46 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 D | fat-noncontig-test.sh | 59 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 D | ext4_sparse.c | 145 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 D | sha512.c | 239 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 D | sha256.c | 229 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 D | sha1.c | 268 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 D | prim_ops.h | 100 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 D | Makefile | 10 $(OBJCOPY) -O binary --gap-fill 0xff $< $@
|
| /rk3399_rockchip-uboot/arch/arm/mach-keystone/ |
| H A D | config.mk | 24 --gap-fill=0
|
| /rk3399_rockchip-uboot/arch/nds32/dts/ |
| H A D | ag101p.dts | 31 /* FIXME: to fill correct frqeuency */
|
| H A D | ae3xx.dts | 31 /* FIXME: to fill correct frqeuency */
|
| /rk3399_rockchip-uboot/doc/ |
| H A D | README.mxc_hab | 48 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 D | README.commands | 4 to fill in a cmd_tbl_t struct.
|
| H A D | README.bitbangMII | 27 When the CONFIG_BITBANGMII_MULTI is also defined, the board code needs to fill
|
| H A D | README.arm-relocation | 68 - fill in bd_t infos (check)
|
| /rk3399_rockchip-uboot/tools/rockchip/ |
| H A D | resource_tool.c | 227 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 D | mxsimage.h | 167 } fill; member
|
| H A D | mxsimage.c | 1109 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 D | prim_ops.c | 1518 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 D | README | 54 b) Partition disk on "laptop" and fill it with all files
|
| /rk3399_rockchip-uboot/board/dbau1x00/ |
| H A D | README | 54 b) Partition disk on "laptop" and fill it with all files
|
| /rk3399_rockchip-uboot/drivers/usb/host/ |
| H A D | ehci.h | 222 uint32_t fill[4]; member
|
| /rk3399_rockchip-uboot/arch/powerpc/cpu/mpc83xx/ |
| H A D | start.S | 78 .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 D | Makefile | 57 $(OBJCOPY) -O binary --gap-fill 0xff $< $@
|
| /rk3399_rockchip-uboot/ |
| H A D | Makefile | 841 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
|