blob: 669f06ecbbae81ea41eb4dd2d96e358d4998f7ff (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
// -*- C++ -*-
//
// $Id$
ACE_BEGIN_VERSIONED_NAMESPACE_DECL
namespace ACE_OS {
ACE_INLINE double
floor (double x)
{
// This method computes the largest integral value not greater than x.
if(x > 0)
return static_cast<long> (x);
else if ((static_cast<long> (x) < x) || (static_cast<long> (x) > x) )
return static_cast<long>(x) - 1;
else
return x;
}
ACE_INLINE double
ceil (double x)
{
// This method computes the smallest integral value not less than x.
if (x < 0)
return static_cast<long> (x);
else if ((static_cast<long> (x) < x) || (static_cast<long> (x) > x))
return static_cast<long> (x) + 1;
else
return x;
}
ACE_INLINE double
log2 (double x)
{
return ace_log2_helper (x);
}
} // ACE_OS namespace
ACE_END_VERSIONED_NAMESPACE_DECL
|