Lines Matching full:value
25 // through the bits in value.27 le_uint8 highBit(le_uint32 value)31 if (value >= 1 << 16) {32 value >>= 16;36 if (value >= 1 << 8) {37 value >>= 8;41 if (value >= 1 << 4) {42 value >>= 4;46 if (value >= 1 << 2) {47 value >>= 2;51 if (value >= 1 << 1) {52 value >>= 1;