Home
last modified time | relevance | path

Searched refs:candidateType (Results 1 – 20 of 20) sorted by relevance

/external/llvm-project/mlir/lib/Dialect/Quant/IR/
DQuantTypes.cpp102 Type QuantizedType::castFromStorageType(Type candidateType) { in castFromStorageType() argument
103 if (candidateType == getStorageType()) { in castFromStorageType()
106 } else if (candidateType.isa<RankedTensorType>()) { in castFromStorageType()
109 candidateType.cast<RankedTensorType>().getShape(), getStorageType()); in castFromStorageType()
110 } else if (candidateType.isa<UnrankedTensorType>()) { in castFromStorageType()
113 } else if (candidateType.isa<VectorType>()) { in castFromStorageType()
115 return VectorType::get(candidateType.cast<VectorType>().getShape(), in castFromStorageType()
146 Type QuantizedType::castFromExpressedType(Type candidateType) { in castFromExpressedType() argument
147 if (candidateType == getExpressedType()) { in castFromExpressedType()
150 } else if (candidateType.isa<ShapedType>()) { in castFromExpressedType()
[all …]
/external/llvm-project/mlir/include/mlir/Dialect/Quant/
DQuantTypes.h147 Type castFromStorageType(Type candidateType);
160 Type castFromExpressedType(Type candidateType);
173 Type castExpressedToStorageType(Type candidateType);
/external/angle/third_party/vulkan-deps/glslang/src/Test/
DrayQuery-committed.Error.rgen48 uint candidateType = rayQueryGetIntersectionTypeEXT(rayQuery, committed_false);
49 if (candidateType == gl_RayQueryCandidateIntersectionTriangleEXT)
DrayQuery-allOps.Error.rgen49 int candidateType = rayQueryGetIntersectionTypeEXT(rayQuery, false);
50 switch(candidateType)
DrayQuery-allOps.frag49 uint candidateType = rayQueryGetIntersectionTypeEXT(rayQuery, false);
50 switch(candidateType)
DrayQuery-allOps.rgen49 uint candidateType = rayQueryGetIntersectionTypeEXT(rayQuery, false);
50 switch(candidateType)
DrayQuery-allOps.comp50 uint candidateType = rayQueryGetIntersectionTypeEXT(rayQuery, false);
51 switch(candidateType)
/external/deqp-deps/glslang/Test/
DrayQuery-committed.Error.rgen48 uint candidateType = rayQueryGetIntersectionTypeEXT(rayQuery, committed_false);
49 if (candidateType == gl_RayQueryCandidateIntersectionTriangleEXT)
DrayQuery-allOps.Error.rgen49 int candidateType = rayQueryGetIntersectionTypeEXT(rayQuery, false);
50 switch(candidateType)
DrayQuery-allOps.frag49 uint candidateType = rayQueryGetIntersectionTypeEXT(rayQuery, false);
50 switch(candidateType)
DrayQuery-allOps.comp50 uint candidateType = rayQueryGetIntersectionTypeEXT(rayQuery, false);
51 switch(candidateType)
DrayQuery-allOps.rgen49 uint candidateType = rayQueryGetIntersectionTypeEXT(rayQuery, false);
50 switch(candidateType)
/external/angle/src/tests/compiler_tests/
DInitOutputVariables_test.cpp35 const TType &candidateType = candidate->getType(); in AreSymbolsTheSame() local
36 const bool sameTypes = expectedType == candidateType && in AreSymbolsTheSame()
37 expectedType.getPrecision() == candidateType.getPrecision() && in AreSymbolsTheSame()
38 expectedType.getQualifier() == candidateType.getQualifier(); in AreSymbolsTheSame()
/external/deqp-deps/glslang/Test/baseResults/
DrayQuery-allOps.comp.out33 Name 69 "candidateType"
118 69(candidateType): 68(ptr) Variable Function
146 Store 69(candidateType) 71
147 72: 14(int) Load 69(candidateType)
DrayQuery-allOps.frag.out32 Name 69 "candidateType"
116 69(candidateType): 68(ptr) Variable Function
144 Store 69(candidateType) 71
145 72: 14(int) Load 69(candidateType)
DrayQuery-allOps.rgen.out32 Name 69 "candidateType"
116 69(candidateType): 68(ptr) Variable Function
144 Store 69(candidateType) 71
145 72: 14(int) Load 69(candidateType)
/external/angle/third_party/vulkan-deps/glslang/src/Test/baseResults/
DrayQuery-allOps.rgen.out32 Name 69 "candidateType"
116 69(candidateType): 68(ptr) Variable Function
144 Store 69(candidateType) 71
145 72: 14(int) Load 69(candidateType)
DrayQuery-allOps.frag.out32 Name 69 "candidateType"
116 69(candidateType): 68(ptr) Variable Function
144 Store 69(candidateType) 71
145 72: 14(int) Load 69(candidateType)
DrayQuery-allOps.comp.out33 Name 69 "candidateType"
118 69(candidateType): 68(ptr) Variable Function
146 Store 69(candidateType) 71
147 72: 14(int) Load 69(candidateType)
/external/auto/common/src/main/java/com/google/auto/common/
DOverrides.java345 TypeMirror candidateType = typeUtils.erasure(t.asType()); in methodFromSuperinterfaces() local
346 if (typeUtils.isAssignable(candidateType, methodContainerType)) { in methodFromSuperinterfaces()