Searched refs:packedType (Results 1 – 4 of 4) sorted by relevance
/external/llvm-project/mlir/lib/Conversion/AVX512ToLLVM/ |
D | ConvertAVX512ToLLVM.cpp | 43 Type packedType; in matchAndRewriteOneToOne() local 45 packedType = typeConverter.packFunctionResults(op->getResultTypes()); in matchAndRewriteOneToOne() 46 if (!packedType) in matchAndRewriteOneToOne() 50 auto newOp = rewriter.create<TargetOp>(op->getLoc(), packedType, operands, in matchAndRewriteOneToOne()
|
/external/flatbuffers/java/com/google/flatbuffers/ |
D | FlexBuffers.java | 233 Reference(ReadBuf bb, int end, int parentWidth, int packedType) { in Reference() argument 234 this(bb, end, parentWidth, (1 << (packedType & 3)), packedType >> 2); in Reference() 975 int packedType = byteToUnsignedInt(bb.get((int) (end + (len * byteWidth) + index))); in get() local 977 return new Reference(bb, obj_end, byteWidth, packedType); in get()
|
D | FlexBuffersBuilder.java | 718 return packedType(storedWidth(parentBitWidth), type); in storedPackedType() 721 private static byte packedType(int bitWidth, int type) { in packedType() method in FlexBuffersBuilder.Value
|
/external/llvm-project/mlir/lib/Conversion/StandardToLLVM/ |
D | StandardToLLVM.cpp | 1573 Type packedType; in oneToOneRewrite() local 1575 packedType = typeConverter.packFunctionResults(op->getResultTypes()); in oneToOneRewrite() 1576 if (!packedType) in oneToOneRewrite() 1582 state.addTypes(packedType); in oneToOneRewrite() 3296 auto packedType = getTypeConverter()->packFunctionResults( in matchAndRewrite() local 3299 Value packed = rewriter.create<LLVM::UndefOp>(loc, packedType); in matchAndRewrite() 3302 loc, packedType, packed, updatedOperands[i], in matchAndRewrite()
|