Home | History | Annotate | Download | only in target-arm

Lines Matching full:high

958     uint32_t high;
965 high = x >> 32;
966 if (high > 0xffff) {
967 high = 0xffff;
970 return low | (high << 16);
976 int32_t high;
982 high = x >> 32;
983 if (high != (int16_t)high) {
984 high = (high >> 31) ^ 0x7fff;
987 return (uint16_t)low | (high << 16);
1038 uint64_t high = (uint16_t)(x >> 16);
1039 return ((uint16_t)x) | (high << 32);
1044 uint64_t high = (int16_t)(x >> 16);
1045 return ((uint32_t)(int16_t)x) | (high << 32);
1084 uint32_t high = b + (b >> 32);
1085 return low + ((uint64_t)high << 32);
1109 uint32_t low, high;
1120 high = x + y;
1121 if (((high ^ x) & SIGNBIT) && !((x ^ y) & SIGNBIT)) {
1123 high = ((int32_t)x >> 31) ^ ~SIGNBIT;
1125 return low | ((uint64_t)high << 32);
1282 uint32_t high = -(x >> 32);
1283 return low | ((uint64_t)high << 32);