Searched refs:Signed (Results 1 - 19 of 19) sorted by relevance

/freebsd-10.1-release/contrib/llvm/lib/Target/AArch64/MCTargetDesc/
H A DAArch64AsmBackend.cpp462 int64_t Signed = Value; local
463 assert(Signed >= -(1LL << 16) && Signed < (1LL << 16)
465 if (Signed >= 0) {
489 int64_t Signed = Value; local
490 assert(Signed >= -(1LL << 32) && Signed < (1LL << 32)
492 if (Signed >= 0) {
512 int64_t Signed = Value; local
513 assert(Signed >
[all...]
/freebsd-10.1-release/contrib/llvm/lib/Target/NVPTX/
H A DNVPTX.h122 Signed, enumerator in enum:llvm::NVPTX::PTXLdStInstCode::FromType
H A DNVPTXISelDAGToDAG.cpp242 fromType = NVPTX::PTXLdStInstCode::Signed;
471 FromType = NVPTX::PTXLdStInstCode::Signed;
/freebsd-10.1-release/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFFormValue.h64 int64_t Signed() const { return m_value.value.sval; } function in class:DWARFFormValue
H A DDWARFFormValue.cpp532 int64_t a = a_value.Signed();
533 int64_t b = b_value.Signed();
H A DDWARFDebugInfoEntry.cpp1405 return form_value.Signed();
H A DSymbolFileDWARF.cpp4414 enum_value = form_value.Signed();
5993 class_language = (LanguageType)form_value.Signed();
5997 is_complete_objc_class = form_value.Signed();
/freebsd-10.1-release/contrib/llvm/lib/Target/Mips/
H A DMipsSEISelDAGToDAG.h64 virtual bool selectVSplatCommon(SDValue N, SDValue &Imm, bool Signed,
H A DMipsSEISelDAGToDAG.cpp422 selectVSplatCommon(SDValue N, SDValue &Imm, bool Signed, argument
432 if (( Signed && ImmValue.isSignedIntN(ImmBitSize)) ||
433 (!Signed && ImmValue.isIntN(ImmBitSize))) {
H A DMipsSEISelLowering.cpp905 bool Signed; local
908 Signed = true;
910 Signed = false;
920 return DAG.getNode(Signed ? MipsISD::VSMIN : MipsISD::VUMIN, SDLoc(N),
923 return DAG.getNode(Signed ? MipsISD::VSMAX : MipsISD::VUMAX, SDLoc(N),
/freebsd-10.1-release/contrib/llvm/lib/Target/NVPTX/InstPrinter/
H A DNVPTXInstPrinter.cpp249 if (Imm == NVPTX::PTXLdStInstCode::Signed)
/freebsd-10.1-release/contrib/llvm/include/llvm/ADT/
H A DAPInt.h901 /// \brief Signed division function for APInt.
903 /// Signed divide this APInt by APInt RHS.
919 /// Signed remainder operation on APInt.
1030 /// \brief Signed less than comparison
1038 /// \brief Signed less than comparison
1062 /// \brief Signed less or equal comparison
1070 /// \brief Signed less or equal comparison
1094 /// \brief Signed greather than comparison
1102 /// \brief Signed greater than comparison
1126 /// \brief Signed greathe
[all...]
/freebsd-10.1-release/contrib/llvm/lib/Support/
H A DAPInt.cpp2125 bool Signed, bool formatAsCLiteral) const {
2168 if (!Signed) {
2195 if (Signed && isNegative()) {
2246 std::string APInt::toString(unsigned Radix = 10, bool Signed = true) const {
2248 toString(S, Radix, Signed, /* formatAsCLiteral = */false);
/freebsd-10.1-release/contrib/llvm/lib/Transforms/Instrumentation/
H A DMemorySanitizer.cpp1312 bool Signed = false) {
1315 return IRB.CreateIntCast(V, dstTy, Signed);
1318 return IRB.CreateIntCast(V, dstTy, Signed);
1323 IRB.CreateIntCast(V1, Type::getIntNTy(*MS.C, dstSizeInBits), Signed);
/freebsd-10.1-release/contrib/llvm/tools/clang/lib/AST/
H A DASTContext.cpp7551 bool Signed = false, Unsigned = false; local
7564 assert(!Signed && "Can't use 'S' modifier multiple times!");
7565 Signed = true;
7568 assert(!Signed && "Can't use both 'S' and 'U' modifiers!");
7585 assert(HowLong == 0 && !Signed && !Unsigned &&
7590 assert(HowLong == 0 && !Signed && !Unsigned &&
7595 assert(HowLong == 0 && !Signed && !Unsigned &&
7600 assert(HowLong < 2 && !Signed && !Unsigned &&
7626 if (Signed)
7634 assert(HowLong == 0 && !Signed
[all...]
/freebsd-10.1-release/contrib/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeFloatTypes.cpp579 bool Signed = N->getOpcode() == ISD::SINT_TO_FP; local
594 LC = Signed ? RTLIB::getSINTTOFP(NVT, RVT):RTLIB::getUINTTOFP (NVT, RVT);
599 SDValue Op = DAG.getNode(Signed ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND, dl,
/freebsd-10.1-release/contrib/llvm/lib/MC/MCParser/
H A DAsmParser.cpp422 // .sleb128 (Signed=true) and .uleb128 (Signed=false)
423 bool parseDirectiveLEB128(bool Signed);
3374 bool AsmParser::parseDirectiveLEB128(bool Signed) { argument
3384 if (Signed)
/freebsd-10.1-release/contrib/llvm/lib/Target/X86/
H A DX86FastISel.cpp305 bool Signed = true; local
308 case MVT::i1: Signed = false; // FALLTHROUGH to handle as i8.
322 .addImm(Signed ? (uint64_t) CI->getSExtValue() :
/freebsd-10.1-release/contrib/llvm/tools/clang/include/clang/AST/
H A DASTContext.h497 unsigned Signed) const;

Completed in 231 milliseconds