HomeSort by relevance Sort by last modified time
    Searched full:arc4_getbyte (Results 1 - 2 of 2) sorted by null

  /external/dhcpcd/compat/
arc4random.c 73 arc4_getbyte(struct arc4_stream *as) function
91 val = arc4_getbyte(as) << 24;
92 val |= arc4_getbyte(as) << 16;
93 val |= arc4_getbyte(as) << 8;
94 val |= arc4_getbyte(as);
126 arc4_getbyte(as);
  /bionic/libc/bionic/
arc4random.c 70 static inline u_int8_t arc4_getbyte(void);
156 (void)arc4_getbyte();
161 arc4_getbyte(void) function
182 val = arc4_getbyte();
191 val = arc4_getbyte() << 24;
192 val |= arc4_getbyte() << 16;
193 val |= arc4_getbyte() << 8;
194 val |= arc4_getbyte();
239 buf[n] = arc4_getbyte();

Completed in 90 milliseconds