blob: a7ad1bea8e14dacd5ac1ff9ac1d27322318e6d95 (
plain)
1
2
3
4
5
6
7
8
9
10
|
NIN= 1
NOUT= 1
OUT(1).TP= IN(1).TP
OUT(1).SZ(1)= IN(1).SZ(1)
OUT(1).SZ(2)= IN(1).SZ(2)
NIN= 2
NOUT= 1
OUT(1).TP= FA_TP_MAX(IN(1).TP,IN(2).TP)
OUT(1).SZ(1)= FA_SZ_1(FA_SZ_OPPLUS(IN(1).SZ,IN(2).SZ,IN(1).TP,IN(2).TP))
OUT(1).SZ(2)= FA_SZ_2(FA_SZ_OPPLUS(IN(1).SZ,IN(2).SZ,IN(1).TP,IN(2).TP))
|