Home
last modified time | relevance | path

Searched refs:LenType (Results 1 – 6 of 6) sorted by relevance

/external/harfbuzz_ng/src/
Dhb-open-type.hh549 template <typename Type, typename LenType=HBUINT16>
671 LenType len;
674 DEFINE_SIZE_ARRAY (sizeof (LenType), arrayZ);
725 template <typename Type, typename LenType=HBUINT16>
804 LenType lenP1;
807 DEFINE_SIZE_ARRAY (sizeof (LenType), arrayZ);
811 template <typename Type, typename LenType=HBUINT16>
852 LenType lenM1;
855 DEFINE_SIZE_ARRAY (sizeof (LenType), arrayZ);
859 template <typename Type, typename LenType=HBUINT16>
[all …]
/external/llvm-project/flang/lib/Optimizer/Dialect/
DFIRType.cpp115 LenType parseLen(mlir::DialectAsmParser &parser) { in parseLen()
116 return LenType::get(parser.getBuilder().getContext()); in parseLen()
190 ty.isa<LenType>() || ty.isa<ReferenceType>() || in verifyRecordMemberType()
890 LenType fir::LenType::get(mlir::MLIRContext *ctxt) { in get()
995 if (eleTy.isa<DimsType>() || eleTy.isa<FieldType>() || eleTy.isa<LenType>() || in verifyConstructionInvariants()
1016 eleTy.isa<FieldType>() || eleTy.isa<LenType>() || in canBePointerOrHeapElementType()
1104 eleTy.isa<FieldType>() || eleTy.isa<LenType>() || eleTy.isa<HeapType>() || in verifyConstructionInvariants()
1190 eleTy.isa<FieldType>() || eleTy.isa<LenType>() || in verifyConstructionInvariants()
1297 if (auto type = ty.dyn_cast<LenType>()) { in printFirType()
DFIRDialect.cpp19 FieldType, HeapType, IntType, LenType, LogicalType, PointerType, in FIROpsDialect()
/external/llvm-project/flang/include/flang/Optimizer/Dialect/
DFIRType.h238 class LenType
239 : public mlir::Type::TypeBase<LenType, mlir::Type, detail::LenTypeStorage> {
242 static LenType get(mlir::MLIRContext *ctxt);
DFIROps.td115 def fir_LenType : Type<CPred<"$_self.isa<fir::LenType>()">,
1821 mlir::Type lenType = fir::LenType::get(builder.getContext());
/external/perfetto/src/base/
Dunix_socket.cc225 using LenType = decltype(msg->msg_iovlen); // Mac and Linux don't agree. in ShiftMsgHdrPosix() typedef
226 for (LenType i = 0; i < msg->msg_iovlen; ++i) { in ShiftMsgHdrPosix()