MCPcopy Create free account
hub / github.com/boostorg/build / add_64

Function add_64

src/engine/execnt.cpp:712–722  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

710 */
711
712static FILETIME add_64
713(
714 unsigned long h1, unsigned long l1,
715 unsigned long h2, unsigned long l2
716)
717{
718 FILETIME result;
719 result.dwLowDateTime = l1 + l2;
720 result.dwHighDateTime = add_64_hi( h1, l1, h2, l2 );
721 return result;
722}
723
724
725static FILETIME add_FILETIME( FILETIME t1, FILETIME t2 )

Callers 2

add_FILETIMEFunction · 0.85
negate_FILETIMEFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected