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 22 #define SIGNBIT (uint32_t)0x80000000
149 if (((res ^ a) & SIGNBIT) && !((a ^ b) & SIGNBIT))
157 if (((res ^ a) & SIGNBIT) && !((a ^ b) & SIGNBIT)) {
159 res = ~(((int32_t)a >> 31) ^ SIGNBIT);
167 if (((res ^ a) & SIGNBIT) && ((a ^ b) & SIGNBIT)) {
169 res = ~(((int32_t)a >> 31) ^ SIGNBIT);
178 res = ~SIGNBIT;
    [all...]
neon_helper.c 16 #define SIGNBIT (uint32_t)0x80000000
218 if (((res ^ a) & SIGNBIT) && !((a ^ b) & SIGNBIT)) {
220 res = ~(((int32_t)a >> 31) ^ SIGNBIT);
299 if (((res ^ a) & SIGNBIT) && ((a ^ b) & SIGNBIT)) {
301 res = ~(((int32_t)a >> 31) ^ SIGNBIT);
924 dest = (val >> 31) ^ ~SIGNBIT;
937 dest = (val >> 31) ^ ~SIGNBIT;
1137 if ((tmp ^ (tmp << 1)) & SIGNBIT) { \
    [all...]

Completed in 132 milliseconds