Lines Matching full:value
19 // through the bits in value.21 le_int8 highBit(le_uint32 value)25 if (value >= 1 << 16) {26 value >>= 16;30 if (value >= 1 << 8) {31 value >>= 8;35 if (value >= 1 << 4) {36 value >>= 4;40 if (value >= 1 << 2) {41 value >>= 2;45 if (value >= 1 << 1) {46 value >>= 1;