Searched refs:arc4_getbyte (Results 1 - 3 of 3) sorted by relevance

/freebsd-11-stable/lib/libc/gen/
H A Darc4random.c84 static inline u_int8_t arc4_getbyte(void);
175 (void)arc4_getbyte();
191 arc4_getbyte(void) function
208 val = arc4_getbyte() << 24;
209 val |= arc4_getbyte() << 16;
210 val |= arc4_getbyte() << 8;
211 val |= arc4_getbyte();
254 buf[n] = arc4_getbyte();
/freebsd-11-stable/contrib/libarchive/libarchive/
H A Darchive_random.c161 static inline uint8_t arc4_getbyte(void);
229 (void)arc4_getbyte();
245 arc4_getbyte(void) function
267 buf[n] = arc4_getbyte();
/freebsd-11-stable/contrib/ntp/sntp/libevent/
H A Darc4random.c94 static inline unsigned char arc4_getbyte(void);
405 (void)arc4_getbyte();
426 arc4_getbyte(void) function
444 val = arc4_getbyte() << 24;
445 val |= arc4_getbyte() << 16;
446 val |= arc4_getbyte() << 8;
447 val |= arc4_getbyte();
506 buf[n] = arc4_getbyte();

Completed in 144 milliseconds