Home
last modified time | relevance | path

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

/external/qemu/target-arm/
Dop_helper.c23 #define SIGNBIT (uint32_t)0x80000000 macro
139 if (((res ^ a) & SIGNBIT) && !((a ^ b) & SIGNBIT)) in HELPER()
147 if (((res ^ a) & SIGNBIT) && !((a ^ b) & SIGNBIT)) { in HELPER()
149 res = ~(((int32_t)a >> 31) ^ SIGNBIT); in HELPER()
157 if (((res ^ a) & SIGNBIT) && ((a ^ b) & SIGNBIT)) { in HELPER()
159 res = ~(((int32_t)a >> 31) ^ SIGNBIT); in HELPER()
168 res = ~SIGNBIT; in HELPER()
171 res = SIGNBIT; in HELPER()
Dneon_helper.c16 #define SIGNBIT (uint32_t)0x80000000 macro
220 if (((res ^ a) & SIGNBIT) && !((a ^ b) & SIGNBIT)) { in HELPER()
222 res = ~(((int32_t)a >> 31) ^ SIGNBIT); in HELPER()
301 if (((res ^ a) & SIGNBIT) && ((a ^ b) & SIGNBIT)) { in HELPER()
303 res = ~(((int32_t)a >> 31) ^ SIGNBIT); in HELPER()
925 dest = (val >> 31) ^ ~SIGNBIT; in HELPER()
938 dest = (val >> 31) ^ ~SIGNBIT; in HELPER()
1138 if ((tmp ^ (tmp << 1)) & SIGNBIT) { \
1140 tmp = (tmp >> 31) ^ ~SIGNBIT; \
1149 tmp = SIGNBIT - 1; \
[all …]