HomeSort by relevance Sort by last modified time
    Searched refs:SIGNBIT (Results 1 - 2 of 2) sorted by null

  /external/qemu/target-arm/
op_helper.c 23 #define SIGNBIT (uint32_t)0x80000000
152 if (((res ^ a) & SIGNBIT) && !((a ^ b) & SIGNBIT))
160 if (((res ^ a) & SIGNBIT) && !((a ^ b) & SIGNBIT)) {
162 res = ~(((int32_t)a >> 31) ^ SIGNBIT);
170 if (((res ^ a) & SIGNBIT) && ((a ^ b) & SIGNBIT)) {
172 res = ~(((int32_t)a >> 31) ^ SIGNBIT);
181 res = ~SIGNBIT;
    [all...]
neon_helper.c 16 #define SIGNBIT (uint32_t)0x80000000
824 if ((tmp ^ (tmp << 1)) & SIGNBIT) { \
826 tmp = (tmp >> 31) ^ ~SIGNBIT; \
834 tmp = SIGNBIT - 1; \
1114 if (((low ^ x) & SIGNBIT) && !((x ^ y) & SIGNBIT)) {
1116 low = ((int32_t)x >> 31) ^ ~SIGNBIT;
1121 if (((high ^ x) & SIGNBIT) && !((x ^ y) & SIGNBIT)) {
1123 high = ((int32_t)x >> 31) ^ ~SIGNBIT;
    [all...]

Completed in 144 milliseconds