Lines Matching defs:high
34 uint32_t high = (uint32_t)(x >> 32);
37 high = (rotl8(high) & 0x00ff00ff) | (rotr8(high) & 0xff00ff00);
39 return ((uint64_t)low) << 32 | (uint64_t)high;
76 uint64_t high = siv128_getword(b, 0);
78 uint64_t high_carry = high & (((uint64_t)1) << 63);
83 high = (high << 1) | high_mask;
85 siv128_putword(b, 0, high);