Searched defs:signBit (Results 1 - 3 of 3) sorted by relevance

/external/clang/test/CodeGen/
H A Dstruct-init.c30 const uint32x2_t signBit = { (uint2) 0x80000000 }; local
/external/compiler-rt/lib/
H A Dfp_lib.h98 #define signBit (REP_C(1) << (significandBits + exponentBits)) macro
99 #define absMask (signBit - 1U)
/external/llvm/lib/Target/ARM/MCTargetDesc/
H A DARMAsmBackend.cpp415 uint32_t signBit = (offset & 0x800000) >> 23; local
417 uint32_t J1Bit = (I1Bit ^ 0x1) ^ signBit;
419 uint32_t J2Bit = (I2Bit ^ 0x1) ^ signBit;
424 uint32_t firstHalf = (((uint16_t)signBit << 10) | (uint16_t)imm10Bits);
446 uint32_t signBit = (offset & 0x400000) >> 22; local
448 uint32_t J1Bit = (I1Bit ^ 0x1) ^ signBit;
450 uint32_t J2Bit = (I2Bit ^ 0x1) ^ signBit;
455 uint32_t firstHalf = (((uint16_t)signBit << 10) | (uint16_t)imm10HBits);

Completed in 105 milliseconds