Home
last modified time | relevance | path

Searched refs:AllowNegative (Results 1 – 4 of 4) sorted by relevance

/openbsd-src/gnu/llvm/llvm/lib/Target/AMDGPU/
H A DSIInstrInfo.cpp7941 bool AllowNegative = FlatVariant != SIInstrFlags::FLAT; in isLegalFLATOffset() local
7944 AllowNegative = false; in isLegalFLATOffset()
7952 return isIntN(N, Offset) && (AllowNegative || Offset >= 0); in isLegalFLATOffset()
7961 bool AllowNegative = FlatVariant != SIInstrFlags::FLAT; in splitFlatOffset() local
7964 AllowNegative = false; in splitFlatOffset()
7967 if (AllowNegative) { in splitFlatOffset()
/openbsd-src/gnu/llvm/llvm/include/llvm/Demangle/
H A DItaniumDemangle.h2503 StringView parseNumber(bool AllowNegative = false);
3463 AbstractManglingParser<Alloc, Derived>::parseNumber(bool AllowNegative) { in parseNumber() argument
3465 if (AllowNegative) in parseNumber()
/openbsd-src/gnu/llvm/libcxxabi/src/demangle/
H A DItaniumDemangle.h2503 StringView parseNumber(bool AllowNegative = false);
3463 AbstractManglingParser<Alloc, Derived>::parseNumber(bool AllowNegative) { in parseNumber() argument
3465 if (AllowNegative) in parseNumber()
/openbsd-src/gnu/llvm/llvm/lib/Target/AMDGPU/AsmParser/
H A DAMDGPUAsmParser.cpp4122 bool AllowNegative = in validateFlatOffset() local
4124 if (!isIntN(OffsetSize, Op.getImm()) || (!AllowNegative && Op.getImm() < 0)) { in validateFlatOffset()
4127 (AllowNegative ? Twine(OffsetSize) + "-bit signed offset" in validateFlatOffset()