Home
last modified time | relevance | path

Searched refs:intValue (Results 1 – 19 of 19) sorted by relevance

/llvm-project-15.0.7/flang/unittests/Runtime/
H A DInquiry.cpp38 int intValue{1}; in TEST() local
42 static_cast<void *>(&intValue), 1, extent, CFI_attribute_pointer); in TEST()
55 static_cast<void *>(&intValue), 1, extent, CFI_attribute_pointer); in TEST()
H A DReduction.cpp532 int intValue{1}; in TEST() local
533 target.Establish(TypeCategory::Integer, 4, static_cast<void *>(&intValue), 0, in TEST()
/llvm-project-15.0.7/mlir/lib/Dialect/Arithmetic/IR/
H A DArithmeticOps.cpp497 APInt intValue; in fold() local
498 if (matchPattern(getRhs(), m_ConstantInt(&intValue)) && intValue.isAllOnes()) in fold()
616 APInt intValue; in fold() local
619 intValue.isMaxSignedValue()) in fold()
644 APInt intValue; in fold() local
646 if (matchPattern(getRhs(), m_ConstantInt(&intValue)) && intValue.isMaxValue()) in fold()
650 if (matchPattern(getRhs(), m_ConstantInt(&intValue)) && intValue.isMinValue()) in fold()
690 APInt intValue; in fold() local
718 APInt intValue; in fold() local
720 if (matchPattern(getRhs(), m_ConstantInt(&intValue)) && intValue.isMinValue()) in fold()
[all …]
/llvm-project-15.0.7/clang/test/Analysis/
H A Dpr4209.m26 - (int)intValue; method
61 …GSEbayCategory *category = [rootCategory subcategoryWithID:[[inCategory categoryID] intValue]]; //…
/llvm-project-15.0.7/llvm/include/llvm/WindowsResource/
H A DResourceScriptToken.h42 uint32_t intValue() const;
/llvm-project-15.0.7/llvm/tools/llvm-rc/
H A DResourceScriptToken.h54 uint32_t intValue() const;
H A DResourceScriptToken.cpp48 uint32_t RCToken::intValue() const { in intValue() function in RCToken
H A Dllvm-rc.cpp624 outs() << "; int value = " << Token.intValue(); in doRc()
H A DResourceScriptStmt.h36 : Val(Token.intValue()), Long(Token.isLongInt()) {} in RCInt()
/llvm-project-15.0.7/clang/test/SemaObjCXX/Inputs/
H A Dnullability-consistency-7.h24 @property (nonatomic) int intValue __attribute__((unavailable("wouldn't work anyway")));
/llvm-project-15.0.7/mlir/lib/Conversion/MathToSPIRV/
H A DMathToSPIRV.cpp81 uint64_t intValue = uint64_t(1) << (bitwidth - 1); in matchAndRewrite() local
84 loc, intType, rewriter.getIntegerAttr(intType, intValue)); in matchAndRewrite()
86 loc, intType, rewriter.getIntegerAttr(intType, intValue - 1u)); in matchAndRewrite()
/llvm-project-15.0.7/clang/test/APINotes/Inputs/Frameworks/SomeKit.framework/Headers/
H A DSomeKit.h12 @property (nonatomic) int intValue;
H A DSomeKit.apinotes38 - Name: intValue
/llvm-project-15.0.7/mlir/unittests/IR/
H A DAttributeTest.cpp225 auto intValue = DenseIntElementsAttr::get(intValueTy, {1}); in TEST() local
233 auto sparseInt = SparseElementsAttr::get(tensorI32, indices, intValue); in TEST()
/llvm-project-15.0.7/mlir/lib/Tools/lsp-server-support/
H A DProtocol.cpp686 if (Optional<int64_t> intValue = value.getAsInteger()) { in fromJSON() local
687 if (*intValue < static_cast<int>(CompletionItemKind::Text) || in fromJSON()
688 *intValue > static_cast<int>(CompletionItemKind::TypeParameter)) in fromJSON()
690 result = static_cast<CompletionItemKind>(*intValue); in fromJSON()
/llvm-project-15.0.7/mlir/lib/Dialect/MemRef/IR/
H A DMemRefOps.cpp2489 Optional<int64_t> intValue = getConstantIntValue(ofr); in isTrivialSubViewOp() local
2490 return !intValue || intValue.value() != 0; in isTrivialSubViewOp()
2496 Optional<int64_t> intValue = getConstantIntValue(ofr); in isTrivialSubViewOp() local
2497 return !intValue || intValue.value() != 1; in isTrivialSubViewOp()
2504 Optional<int64_t> intValue = getConstantIntValue(size.value()); in isTrivialSubViewOp() local
2505 if (!intValue || *intValue != sourceShape[size.index()]) in isTrivialSubViewOp()
/llvm-project-15.0.7/clang/lib/CodeGen/
H A DCGAtomic.cpp2086 llvm::Value *intValue = atomics.convertRValueToInt(rvalue); in EmitAtomicStore() local
2091 intValue = Builder.CreateIntCast( in EmitAtomicStore()
2092 intValue, addr.getElementType(), /*isSigned=*/false); in EmitAtomicStore()
2093 llvm::StoreInst *store = Builder.CreateStore(intValue, addr); in EmitAtomicStore()
/llvm-project-15.0.7/mlir/lib/Target/SPIRV/Serialization/
H A DSerializer.cpp879 APInt intValue = value.bitcastToAPInt(); in prepareConstantFp() local
/llvm-project-15.0.7/mlir/lib/Dialect/LLVMIR/IR/
H A DLLVMDialect.cpp1972 if (auto intValue = value.dyn_cast<IntegerAttr>()) in isZeroAttribute() local
1973 return intValue.getValue().isNullValue(); in isZeroAttribute()