OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:CEIL
(Results
1 - 7
of
7
) sorted by null
/external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/
ComposableFunction.java
176
/** The {@code FastMath.
ceil
} method wrapped as a {@link ComposableFunction}. */
177
public static final ComposableFunction
CEIL
= new ComposableFunction() {
181
return FastMath.
ceil
(d);
/external/libgdx/gdx/src/com/badlogic/gdx/math/
MathUtils.java
23
* Thanks to Riven on JavaGaming.org for the basis of sin/cos/floor/
ceil
.
280
static private final double
CEIL
= 0.9999999;
296
/** Returns the smallest integer greater than or equal to the specified float. This method will only properly
ceil
floats from
298
static public int
ceil
(float value) {
method in class:MathUtils
302
/** Returns the smallest integer greater than or equal to the specified float. This method will only properly
ceil
floats that
305
return (int)(value +
CEIL
);
/external/libvncserver/libvncserver/
scale.c
65
#define
CEIL
(x) ( (double) ((int) (x)) == (x) ? \
117
w2 =
CEIL
(w1 + ( x1 - x2 ));
118
h2 =
CEIL
(h1 + ( y1 - y2 ));
126
/* simulate
ceil
() without math library */
/system/netd/server/
MDnsSdListener.cpp
45
#define
CEIL
(x, y) (((x) + (y) - 1) / (y))
264
size_t dstLength =
CEIL
(
CEIL
(txtLen * 4, 3), 4) * 4 + 1;
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
system.h
349
#define
CEIL
(x,y) (((x) + (y) - 1) / (y))
[
all
...]
/hardware/broadcom/wlan/bcmdhd/dhdutil/include/
bcmutils.h
619
#define
CEIL
(x, y) (((x) + ((y) - 1)) / (y))
/packages/apps/Calculator/
arity-2.1.2.jar
Completed in 974 milliseconds