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
/prebuilts/go/darwin-x86/src/math/
floor.go
30
//
Ceil
returns the least integer value greater than or equal to x.
33
//
Ceil
(±0) = ±0
34
//
Ceil
(±Inf) = ±Inf
35
//
Ceil
(NaN) = NaN
36
func
Ceil
(x float64) float64
38
func
ceil
(x float64) float64 {
func
/prebuilts/go/linux-x86/src/math/
floor.go
30
//
Ceil
returns the least integer value greater than or equal to x.
33
//
Ceil
(±0) = ±0
34
//
Ceil
(±Inf) = ±Inf
35
//
Ceil
(NaN) = NaN
36
func
Ceil
(x float64) float64
38
func
ceil
(x float64) float64 {
func
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/numeric/conversion/
converter_policies.hpp
15
#include <boost/config/no_tr1/cmath.hpp> // for std::floor and std::
ceil
39
using std::
ceil
;
42
return s < static_cast<S>(0) ?
ceil
(s) : floor(s) ;
70
struct
Ceil
79
using std::
ceil
;
82
return
ceil
(s) ;
101
using std::
ceil
;
106
S next =
ceil
(s);
/external/llvm/lib/Target/Mips/
MipsSEISelLowering.cpp
816
uint64_t
Ceil
= Log2Ceil == 64 ? 0LL : 1LL << Log2Ceil;
819
// where floor_c = pow(2, floor(log2(c))) and ceil_c = pow(2,
ceil
(log2(c))),
821
if (C - Floor <=
Ceil
- C) {
829
SDValue Op0 = genConstMult(X,
Ceil
, DL, VT, ShiftTy, DAG);
830
SDValue Op1 = genConstMult(X,
Ceil
- C, DL, VT, ShiftTy, DAG);
[
all
...]
/external/deqp/external/vulkancts/modules/vulkan/shaderexecutor/
vktShaderBuiltinPrecisionTests.cpp
[
all
...]
/external/deqp/modules/glshared/
glsBuiltinPrecisionTests.cpp
[
all
...]
/external/pdfium/xfa/src/fxfa/src/fm2js/
xfa_fm2jscontext.cpp
323
void CXFA_FM2JSContext::
Ceil
(FXJSE_HOBJECT hThis,
339
L"
Ceil
");
[
all
...]
Completed in 259 milliseconds