/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/ |
H A D | AArch64ExpandImm.cpp | 474 bool isNeg = false; in expandMOVImmSimple() local 479 isNeg = true; in expandMOVImmSimple() 486 FirstOpc = (isNeg ? AArch64::MOVNWi : AArch64::MOVZWi); in expandMOVImmSimple() 488 FirstOpc = (isNeg ? AArch64::MOVNXi : AArch64::MOVZXi); in expandMOVImmSimple() 508 if (isNeg) in expandMOVImmSimple() 515 if (Imm16 == (isNeg ? Mask : 0)) in expandMOVImmSimple()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Demangle/ |
H A D | Utility.h | 54 OutputBuffer &writeUnsigned(uint64_t N, bool isNeg = false) { in grow() 65 if (isNeg)
|
/freebsd/contrib/llvm-project/llvm/lib/Support/ |
H A D | APInt.cpp | 814 bool isNeg = I >> 63; in RoundDoubleToAPInt() local 828 return isNeg ? -APInt(width, mantissa >> (52 - exp)) : in RoundDoubleToAPInt() 839 return isNeg ? -Tmp : Tmp; in RoundDoubleToAPInt() 862 bool isNeg = isSigned ? (*this)[BitWidth-1] : false; in roundToDouble() local 865 APInt Tmp(isNeg ? -(*this) : (*this)); in roundToDouble() 877 if (!isSigned || !isNeg) in roundToDouble() 900 uint64_t sign = isNeg ? (1ULL << (APINT_BITS_PER_WORD - 1)) : 0; in roundToDouble() 1357 bool isNeg = u[j+n] < borrow; in KnuthDiv() local 1367 if (isNeg) { in KnuthDiv() 2092 bool isNeg = *p == '-'; in fromString() local [all …]
|
H A D | APFloat.cpp | 4142 void toStringImpl(SmallVectorImpl<char> &Str, const bool isNeg, int exp, in toStringImpl() argument 4147 if (isNeg) in toStringImpl()
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
H A D | ComplexDeinterleavingPass.cpp | 106 static bool isNeg(Value *V); 519 bool isNeg(Value *V) { in isNeg() function 524 assert(isNeg(V)); in getNegOperand() 586 if (isNeg(I0)) { in identifyNodeWithImplicitAdd() 1025 if (isNeg(I)) { in identifyReassocNodes() 1035 if (isNeg(I->getOperand(0))) { in identifyReassocNodes() 1042 if (isNeg(I->getOperand(1))) { in identifyReassocNodes()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/ |
H A D | StringExtras.h | 309 inline std::string utostr(uint64_t X, bool isNeg = false) { 320 if (isNeg) *--BufPtr = '-'; // Add negative sign...
|
/freebsd/contrib/llvm-project/llvm/lib/Target/ARM/MCTargetDesc/ |
H A D | ARMMCCodeEmitter.cpp | 444 template <bool isNeg, ARM::Fixups fixup> in EmitConstant() 1918 template <bool isNeg, ARM::Fixups fixup> in encodeInstruction() 1926 return isNeg ? -(MO.getImm() >> 1) : (MO.getImm() >> 1); in getBFTargetOpValue()
|
/freebsd/stand/ficl/ |
H A D | words.c | 207 char isNeg = FALSE; in ficlParseNumber() local 222 isNeg = TRUE; in ficlParseNumber() 227 isNeg = FALSE; in ficlParseNumber() 262 if (isNeg) in ficlParseNumber()
|
/freebsd/contrib/sqlite3/ |
H A D | shell.c | 1876 int isNeg = 0; in integerValue() local 1878 isNeg = 1; in integerValue() 1902 return isNeg? -v : v; in integerValue() 4257 int isNeg; in decimalFromDouble() local 4262 isNeg = 1; in decimalFromDouble() 4265 isNeg = 0; in decimalFromDouble() 4283 if( isNeg ) m = -m; in decimalFromDouble() 5407 int isNeg; in ieee754func() local 5424 isNeg = 1; in ieee754func() 5427 isNeg = 0; in ieee754func() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Target/ARM/Disassembler/ |
H A D | ARMDisassembler.cpp | 615 template <bool isSigned, bool isNeg, bool zeroPermitted, int size> 6287 template <bool isSigned, bool isNeg, bool zeroPermitted, int size> 6303 Inst.addOperand(MCOperand::createImm(isNeg ? -DecVal : DecVal)); in DecodeBFLabelOperand()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/ARM/ |
H A D | ARMInstrThumb2.td | 371 class BFLabelOp<string signed, string isNeg, string zeroPermitted, string size, 374 let EncoderMethod = !strconcat("getBFTargetOpValue<", isNeg, ", ", 378 isNeg, ", ", zeroPermitted, ", ", size, ">");
|