| 36 | } |
| 37 | |
| 38 | void TSIntegerSet::setAll(S32 upto) |
| 39 | { |
| 40 | AssertFatal(upto<=MAX_TS_SET_SIZE,"TSIntegerSet::setAll: out of range"); |
| 41 | |
| 42 | dMemset(bits,0xFFFFFFFF,(upto>>5)*4); |
| 43 | if (upto&31) |
| 44 | bits[upto>>5] |= SETUPTO(upto); |
| 45 | } |
| 46 | |
| 47 | bool TSIntegerSet::testAll(S32 upto) const |
| 48 | { |
no test coverage detected