! this method sets zero */
| 145 | this method sets zero |
| 146 | */ |
| 147 | void SetZero() |
| 148 | { |
| 149 | // in the future here can be 'memset' |
| 150 | |
| 151 | for(uint i=0 ; i<value_size ; ++i) |
| 152 | table[i] = 0; |
| 153 | |
| 154 | TTMATH_LOG("UInt::SetZero") |
| 155 | } |
| 156 | |
| 157 | |
| 158 | /*! |
no outgoing calls
no test coverage detected