/u-boot/lib/ |
A D | sha1.c | 92 temp = W[(t - 3) & 0x0F] ^ W[(t - 8) & 0x0F] ^ \ in sha1_process() 93 W[(t - 14) & 0x0F] ^ W[ t & 0x0F], \ in sha1_process() 110 P (A, B, C, D, E, W[0]); in sha1_process() 111 P (E, A, B, C, D, W[1]); in sha1_process() 112 P (D, E, A, B, C, W[2]); in sha1_process() 113 P (C, D, E, A, B, W[3]); in sha1_process() 114 P (B, C, D, E, A, W[4]); in sha1_process() 115 P (A, B, C, D, E, W[5]); in sha1_process() 116 P (E, A, B, C, D, W[6]); in sha1_process() 117 P (D, E, A, B, C, W[7]); in sha1_process() [all …]
|
A D | sha256.c | 61 uint32_t W[64]; in sha256_process() local 64 GET_UINT32_BE(W[0], data, 0); in sha256_process() 65 GET_UINT32_BE(W[1], data, 4); in sha256_process() 66 GET_UINT32_BE(W[2], data, 8); in sha256_process() 67 GET_UINT32_BE(W[3], data, 12); in sha256_process() 68 GET_UINT32_BE(W[4], data, 16); in sha256_process() 69 GET_UINT32_BE(W[5], data, 20); in sha256_process() 70 GET_UINT32_BE(W[6], data, 24); in sha256_process() 71 GET_UINT32_BE(W[7], data, 28); in sha256_process() 95 W[t] = S1(W[t - 2]) + W[t - 7] + \ in sha256_process() [all …]
|
A D | sha512.c | 133 GET_UINT64_BE(W[I], input, I*8); in LOAD_OP() 136 static inline void BLEND_OP(int I, uint64_t *W) in BLEND_OP() argument 138 W[I & 15] += s1(W[(I-2) & 15]) + W[(I-7) & 15] + s0(W[(I-15) & 15]); in BLEND_OP() 147 uint64_t W[16]; in sha512_transform() local 161 LOAD_OP(i + j, W, input); in sha512_transform() 164 BLEND_OP(i + j, W); in sha512_transform() 169 t1 = h + e1(e) + Ch(e,f,g) + sha512_K[i ] + W[(i & 15)]; in sha512_transform() 171 t1 = g + e1(d) + Ch(d,e,f) + sha512_K[i+1] + W[(i & 15) + 1]; in sha512_transform() 173 t1 = f + e1(c) + Ch(c,d,e) + sha512_K[i+2] + W[(i & 15) + 2]; in sha512_transform() 175 t1 = e + e1(b) + Ch(b,c,d) + sha512_K[i+3] + W[(i & 15) + 3]; in sha512_transform() [all …]
|
/u-boot/fs/zfs/ |
A D | zfs_sha256.c | 79 uint32_t a, b, c, d, e, f, g, h, t, T1, T2, W[64]; in SHA256Transform() local 82 W[t] = (cp[0] << 24) | (cp[1] << 16) | (cp[2] << 8) | cp[3]; in SHA256Transform() 85 W[t] = sigma1(W[t - 2]) + W[t - 7] + in SHA256Transform() 86 sigma0(W[t - 15]) + W[t - 16]; in SHA256Transform() 92 T1 = h + SIGMA1(e) + Ch(e, f, g) + SHA256_K[t] + W[t]; in SHA256Transform()
|
/u-boot/board/toradex/apalis_imx6/ |
A D | MAINTAINERS | 3 W: http://developer.toradex.com/software/linux/linux-software 4 W: https://www.toradex.com/community
|
/u-boot/board/toradex/colibri_imx6/ |
A D | MAINTAINERS | 3 W: http://developer.toradex.com/software/linux/linux-software 4 W: https://www.toradex.com/community
|
/u-boot/arch/arm/dts/ |
A D | sun4i-a10-inet-3w.dts | 5 * Minimal dts file for the iNet 3W for u-boot only 12 model = "iNet 3W";
|
A D | tegra20-medcom-wide.dts | 64 nvidia,backlight-vdd-gpios = <&gpio TEGRA_GPIO(W, 0)
|
/u-boot/board/toradex/colibri-imx6ull/ |
A D | MAINTAINERS | 3 W: http://developer.toradex.com/software/linux/linux-software 4 W: https://www.toradex.com/community
|
/u-boot/board/toradex/colibri_vf/ |
A D | MAINTAINERS | 3 W: http://developer.toradex.com/software/linux/linux-software 4 W: https://www.toradex.com/community
|
/u-boot/board/toradex/colibri_imx7/ |
A D | MAINTAINERS | 3 W: http://developer.toradex.com/software/linux/linux-software 4 W: https://www.toradex.com/community
|
/u-boot/arch/arm/include/asm/ |
A D | unified.h | 35 #define W(instr) instr.w macro 48 #define W(instr) instr
|
/u-boot/scripts/ |
A D | Makefile.extrawarn | 15 export KBUILD_ENABLE_EXTRA_GCC_CHECKS := $(W) 54 $(error W=$(KBUILD_ENABLE_EXTRA_GCC_CHECKS) is unknown)
|
/u-boot/arch/arm/cpu/armv7m/ |
A D | start.S | 12 W(b) _main
|
/u-boot/doc/ |
A D | README.rmobile | 18 | R8A7791 M2-W | Renesas Electronics Koelsch | koelsch_defconfig 31 | R8A7796 M3-W | Renesas Electronics Salvator-X | r8a7796_salvator-x_defconfig 32 | R8A7796 M3-W | Renesas Electronics ULCB | r8a7796_ulcb
|
/u-boot/board/phytec/phycore_imx8mm/ |
A D | MAINTAINERS | 3 W: https://www.phytec.eu/product-eu/system-on-modules/phycore-imx-8m-mini-nano/
|
/u-boot/examples/standalone/ |
A D | README.smc91111_eeprom | 145 SMC91111> W E 20 3412 148 SMC91111> W E 21 7856 151 SMC91111> W E 22 BC9A 181 - W : Write a register in the EEPROM or in the MAC 217 SMC91111> W E 2A ABCD 221 SMC91111> W M 14 FF00
|
/u-boot/board/phytec/phycore_imx8mp/ |
A D | MAINTAINERS | 3 W: https://www.phytec.eu/product-eu/system-on-modules/phycore-imx-8m-plus/
|
/u-boot/board/theobroma-systems/puma_rk3399/ |
A D | MAINTAINERS | 9 W: https://www.theobroma-systems.com/rk3399-q7/tech-specs
|
/u-boot/board/toradex/apalis-imx8x/ |
A D | MAINTAINERS | 3 W: http://developer.toradex.com/software/linux/linux-software
|
/u-boot/board/toradex/colibri-imx8x/ |
A D | MAINTAINERS | 3 W: http://developer.toradex.com/software/linux/linux-software
|
/u-boot/board/toradex/apalis-imx8/ |
A D | MAINTAINERS | 3 W: http://developer.toradex.com/software/linux/linux-software
|
/u-boot/board/theobroma-systems/lion_rk3368/ |
A D | MAINTAINERS | 9 W: https://www.theobroma-systems.com/rk3368-uq7/tech-specs
|
/u-boot/board/toradex/verdin-imx8mm/ |
A D | MAINTAINERS | 3 W: https://www.toradex.com/computer-on-modules/verdin-arm-family/nxp-imx-8m-mini
|
/u-boot/board/freescale/ls1046afrwy/ |
A D | README | 51 0x05_0000_0000 - 0x05_07FF_FFFF QMAN S/W Portal 128M 52 0x05_0800_0000 - 0x05_0FFF_FFFF BMAN S/W Portal 128M
|