kerneltest/e32test/math/t_i64.cpp
changeset 121 661475905584
parent 15 4122176ea935
child 257 3e88ff8f41d5
equal deleted inserted replaced
120:b42b9ce90ea9 121:661475905584
   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 			{