Home | History | Annotate | Download | only in ffsb-6.0-rc2

Lines Matching defs:bytes

90 	uint8_t bytes[4];
93 bytes[0] = genrand8(state);
94 bytes[1] = genrand8(state);
95 bytes[2] = genrand8(state);
96 bytes[3] = genrand8(state);
98 ret = *((uint32_t *) bytes); /* !!! hack */
141 uint8_t bytes[4] = { 0, 0, 0, 0 };
157 bytes[i] = genrand8(state);
159 ret = (bytes[3] << 24) + (bytes[2] << 16) + (bytes[1] << 8) + bytes[0];