| 129 | #pragma warning(push) |
| 130 | #pragma warning(disable : 4035) //Disable warning "no return value" |
| 131 | AGG_INLINE int iround(double v) //-------iround |
| 132 | { |
| 133 | int t; |
| 134 | __asm fld qword ptr [v] |
| 135 | __asm fistp dword ptr [t] |
| 136 | __asm mov eax, dword ptr [t] |
| 137 | } |
| 138 | AGG_INLINE unsigned uround(double v) //-------uround |
| 139 | { |
| 140 | unsigned t; |
no outgoing calls
no test coverage detected