/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/ |
D | APSInt.h | 22 bool IsUnsigned; variable 26 explicit APSInt() : IsUnsigned(false) {} in APSInt() 31 : APInt(BitWidth, 0), IsUnsigned(isUnsigned) {} 34 : APInt(std::move(I)), IsUnsigned(isUnsigned) {} in APInt() 76 bool isSigned() const { return !IsUnsigned; } in isSigned() 77 bool isUnsigned() const { return IsUnsigned; } in isUnsigned() 78 void setIsUnsigned(bool Val) { IsUnsigned = Val; } in setIsUnsigned() 79 void setIsSigned(bool Val) { IsUnsigned = !Val; } in setIsSigned() 99 return APSInt(APInt::trunc(width), IsUnsigned); in trunc() 103 if (IsUnsigned) in extend() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Mips/ |
D | MipsExpandPseudo.cpp | 344 bool IsUnsigned = false; in expandAtomicBinOpSubword() local 392 IsUnsigned = true; in expandAtomicBinOpSubword() 400 IsUnsigned = true; in expandAtomicBinOpSubword() 457 unsigned SLTScratch4 = IsUnsigned ? SLTu : SLT; in expandAtomicBinOpSubword() 645 bool IsUnsigned = false; in expandAtomicBinOp() local 696 IsUnsigned = true; in expandAtomicBinOp() 704 IsUnsigned = true; in expandAtomicBinOp() 743 unsigned SLTScratch2 = IsUnsigned ? SLTu : SLT; in expandAtomicBinOp()
|
D | MipsFastISel.cpp | 199 unsigned getRegEnsuringSimpleIntegerWidening(const Value *, bool IsUnsigned); 640 bool IsUnsigned = CI->isUnsigned(); in emitCmp() local 641 unsigned LeftReg = getRegEnsuringSimpleIntegerWidening(Left, IsUnsigned); in emitCmp() 644 unsigned RightReg = getRegEnsuringSimpleIntegerWidening(Right, IsUnsigned); in emitCmp() 2096 bool IsUnsigned) { in getRegEnsuringSimpleIntegerWidening() argument 2107 if (!emitIntExt(VMVT, VReg, MVT::i32, TempReg, IsUnsigned)) in getRegEnsuringSimpleIntegerWidening()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
D | APSInt.cpp | 40 ID.AddInteger((unsigned) (IsUnsigned ? 1 : 0)); in Profile()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/ |
D | LLVMContextImpl.h | 360 bool IsUnsigned; 362 MDNodeKeyImpl(int64_t Value, bool IsUnsigned, MDString *Name) 363 : Value(Value), Name(Name), IsUnsigned(IsUnsigned) {} 366 IsUnsigned(N->isUnsigned()) {} 369 return Value == RHS->getValue() && IsUnsigned == RHS->isUnsigned() &&
|
D | DebugInfoMetadata.cpp | 336 bool IsUnsigned, MDString *Name, in getImpl() argument 339 DEFINE_GETIMPL_LOOKUP(DIEnumerator, (Value, IsUnsigned, Name)); in getImpl() 341 DEFINE_GETIMPL_STORE(DIEnumerator, (Value, IsUnsigned), Ops); in getImpl()
|
D | DIBuilder.cpp | 246 bool IsUnsigned) { in createEnumerator() argument 248 return DIEnumerator::get(VMContext, Val, IsUnsigned, Name); in createEnumerator()
|
D | DebugInfo.cpp | 955 LLVMBool IsUnsigned) { in LLVMDIBuilderCreateEnumerator() argument 957 IsUnsigned != 0)); in LLVMDIBuilderCreateEnumerator()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/ |
D | SIShrinkInstructions.cpp | 142 bool &IsUnsigned) { in isKImmOrKUImmOperand() argument 144 IsUnsigned = false; in isKImmOrKUImmOperand() 149 IsUnsigned = true; in isKImmOrKUImmOperand()
|
D | AMDGPUTargetTransformInfo.h | 229 bool IsUnsigned);
|
D | AMDGPUTargetTransformInfo.cpp | 537 bool IsUnsigned) { in getMinMaxReductionCost() argument 545 return BaseT::getMinMaxReductionCost(Ty, CondTy, IsPairwise, IsUnsigned); in getMinMaxReductionCost()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/ |
D | X86TargetTransformInfo.h | 158 bool IsUnsigned);
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/ |
D | DebugInfoMetadata.h | 353 bool IsUnsigned, ArrayRef<Metadata *> Ops) in DIEnumerator() argument 356 SubclassData32 = IsUnsigned; in DIEnumerator() 361 bool IsUnsigned, StringRef Name, 363 return getImpl(Context, Value, IsUnsigned, 367 bool IsUnsigned, MDString *Name, 375 DEFINE_MDNODE_GET(DIEnumerator, (int64_t Value, bool IsUnsigned, StringRef Name), 376 (Value, IsUnsigned, Name)) 377 DEFINE_MDNODE_GET(DIEnumerator, (int64_t Value, bool IsUnsigned, MDString *Name), 378 (Value, IsUnsigned, Name))
|
D | DIBuilder.h | 180 DIEnumerator *createEnumerator(StringRef Name, int64_t Val, bool IsUnsigned = false);
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/ |
D | TargetTransformInfo.h | 998 bool IsUnsigned) const; 1349 bool IsPairwiseForm, bool IsUnsigned) = 0; 1773 bool IsPairwiseForm, bool IsUnsigned) override { in getMinMaxReductionCost() argument 1774 return Impl.getMinMaxReductionCost(Ty, CondTy, IsPairwiseForm, IsUnsigned); in getMinMaxReductionCost()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/WebAssembly/ |
D | WebAssemblyISelLowering.cpp | 347 bool IsUnsigned, bool Int64, in LowerFPToInt() argument 362 int64_t Substitute = IsUnsigned ? 0 : Limit; in LowerFPToInt() 363 double CmpVal = IsUnsigned ? -(double)Limit * 2.0 : -(double)Limit; in LowerFPToInt() 398 if (IsUnsigned) { in LowerFPToInt() 408 if (IsUnsigned) { in LowerFPToInt()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm-c/ |
D | DebugInfo.h | 579 LLVMBool IsUnsigned);
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/ |
D | TargetTransformInfo.cpp | 742 bool IsUnsigned) const { in getMinMaxReductionCost() 744 TTIImpl->getMinMaxReductionCost(Ty, CondTy, IsPairwiseForm, IsUnsigned); in getMinMaxReductionCost()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/AsmPrinter/ |
D | DwarfUnit.cpp | 1421 bool IsUnsigned = DTy && isUnsignedDIType(DD, DTy); in constructEnumTypeDIE() local 1442 addConstantValue(Enumerator, IsUnsigned, Value); in constructEnumTypeDIE()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Bitcode/Reader/ |
D | MetadataLoader.cpp | 1284 bool IsUnsigned = Record[0] & 2; in parseOneMetadata() local 1287 IsUnsigned, getMDString(Record[2]))), in parseOneMetadata()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/InstCombine/ |
D | InstCombineSelect.cpp | 2117 bool IsUnsigned = SPF == SelectPatternFlavor::SPF_UMIN || in moveAddAfterMinMax() local 2123 if (IsUnsigned && match(X, m_NUWAdd(m_Value(A), m_APInt(C1))) && in moveAddAfterMinMax() 2133 if (!IsUnsigned && match(X, m_NSWAdd(m_Value(A), m_APInt(C1))) && in moveAddAfterMinMax()
|
/third_party/flatbuffers/include/flatbuffers/ |
D | idl.h | 142 inline bool IsUnsigned(BaseType t) { in IsUnsigned() function
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Mips/AsmParser/ |
D | MipsAsmParser.cpp | 3874 bool ReverseOrderSLT, IsUnsigned, IsLikely, AcceptsEquality; in expandCondBranches() local 3952 IsUnsigned = in expandCondBranches() 3964 IsUnsigned = in expandCondBranches() 3976 IsUnsigned = in expandCondBranches() 3988 IsUnsigned = in expandCondBranches() 4064 if (IsUnsigned) { in expandCondBranches() 4115 TOut.emitRRR(IsUnsigned ? Mips::SLTu : Mips::SLT, ATRegNum, in expandCondBranches()
|
/third_party/flatbuffers/src/ |
D | idl_parser.cpp | 1760 *result = IsUnsigned(base_type) ? NumToString(u64) in ParseEnumFromString() 2313 !IsUnsigned(underlying_type)) { in ParseEnum() 2388 if (!IsUnsigned(underlying_type) && u == (base_width - 1)) in ParseEnum()
|
D | idl_gen_kotlin.cpp | 227 if (IsUnsigned(field.value.type.base_type)) { in GenFBBValueCast()
|