HomeSort by relevance Sort by last modified time
    Searched defs:signBit (Results 1 - 3 of 3) sorted by null

  /external/clang/test/CodeGen/
struct-init.c 30 const uint32x2_t signBit = { (uint2) 0x80000000 };
  /external/compiler-rt/lib/
fp_lib.h 98 #define signBit (REP_C(1) << (significandBits + exponentBits))
99 #define absMask (signBit - 1U)
  /external/llvm/lib/Target/ARM/MCTargetDesc/
ARMAsmBackend.cpp 410 uint32_t signBit = (offset & 0x800000) >> 23;
412 uint32_t J1Bit = (I1Bit ^ 0x1) ^ signBit;
414 uint32_t J2Bit = (I2Bit ^ 0x1) ^ signBit;
419 uint32_t firstHalf = (((uint16_t)signBit << 10) | (uint16_t)imm10Bits);
441 uint32_t signBit = (offset & 0x400000) >> 22;
443 uint32_t J1Bit = (I1Bit ^ 0x1) ^ signBit;
445 uint32_t J2Bit = (I2Bit ^ 0x1) ^ signBit;
450 uint32_t firstHalf = (((uint16_t)signBit << 10) | (uint16_t)imm10HBits);

Completed in 49 milliseconds