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

Function add_64

v2/engine/execnt.c:644–654  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

642 */
643
644static FILETIME add_64
645(
646 unsigned long h1, unsigned long l1,
647 unsigned long h2, unsigned long l2
648)
649{
650 FILETIME result;
651 result.dwLowDateTime = l1 + l2;
652 result.dwHighDateTime = add_64_hi( h1, l1, h2, l2 );
653 return result;
654}
655
656
657static 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