MCPcopy Create free account
hub / github.com/audacity/audacity / lrint

Function lrint

libraries/lib-math/float_cast.h:60–70  ·  view source on GitHub ↗

Win32 doesn't seem to have these functions. ** Therefore implement inline versions of these functions here. */

Source from the content-addressed store, hash-verified

58 ** Therefore implement inline versions of these functions here.
59 */
60 __inline long int
61 lrint (double flt)
62 { int intgr;
63
64 _asm
65 { fld flt
66 fistp intgr
67 } ;
68
69 return intgr ;
70 }
71
72 __inline long int
73 lrintf (float flt)

Callers 4

HandleXMLTagMethod · 0.50
StartPortAudioStreamMethod · 0.50
AllocateBuffersMethod · 0.50
DrainRecordBuffersMethod · 0.50

Calls

no outgoing calls

Tested by

no test coverage detected