Home
last modified time | relevance | path

Searched refs:isNeg (Results 1 – 10 of 10) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64ExpandImm.cpp474 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 DUtility.h54 OutputBuffer &writeUnsigned(uint64_t N, bool isNeg = false) {
65 if (isNeg)
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DAPInt.cpp814 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()
1393 bool isNeg = u[j+n] < borrow; in KnuthDiv() local
1403 if (isNeg) { in KnuthDiv()
2121 bool isNeg = *p == '-'; in fromString() local
[all …]
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DComplexDeinterleavingPass.cpp106 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 DStringExtras.h309 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 DARMMCCodeEmitter.cpp444 template <bool isNeg, ARM::Fixups fixup>
1918 template <bool isNeg, ARM::Fixups fixup>
1926 return isNeg ? -(MO.getImm() >> 1) : (MO.getImm() >> 1); in getBFTargetOpValue()
/freebsd/stand/ficl/
H A Dwords.c207 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 Dshell.c1881 int isNeg = 0; in integerValue() local
1883 isNeg = 1; in integerValue()
1907 return isNeg? -v : v; in integerValue()
4262 int isNeg; in decimalFromDouble() local
4267 isNeg = 1; in decimalFromDouble()
4270 isNeg = 0; in decimalFromDouble()
5412 int isNeg; in ieee754func() local
5429 isNeg = 1; in ieee754func()
5432 isNeg = 0; in ieee754func()
5468 int isNeg = 0; in ieee754func() local
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/ARM/Disassembler/
H A DARMDisassembler.cpp615 template <bool isSigned, bool isNeg, bool zeroPermitted, int size>
6284 template <bool isSigned, bool isNeg, bool zeroPermitted, int size>
6300 Inst.addOperand(MCOperand::createImm(isNeg ? -DecVal : DecVal)); in DecodeBFLabelOperand()
/freebsd/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMInstrThumb2.td371 class BFLabelOp<string signed, string isNeg, string zeroPermitted, string size,
374 let EncoderMethod = !strconcat("getBFTargetOpValue<", isNeg, ", ",
378 isNeg, ", ", zeroPermitted, ", ", size, ">");