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

  /external/qemu/target-arm/
op_helper.c 24 #define SIGNBIT64 ((uint64_t)1 << 63)
486 if (((res ^ src1) & SIGNBIT64) && !((src1 ^ src2) & SIGNBIT64)) {
488 res = ((int64_t)src1 >> 63) ^ ~SIGNBIT64;
510 if (((res ^ src1) & SIGNBIT64) && ((src1 ^ src2) & SIGNBIT64)) {
512 res = ((int64_t)src1 >> 63) ^ ~SIGNBIT64;
neon_helper.c 17 #define SIGNBIT64 ((uint64_t)1 << 63)
609 val = (val >> 63) & ~SIGNBIT64;
620 val = (tmp >> 63) ^ ~SIGNBIT64;
849 if ((tmp ^ (tmp << 1)) & SIGNBIT64) { \
851 tmp = (tmp >> 63) ^ ~SIGNBIT64; \
860 tmp = SIGNBIT64 - 1; \
1133 if (((result ^ a) & SIGNBIT64) && !((a ^ b) & SIGNBIT64)) {
1135 result = ((int64_t)a >> 63) ^ ~SIGNBIT64;
    [all...]

Completed in 51 milliseconds