Symbol: cprng_strong32
sys/arch/arm/sunxi/sunxi_emac.c
1147
maclo = 0x00f2 | (cprng_strong32() & 0xffff0000);
sys/arch/arm/sunxi/sunxi_emac.c
1148
machi = cprng_strong32() & 0xffff;
sys/compat/linux/arch/amd64/linux_exec_machdep.c
227
esd.randbytes[0] = cprng_strong32();
sys/compat/linux/arch/amd64/linux_exec_machdep.c
228
esd.randbytes[1] = cprng_strong32();
sys/compat/linux/arch/amd64/linux_exec_machdep.c
229
esd.randbytes[2] = cprng_strong32();
sys/compat/linux/arch/amd64/linux_exec_machdep.c
230
esd.randbytes[3] = cprng_strong32();
sys/compat/linux/common/linux_exec_elf32.c
573
randbytes[0] = cprng_strong32();
sys/compat/linux/common/linux_exec_elf32.c
574
randbytes[1] = cprng_strong32();
sys/compat/linux/common/linux_exec_elf32.c
575
randbytes[2] = cprng_strong32();
sys/compat/linux/common/linux_exec_elf32.c
576
randbytes[3] = cprng_strong32();
sys/compat/linux32/common/linux32_exec_elf32.c
199
esd.randbytes[0] = cprng_strong32();
sys/compat/linux32/common/linux32_exec_elf32.c
200
esd.randbytes[1] = cprng_strong32();
sys/compat/linux32/common/linux32_exec_elf32.c
201
esd.randbytes[2] = cprng_strong32();
sys/compat/linux32/common/linux32_exec_elf32.c
202
esd.randbytes[3] = cprng_strong32();
sys/dev/ic/bcmgenet.c
977
maclo = 0x00f2 | (cprng_strong32() & 0xffff0000);
sys/dev/ic/bcmgenet.c
978
machi = cprng_strong32() & 0xffff;
sys/dev/ic/dm9000.c
225
uint32_t maclo = 0x00f2 | (cprng_strong32() << 16);
sys/dev/ic/dm9000.c
226
uint32_t machi = cprng_strong32();
sys/dev/ic/dwc_eqos.c
1506
maclo = 0x00f2 | (cprng_strong32() << 16);
sys/dev/ic/dwc_eqos.c
1507
machi = cprng_strong32() & 0xffff;
sys/dev/ic/dwc_gmac.c
212
maclo = 0x00f2 | (cprng_strong32() << 16);
sys/dev/ic/dwc_gmac.c
213
machi = cprng_strong32();
sys/dev/ic/rtl8169.c
788
maclo = 0x00f2 | (cprng_strong32() & 0xffff0000);
sys/dev/ic/rtl8169.c
789
machi = cprng_strong32() & 0xffff;
sys/dev/usb/if_ure.c
917
maclo = 0x00f2 | (cprng_strong32() & 0xffff0000);
sys/dev/usb/if_ure.c
918
machi = cprng_strong32() & 0xffff;
sys/net/if_wg.c
1449
index = cprng_strong32();
sys/net/toeplitz.c
120
seed = cprng_strong32() & UINT16_MAX;
sys/netinet/sctputil.c
621
return cprng_strong32();
sys/sys/cprng.h
68
uint32_t cprng_strong32(void);