| 342 | } |
| 343 | |
| 344 | void rebind(uint16_t inWidthOfX) { |
| 345 | numRows.rebind(&mStorage[0]); |
| 346 | widthOfX.rebind(&mStorage[1]); |
| 347 | coef.rebind(&mStorage[2], inWidthOfX); |
| 348 | S.rebind(&mStorage[2+inWidthOfX]); |
| 349 | H.rebind(&mStorage[3+inWidthOfX], inWidthOfX); |
| 350 | } |
| 351 | |
| 352 | Handle mStorage; |
| 353 |