branch | RCL_3 |
changeset 43 | c1f20ce4abcf |
parent 2 | 4122176ea935 |
child 44 | 3e88ff8f41d5 |
42:a179b74831c9 | 43:c1f20ce4abcf |
---|---|
136 |
136 |
137 if ((t & UI64LIT(0xffffffff00000000)) == 0) |
137 if ((t & UI64LIT(0xffffffff00000000)) == 0) |
138 { |
138 { |
139 while (aMod >= (t << 31)) |
139 while (aMod >= (t << 31)) |
140 { |
140 { |
141 aDiv += static_cast<TUint32>(1 << 31); |
141 aDiv += static_cast<TUint32>(1U << 31); |
142 aMod -= t << 31; |
142 aMod -= t << 31; |
143 } |
143 } |
144 } |
144 } |
145 if ((t & UI64LIT(0xffffff0000000000)) == 0) |
145 if ((t & UI64LIT(0xffffff0000000000)) == 0) |
146 { |
146 { |