// // SharedUtil.cpp // hifi // // Created by Stephen Birarda on 2/22/13. // // #include "SharedUtil.h" #include #include double usecTimestamp(timeval *time) { return (time->tv_sec * 1000000.0 + time->tv_usec); } double usecTimestampNow() { timeval now; gettimeofday(&now, NULL); return (now.tv_sec * 1000000.0 + now.tv_usec); } float randFloat () { return (rand() % 10000)/10000.f; } unsigned char randomColorValue(uint8_t miniumum) { return miniumum + (rand() % (255 - miniumum)); } bool randomBoolean() { return rand() % 2; } void outputBits(unsigned char byte) { printf("%d: ", byte); for (int i = 0; i < 8; i++) { printf("%d", byte >> (7 - i) & 1); } printf("\n"); } int8_t numberOfOnes(unsigned char byte) { return (byte >> 7) + ((byte >> 6) & 1) + ((byte >> 5) & 1) + ((byte >> 4) & 1) + ((byte >> 3) & 1) + ((byte >> 2) & 1) + ((byte >> 1) & 1) + (byte & 1); } bool oneAtBit(unsigned char byte, int8_t bitIndex) { return (byte >> (7 - bitIndex) & 1); }