| 101 | } |
| 102 | |
| 103 | void rebind(uint16_t inWidthOfX) { |
| 104 | numRows.rebind(&mStorage[0]); |
| 105 | widthOfX.rebind(&mStorage[1]); |
| 106 | multiplier.rebind(&mStorage[2]); |
| 107 | y_previous.rebind(&mStorage[3]); |
| 108 | coef.rebind(&mStorage[4], inWidthOfX); |
| 109 | A.rebind(&mStorage[4+inWidthOfX]); |
| 110 | B.rebind(&mStorage[5+inWidthOfX], inWidthOfX); |
| 111 | M.rebind(&mStorage[5+2*inWidthOfX], |
| 112 | inWidthOfX, inWidthOfX); |
| 113 | hessian.rebind(&mStorage[5+2*inWidthOfX+inWidthOfX*inWidthOfX], |
| 114 | inWidthOfX, inWidthOfX); |
| 115 | tie12.rebind(&mStorage[5+2*inWidthOfX+2*inWidthOfX*inWidthOfX], inWidthOfX, inWidthOfX); |
| 116 | tie13.rebind(&mStorage[5+2*inWidthOfX+3*inWidthOfX*inWidthOfX], inWidthOfX); |
| 117 | tie23.rebind(&mStorage[5+3*inWidthOfX+3*inWidthOfX*inWidthOfX], inWidthOfX); |
| 118 | tie22.rebind(&mStorage[5+4*inWidthOfX+3*inWidthOfX*inWidthOfX], inWidthOfX, inWidthOfX); |
| 119 | tie33.rebind(&mStorage[5+4*inWidthOfX+4*inWidthOfX*inWidthOfX]); |
| 120 | num_censored.rebind(&mStorage[6+4*inWidthOfX+4*inWidthOfX*inWidthOfX]); |
| 121 | } |
| 122 | |
| 123 | Handle mStorage; |
| 124 | |