/external/llvm-project/mlir/include/mlir/IR/ |
D | BlockAndValueMapping.h | 32 valueMap[from.getAsOpaquePointer()] = to.getAsOpaquePointer(); in map() 46 void erase(Value from) { valueMap.erase(from.getAsOpaquePointer()); } in erase() 51 return valueMap.count(from.getAsOpaquePointer()); in contains() 87 auto it = valueMap.find(from.getAsOpaquePointer()); in lookupOrValue()
|
D | BuiltinOps.h | 59 return hash_value(val.getAsOpaquePointer()); 68 return const_cast<void *>(val.getAsOpaquePointer()); 81 return const_cast<void *>(val.getAsOpaquePointer());
|
D | Identifier.h | 63 const void *getAsOpaquePointer() const { in getAsOpaquePointer() function 99 return llvm::hash_value(arg.getAsOpaquePointer()); in hash_value() 130 return const_cast<void *>(i.getAsOpaquePointer());
|
D | OperationSupport.h | 352 void *getAsOpaquePointer() const { in getAsOpaquePointer() function 369 return lhs.getAsOpaquePointer() == rhs.getAsOpaquePointer(); 373 return lhs.getAsOpaquePointer() != rhs.getAsOpaquePointer(); 378 return llvm::hash_value(arg.getAsOpaquePointer()); in hash_value() 906 return DenseMapInfo<void *>::getHashValue(Val.getAsOpaquePointer()); 919 return const_cast<void *>(I.getAsOpaquePointer());
|
D | Location.h | 82 const void *getAsOpaquePointer() const { return impl.getAsOpaquePointer(); } in getAsOpaquePointer() function 294 return const_cast<void *>(I.getAsOpaquePointer());
|
D | Value.h | 215 void *getAsOpaquePointer() const { return ownerAndKind.getOpaqueValue(); } in getAsOpaquePointer() function 373 return const_cast<void *>(I.getAsOpaquePointer()); 407 return const_cast<void *>(I.getAsOpaquePointer());
|
D | Types.h | 161 const void *getAsOpaquePointer() const { in getAsOpaquePointer() function 267 return const_cast<void *>(I.getAsOpaquePointer());
|
D | Attributes.h | 76 const void *getAsOpaquePointer() const { return impl; } in getAsOpaquePointer() function 196 return const_cast<void *>(attr.getAsOpaquePointer());
|
D | AffineMap.h | 204 const void *getAsOpaquePointer() const { in getAsOpaquePointer() function
|
D | AffineExpr.h | 168 const void *getAsOpaquePointer() const { in getAsOpaquePointer() function
|
/external/tensorflow/tensorflow/compiler/mlir/tools/kernel_gen/transforms/ |
D | same_shape_propagation.cc | 237 return equal_shapes_.isEquivalent(one.getAsOpaquePointer(), in haveSameShape() 238 other.getAsOpaquePointer()); in haveSameShape() 263 equal_shapes_.insert(value.getAsOpaquePointer()); in registerAssociation() 272 equal_shapes_.unionSets(rep.getAsOpaquePointer(), in registerAssociation() 273 value.getAsOpaquePointer()); in registerAssociation() 300 equal_shapes_.unionSets(candidate.getAsOpaquePointer(), in tryEvaluateShapeToRoot() 301 value.getAsOpaquePointer()); in tryEvaluateShapeToRoot()
|
D | buffer_reuse_pass.cc | 39 return lhs.getAsOpaquePointer() < rhs.getAsOpaquePointer(); in operator <()
|
/external/llvm-project/mlir/lib/IR/ |
D | Attributes.cpp | 20 : type(type.getAsOpaquePointer()) {} in AttributeStorage() 27 type = newType.getAsOpaquePointer(); in setType()
|
D | Value.cpp | 250 OpaqueValue::OpaqueValue(Value value) : impl(value.getAsOpaquePointer()) {} in OpaqueValue()
|
D | Diagnostics.cpp | 36 opaqueVal(reinterpret_cast<intptr_t>(attr.getAsOpaquePointer())) {} in DiagnosticArgument() 41 opaqueVal(reinterpret_cast<intptr_t>(val.getAsOpaquePointer())) {} in DiagnosticArgument()
|
/external/llvm-project/mlir/include/mlir/Dialect/SPIRV/ |
D | SPIRVOps.h | 65 return hash_value(val.getAsOpaquePointer()); 77 return const_cast<void *>(I.getAsOpaquePointer());
|
/external/llvm-project/mlir/include/mlir/Support/ |
D | TypeID.h | 75 const void *getAsOpaquePointer() const { in getAsOpaquePointer() function 160 return const_cast<void *>(info.getAsOpaquePointer());
|
/external/llvm-project/mlir/include/mlir/CAPI/ |
D | Wrap.h | 33 return name{cpp.getAsOpaquePointer()}; \
|
/external/llvm-project/mlir/lib/Rewrite/ |
D | ByteCode.cpp | 179 const void *opaqueVal = val.getAsOpaquePointer(); in getMemIndex() 311 using has_pointer_traits = decltype(std::declval<T>().getAsOpaquePointer()); 945 memory[resultIndex] = result.getAsOpaquePointer(); in execute() 1025 memory[memIndex] = attr.getAsOpaquePointer(); in execute() 1035 memory[memIndex] = attr.getType().getAsOpaquePointer(); in execute() 1070 memory[memIndex] = operand.getAsOpaquePointer(); in execute() 1094 memory[memIndex] = result.getAsOpaquePointer(); in execute() 1104 memory[memIndex] = value.getType().getAsOpaquePointer(); in execute()
|
/external/llvm-project/mlir/lib/Pass/ |
D | PassTiming.cpp | 249 getTimer(name.getAsOpaquePointer(), TimerKind::Pipeline, in runBeforePipeline() 271 parentTimer->children.count(name.getAsOpaquePointer()) && in runAfterPipeline() 296 Timer *timer = getTimer(id.getAsOpaquePointer(), TimerKind::PassOrAnalysis, in startAnalysisTimer()
|
D | IRPrinting.cpp | 45 addDataToHash(hasher, op->getLoc().getAsOpaquePointer()); in OperationFingerPrint()
|
/external/tensorflow/tensorflow/compiler/mlir/hlo/lib/Dialect/mhlo/transforms/ |
D | mhlo_fusion.cc | 86 auto lhs_value = lhs.getValue().getAsOpaquePointer(); in operator <() 87 auto rhs_value = rhs.getValue().getAsOpaquePointer(); in operator <()
|
/external/llvm-project/mlir/include/mlir/Dialect/LLVMIR/ |
D | LLVMTypes.h | 73 using Type::getAsOpaquePointer; 622 return const_cast<void *>(type.getAsOpaquePointer());
|
/external/clang/include/clang/Sema/ |
D | Ownership.h | 229 void *getAsOpaquePointer() const { return (void*)PtrWithInvalid; }
|
/external/llvm-project/clang/include/clang/Sema/ |
D | Ownership.h | 238 void *getAsOpaquePointer() const { return (void*)PtrWithInvalid; }
|