Searched refs:isNeg (Results 1 - 8 of 8) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64ExpandImm.cpp254 bool isNeg = false; local
259 isNeg = true;
266 FirstOpc = (isNeg ? AArch64::MOVNWi : AArch64::MOVZWi);
268 FirstOpc = (isNeg ? AArch64::MOVNXi : AArch64::MOVZXi);
288 if (isNeg)
295 if (Imm16 == (isNeg ? Mask : 0))
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Demangle/
H A DUtility.h44 void writeUnsigned(uint64_t N, bool isNeg = false) {
60 if (isNeg)
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A DStringExtras.h223 inline std::string utostr(uint64_t X, bool isNeg = false) {
234 if (isNeg) *--BufPtr = '-'; // Add negative sign...
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A DAPInt.cpp773 bool isNeg = I >> 63;
787 return isNeg ? -APInt(width, mantissa >> (52 - exp)) :
798 return isNeg ? -Tmp : Tmp;
821 bool isNeg = isSigned ? (*this)[BitWidth-1] : false;
824 APInt Tmp(isNeg ? -(*this) : (*this));
836 if (!isSigned || !isNeg)
859 uint64_t sign = isNeg ? (1ULL << (APINT_BITS_PER_WORD - 1)) : 0;
1415 bool isNeg = u[j+n] < borrow;
1425 if (isNeg) {
2126 bool isNeg
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/MCTargetDesc/
H A DARMMCCodeEmitter.cpp462 template <bool isNeg, ARM::Fixups fixup>
1893 template <bool isNeg, ARM::Fixups fixup>
1901 return isNeg ? -(MO.getImm() >> 1) : (MO.getImm() >> 1);
/freebsd-11-stable/stand/ficl/
H A Dwords.c208 char isNeg = FALSE; local
223 isNeg = TRUE;
228 isNeg = FALSE;
263 if (isNeg)
/freebsd-11-stable/contrib/sqlite3/
H A Dshell.c774 int isNeg = 0; local
776 isNeg = 1;
800 return isNeg? -v : v;
5252 int isNeg; local
5269 isNeg = 1;
5272 isNeg = 0;
5290 if( isNeg ) m = -m;
5308 int isNeg = 0; local
5320 isNeg = 1;
5345 if( isNeg )
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/Disassembler/
H A DARMDisassembler.cpp491 template <bool isSigned, bool isNeg, bool zeroPermitted, int size>
5935 template <bool isSigned, bool isNeg, bool zeroPermitted, int size>
5951 Inst.addOperand(MCOperand::createImm(isNeg ? -DecVal : DecVal));

Completed in 144 milliseconds