kerneltest/e32test/math/t_i64.cpp
changeset 109 b3a1d9898418
parent 15 4122176ea935
child 257 3e88ff8f41d5
equal deleted inserted replaced
102:ef2a444a7410 109:b3a1d9898418
   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 			{