Lines Matching refs:arrayElemSize
366 Optional<int64_t> arrayElemSize = getTypeNumBytes(options, arrayElemType); in convertTensorType() local
367 if (!arrayElemSize) { in convertTensorType()
402 Optional<int64_t> arrayElemSize = getTypeNumBytes(options, arrayElemType); in convertBoolMemrefType() local
403 if (!arrayElemSize) { in convertBoolMemrefType()
410 int64_t stride = needsExplicitLayout(*storageClass) ? *arrayElemSize : 0; in convertBoolMemrefType()
416 auto arrayElemCount = llvm::divideCeil(memrefSize, *arrayElemSize); in convertBoolMemrefType()
417 int64_t stride = needsExplicitLayout(*storageClass) ? *arrayElemSize : 0; in convertBoolMemrefType()
458 Optional<int64_t> arrayElemSize = getTypeNumBytes(options, arrayElemType); in convertMemrefType() local
459 if (!arrayElemSize) { in convertMemrefType()
466 int64_t stride = needsExplicitLayout(*storageClass) ? *arrayElemSize : 0; in convertMemrefType()
478 auto arrayElemCount = llvm::divideCeil(*memrefSize, *arrayElemSize); in convertMemrefType()
479 int64_t stride = needsExplicitLayout(*storageClass) ? *arrayElemSize : 0; in convertMemrefType()