MCPcopy Create free account
hub / github.com/HoShiMin/Kernel-Bridge / ceilf

Function ceilf

Kernel-Bridge/API/CppSupport.cpp:251–255  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

249#ifdef _AMD64_
250 #pragma function(ceilf)
251 _Check_return_ float __cdecl ceilf(_In_ float _X)
252 {
253 int v = static_cast<int>(_X);
254 return static_cast<float>(_X > static_cast<float>(v) ? v + 1 : v);
255 }
256#else
257 #pragma function(ceil)
258 _Check_return_ double __cdecl ceil(_In_ double _X)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected