Home
last modified time | relevance | path

Searched refs:SIGNBIT (Results 1 – 2 of 2) sorted by relevance

/external/qemu/target-arm/
Dop_helper.c22 #define SIGNBIT (uint32_t)0x80000000 macro
149 if (((res ^ a) & SIGNBIT) && !((a ^ b) & SIGNBIT)) in HELPER()
157 if (((res ^ a) & SIGNBIT) && !((a ^ b) & SIGNBIT)) { in HELPER()
159 res = ~(((int32_t)a >> 31) ^ SIGNBIT); in HELPER()
167 if (((res ^ a) & SIGNBIT) && ((a ^ b) & SIGNBIT)) { in HELPER()
169 res = ~(((int32_t)a >> 31) ^ SIGNBIT); in HELPER()
178 res = ~SIGNBIT; in HELPER()
181 res = SIGNBIT; in HELPER()
Dneon_helper.c16 #define SIGNBIT (uint32_t)0x80000000 macro
218 if (((res ^ a) & SIGNBIT) && !((a ^ b) & SIGNBIT)) { in HELPER()
220 res = ~(((int32_t)a >> 31) ^ SIGNBIT); in HELPER()
299 if (((res ^ a) & SIGNBIT) && ((a ^ b) & SIGNBIT)) { in HELPER()
301 res = ~(((int32_t)a >> 31) ^ SIGNBIT); in HELPER()
924 dest = (val >> 31) ^ ~SIGNBIT; in HELPER()
937 dest = (val >> 31) ^ ~SIGNBIT; in HELPER()
1137 if ((tmp ^ (tmp << 1)) & SIGNBIT) { \
1139 tmp = (tmp >> 31) ^ ~SIGNBIT; \
1148 tmp = SIGNBIT - 1; \
[all …]