Searched refs:COMPLEMENT48 (Results 1 - 1 of 1) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/net/dccp/
H A Ddccp.h111 #define COMPLEMENT48(x) (0x1000000000000LL - (x)) /* 2^48 - x */ macro
112 #define TO_SIGNED48(x) (((x) < INT48_MIN)? (x) : -COMPLEMENT48( (x)))
113 #define TO_UNSIGNED48(x) (((x) >= 0)? (x) : COMPLEMENT48(-(x)))
115 #define SUB48(a, b) ADD48((a), COMPLEMENT48(b))

Completed in 280 milliseconds