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

  /external/qemu/target-arm/
neon_helper.c 17 #define SIGNBIT64 ((uint64_t)1 << 63)
230 if (((res ^ src1) & SIGNBIT64) && !((src1 ^ src2) & SIGNBIT64)) {
232 res = ((int64_t)src1 >> 63) ^ ~SIGNBIT64;
311 if (((res ^ src1) & SIGNBIT64) && ((src1 ^ src2) & SIGNBIT64)) {
313 res = ((int64_t)src1 >> 63) ^ ~SIGNBIT64;
724 val = (val >> 63) ^ ~SIGNBIT64;
735 val = (tmp >> 63) ^ ~SIGNBIT64;
953 val = (val >> 63) ^ ~SIGNBIT64;
    [all...]
op_helper.c 23 #define SIGNBIT64 ((uint64_t)1 << 63)

Completed in 89 milliseconds