MCPcopy Index your code
hub / github.com/MapServer/MapServer / MS_NINT

Function MS_NINT

mapserver.h:338–347  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

336/*# define MS_NINT(x) lround(x) */
337#elif defined(_MSC_VER) && defined(_WIN32) && !defined(USE_GENERIC_MS_NINT)
338 static __inline long int MS_NINT (double flt)
339 { int intgr;
340
341 _asm
342 { fld flt
343 fistp intgr
344 } ;
345
346 return intgr ;
347 }
348#elif defined(i386) && defined(__GNUC_PREREQ) && !defined(USE_GENERIC_MS_NINT)
349 static __inline long int MS_NINT( double __x )
350 {

Callers 15

roundIntervalFunction · 0.85
msDrawScalebarFunction · 0.85
msEmbedScalebarFunction · 0.85
msDrawShapeFunction · 0.85
msDrawLabelCacheFunction · 0.85
msDrawLineSymbolFunction · 0.85
msDrawShadeSymbolFunction · 0.85
msDrawTextFunction · 0.85
imageFilledPolygonFunction · 0.85
renderLineGDFunction · 0.85
renderGlyphsGDFunction · 0.85
renderVectorSymbolGDFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected