Home
last modified time | relevance | path

Searched refs:intType (Results 1 – 25 of 81) sorted by relevance

1234

/external/llvm-project/llvm/test/Instrumentation/SanitizerCoverage/
Dstack-depth.ll33 ; CHECK: [[frameInt:%[^ \t]+]] = ptrtoint i8* [[framePtr]] to [[intType:i[0-9]+]]
34 ; CHECK: [[lowest:%[^ \t]+]] = load [[intType]], [[intType]]* @__sancov_lowest_stack
35 ; CHECK: [[cmp:%[^ \t]+]] = icmp ult [[intType]] [[frameInt]], [[lowest]]
38 ; CHECK: store [[intType]] [[frameInt]], [[intType]]* @__sancov_lowest_stack
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/deser/std/
DJsonLocationInstantiator.java32 JavaType intType = config.constructType(Integer.TYPE); in getFromObjectArguments() local
38 creatorProp("lineNr", intType, 3), in getFromObjectArguments()
39 creatorProp("columnNr", intType, 4) in getFromObjectArguments()
/external/javaparser/javaparser-core-testing/src/test/java/com/github/javaparser/ast/nodeTypes/
DNodeWithVariablesTest.java38 assertEquals(PrimitiveType.intType(), declaration.getCommonType()); in getCommonTypeWorksForNormalVariables()
72 assertEquals(PrimitiveType.intType(), declaration.getElementType()); in getElementTypeWorksForNormalVariables()
78 assertEquals(PrimitiveType.intType(), declaration.getElementType()); in getElementTypeWorksForArrayTypes()
/external/oboe/samples/RhythmGame/third_party/glm/gtc/
Dpacking.hpp507 …template <typename intType, typename floatType, precision P, template <typename, precision> class …
508 GLM_FUNC_DECL vecType<intType, P> packSnorm(vecType<floatType, P> const & v);
514 …template <typename intType, typename floatType, precision P, template <typename, precision> class …
515 GLM_FUNC_DECL vecType<floatType, P> unpackSnorm(vecType<intType, P> const & v);
Dpacking.inl672 …template <typename intType, typename floatType, precision P, template <typename, precision> class …
673 GLM_FUNC_QUALIFIER vecType<intType, P> packSnorm(vecType<floatType, P> const & v)
675 GLM_STATIC_ASSERT(std::numeric_limits<intType>::is_integer, "uintType must be an integer type");
678 … vecType<intType, P>(round(clamp(v , static_cast<floatType>(-1), static_cast<floatType>(1)) * stat…
681 …template <typename intType, typename floatType, precision P, template <typename, precision> class …
682 GLM_FUNC_QUALIFIER vecType<floatType, P> unpackSnorm(vecType<intType, P> const & v) argument
684 GLM_STATIC_ASSERT(std::numeric_limits<intType>::is_integer, "uintType must be an integer type");
687 … (static_cast<floatType>(1) / static_cast<floatType>(std::numeric_limits<intType>::max())), static…
/external/javaparser/javaparser-core-testing/src/test/java/com/github/javaparser/printer/lexicalpreservation/
DTransformationsTest.java83 …A").get().getFieldByName("a").get().getVariable(0).setType(new ArrayType(PrimitiveType.intType())); in example7()
91 fd.addVariable(new VariableDeclarator(PrimitiveType.intType(), "b")); in example8()
99 fd.addVariable(new VariableDeclarator(new ArrayType(PrimitiveType.intType()), "b")); in example9()
122 md.addParameter(new ArrayType(PrimitiveType.intType()), "p1"); in exampleParam2()
147 md.setType(PrimitiveType.intType()); in exampleParam5()
/external/javaparser/javaparser-core-testing/src/test/java/com/github/javaparser/builders/
DFieldDeclarationBuildersTest.java32 import static com.github.javaparser.ast.type.PrimitiveType.intType;
109 myPrivateField.getVariables().add(new VariableDeclarator(intType(), "secondField")); in testCreateGetterWithANonValidField()
118 myPrivateField.getVariables().add(new VariableDeclarator(intType(), "secondField")); in testCreateSetterWithANonValidField()
/external/llvm-project/mlir/lib/IR/
DTypes.cpp95 if (auto intType = dyn_cast<IntegerType>()) in getIntOrFloatBitWidth() local
96 return intType.getWidth(); in getIntOrFloatBitWidth()
/external/javaparser/javaparser-core-testing-bdd/src/test/java/com/github/javaparser/steps/
DManipulationSteps.java50 import static com.github.javaparser.ast.type.PrimitiveType.intType;
190 method.addParameter(intType(), paramName); in whenMethodInClassHasAnIntArgumentCalledAdded()
267 assertThat(parameter.getType(), is(intType())); in thenMethodInClassParameterIsTypeIntCalled()
281 n.addParameter(intType(), "value"); in visit()
/external/javaparser/javaparser-core-testing/src/test/java/com/github/javaparser/printer/lexicalpreservation/transformations/ast/body/
DAnnotationDeclarationTransformationsTest.java86 …addMember(new AnnotationMemberDeclaration(new NodeList<>(), PrimitiveType.intType(), "foo", null)); in addingMember()
100 …Member(2, new AnnotationMemberDeclaration(new NodeList<>(), PrimitiveType.intType(), "foo", null)); in replacingMember()
/external/javassist/src/test/test/javassist/bytecode/analysis/
DAnalyzerTest.java207 … /* 6 */ code.addInvokestatic(stringClass, "valueOf", stringClass, new CtClass[]{CtClass.intType}); in generateDeadCode()
224 /* 1 */ code.addInvokestatic(intClass, "valueOf", intClass, new CtClass[]{CtClass.intType}); in generateInvalidCode()
241 … /* 1 */ code.addInvokestatic(stringClass, "valueOf", stringClass, new CtClass[]{CtClass.intType}); in generateCodeFalloff()
262 … /* 9 */ code.addInvokestatic(stringClass, "valueOf", stringClass, new CtClass[]{CtClass.intType}); in generateJsrMerge()
284 … /* 7 */ code.addInvokestatic(stringClass, "valueOf", stringClass, new CtClass[]{CtClass.intType}); in generateJsrMerge2()
/external/guice/core/test/com/google/inject/
DKeyTest.java137 Type intType = int.class; in testPrimitivesAndWrappersAreEqual() local
138 assertEquals(integerKey, Key.get(intType)); in testPrimitivesAndWrappersAreEqual()
139 assertEquals(integerKey2, Key.get(intType, Named.class)); in testPrimitivesAndWrappersAreEqual()
140 assertEquals(integerKey3, Key.get(intType, Names.named("int"))); in testPrimitivesAndWrappersAreEqual()
/external/javassist/src/test/javassist/
DJvstTest.java134 CtField f1 = new CtField(CtClass.intType, "f1", cc); in testFieldInit()
163 CtField f = new CtField(CtClass.intType, "f1", cc); in testFieldInit2()
388 = new CtConstructor(new CtClass[] { CtClass.intType }, cc); in testSetBody()
418 constructor = new CtConstructor(new CtClass[] { CtClass.intType }, in testSetConsBody()
425 cc.addMethod(CtNewMethod.make(CtClass.intType, "m2", in testSetConsBody()
781 cc.addField(new CtField(CtClass.intType, "i", cc)); in testMakeMethod()
786 CtMethod m = CtNewMethod.make(CtClass.intType, "run", null, null, in testMakeMethod()
996 CtMethod methodM = new CtMethod(CtClass.intType, "m", in testCondExpr()
997 new CtClass[]{ CtClass.intType }, cc); in testCondExpr()
1009 CtMethod methodM = new CtMethod(CtClass.intType, "m", in testCondExpr2()
[all …]
/external/llvm-project/mlir/lib/Dialect/Linalg/Transforms/
DLoops.cpp283 if (auto intType = type.dyn_cast<IntegerType>()) { in getPadValueAttr() local
284 unsigned width = intType.getWidth(); in getPadValueAttr()
288 return b.getIntegerAttr(intType, APInt::getSignedMinValue(width)); in getPadValueAttr()
301 if (auto intType = type.dyn_cast<IntegerType>()) { in getPadValueAttr() local
302 unsigned width = intType.getWidth(); in getPadValueAttr()
306 return b.getIntegerAttr(intType, APInt::getSignedMaxValue(width)); in getPadValueAttr()
/external/deqp/external/vulkancts/modules/vulkan/memory_model/
DvktMemoryModelMessagePassing.cpp351 const bool intType = (m_data.dataType == DATA_TYPE_UINT || m_data.dataType == DATA_TYPE_UINT64); in initPrograms() local
410 if (!intType) in initPrograms()
469 if (intType) in initPrograms()
486 if (intType) in initPrograms()
642 if (intType) in initPrograms()
796 if (intType) { in initPrograms()
843 const bool intType = (m_data.dataType == DATA_TYPE_UINT || m_data.dataType == DATA_TYPE_UINT64); in initProgramsTransitive() local
871 if (!intType) in initProgramsTransitive()
915 if (intType) in initProgramsTransitive()
929 if (intType) in initProgramsTransitive()
[all …]
/external/javaparser/javaparser-core-testing/src/test/java/com/github/javaparser/ast/stmt/
DForEachStmtTest.java15 assertEquals(PrimitiveType.intType(), statement.getVariableDeclarator().getType()); in nonFinalPrimitive()
/external/dagger2/javatests/dagger/internal/codegen/
DKeyFactoryTest.java254 TypeMirror intType = intMethod.getReturnType(); in primitiveKeysMatchBoxedKeys() local
255 assertThat(intType.getKind().isPrimitive()).isTrue(); in primitiveKeysMatchBoxedKeys()
258 assertWithMessage("type equality").that(types.isSameType(intType, integerType)).isFalse(); in primitiveKeysMatchBoxedKeys()
/external/javassist/src/test/
DTest.java47 method.addLocalVariable("test_localVariable", CtClass.intType); in main()
/external/jackson-databind/attic/
DTypeBindings.java317 for (Type intType : raw.getGenericInterfaces()) { in _resolveBindings()
318 _resolveBindings(intType); in _resolveBindings()
/external/javassist/src/main/javassist/expr/
DNewArray.java131 return CtClass.intType; in getPrimitiveType()
233 params[i] = CtClass.intType; in replace2()
/external/javassist/src/main/javassist/
DCtClass.java117 public static CtClass intType; field in CtClass
169 intType = new CtPrimitiveType("int", 'I', "java.lang.Integer",
172 primitiveTypes[4] = intType;
/external/javaparser/javaparser-symbol-solver-testing/src/test/java/com/github/javaparser/symbolsolver/resolution/javaparser/contexts/
DClassOrInterfaceDeclarationContextResolutionTest.java385 ResolvedType intType = ResolvedPrimitiveType.INT; in solveMethodWithPrimitiveParameters() local
387 …nce<ResolvedMethodDeclaration> ref = context.solveMethod("foo3", ImmutableList.of(intType), false); in solveMethodWithPrimitiveParameters()
464 ResolvedType intType = ResolvedPrimitiveType.INT; in solveMethodAsUsageWithPrimitiveParameters() local
466 Optional<MethodUsage> ref = context.solveMethodAsUsage("foo3", ImmutableList.of(intType)); in solveMethodAsUsageWithPrimitiveParameters()
/external/javassist/src/test/javassist/bytecode/
DInsertGap0.java175 cc.addField(new CtField(CtClass.intType, "i", cc), "++counter"); in testExample()
194 cc.addField(new CtField(CtClass.intType, "i", cc), "++counter"); in testExample2()
/external/skqp/src/sksl/
DSkSLContext.h389 static std::unique_ptr<Type> fp_type(const Type* intType, const Type* boolType) { in fp_type() argument
394 Type::Field(mods, "numTextureSamplers", intType), in fp_type()
395 Type::Field(mods, "numCoordTransforms", intType), in fp_type()
396 Type::Field(mods, "numChildProcessors", intType), in fp_type()
/external/llvm-project/mlir/lib/Dialect/SPIRV/
DSPIRVLowering.cpp262 auto intType = type.cast<IntegerType>(); local
264 return IntegerType::get(/*width=*/32, intType.getSignedness(),
431 addConversion([this](IntegerType intType) -> Optional<Type> { in SPIRVTypeConverter() argument
432 if (auto scalarType = intType.dyn_cast<spirv::ScalarType>()) in SPIRVTypeConverter()

1234