Lines Matching full:low
959 uint32_t low;
960 low = x;
961 if (low > 0xffff) {
962 low = 0xffff;
970 return low | (high << 16);
975 int32_t low;
977 low = x;
978 if (low != (int16_t)low) {
979 low = (low >> 31) ^ 0x7fff;
987 return (uint16_t)low | (high << 16);
1083 uint32_t low = a + (a >> 32);
1085 return low + ((uint64_t)high << 32);
1109 uint32_t low, high;
1113 low = x + y;
1114 if (((low ^ x) & SIGNBIT) && !((x ^ y) & SIGNBIT)) {
1116 low = ((int32_t)x >> 31) ^ ~SIGNBIT;
1125 return low | ((uint64_t)high << 32);
1281 uint32_t low = -x;
1283 return low | ((uint64_t)high << 32);