kerneltest/e32test/math/t_i64.cpp
branchRCL_3
changeset 257 3e88ff8f41d5
parent 256 c1f20ce4abcf
equal deleted inserted replaced
256:c1f20ce4abcf 257:3e88ff8f41d5
   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>(1U << 31);
   141 				aDiv += static_cast<TUint32>(1 << 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 			{