Lines Matching refs:buffSize
6338 mlir::Value bufferSize, mlir::Value buffSize, in growBuffer() argument
6352 builder.create<fir::StoreOp>(loc, newSz, buffSize); in growBuffer()
6375 mlir::Value buffSize, mlir::Value mem, in copyNextArrayCtorSection() argument
6380 auto limit = builder.create<fir::LoadOp>(loc, buffSize); in copyNextArrayCtorSection()
6436 mem = growBuffer(mem, endOff, limit, buffSize, eleSz); in copyNextArrayCtorSection()
6458 mem = growBuffer(mem, plusOne, limit, buffSize, eleSz); in copyNextArrayCtorSection()
6488 mem = growBuffer(mem, plusOne, limit, buffSize, eleSz); in copyNextArrayCtorSection()
6527 mlir::Value buffPos, mlir::Value buffSize, in genArrayCtorInitializer() argument
6558 return genArrayCtorInitializer(v, resTy, mem, buffPos, buffSize, in genArrayCtorInitializer()
6563 mem = copyNeeded ? copyNextArrayCtorSection(exv, buffPos, buffSize, mem, in genArrayCtorInitializer()
6604 mlir::Value buffSize = builder.createTemporary(loc, idxTy, ".buff.size"); in genarr() local
6615 builder.create<fir::StoreOp>(loc, zero, buffSize); in genarr()
6621 builder.create<fir::StoreOp>(loc, initBuffSz, buffSize); in genarr()
6630 builder.create<fir::StoreOp>(loc, initBuffSz, buffSize); in genarr()
6640 return genArrayCtorInitializer(e, resTy, mem, buffPos, buffSize, in genarr()
6645 mem = copyNeeded ? copyNextArrayCtorSection(exv, buffPos, buffSize, mem, in genarr()