HomeSort by relevance Sort by last modified time
    Searched full:ceil (Results 1 - 25 of 1738) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/mesa3d/src/glsl/builtins/ir/
ceil.ir 1 ((function ceil
5 ((return (expression float ceil (var_ref arg0)))))
10 ((return (expression vec2 ceil (var_ref arg0)))))
15 ((return (expression vec3 ceil (var_ref arg0)))))
20 ((return (expression vec4 ceil (var_ref arg0)))))
  /external/llvm/test/CodeGen/AMDGPU/
fceil.ll 5 declare float @llvm.ceil.f32(float) nounwind readnone
6 declare <2 x float> @llvm.ceil.v2f32(<2 x float>) nounwind readnone
7 declare <3 x float> @llvm.ceil.v3f32(<3 x float>) nounwind readnone
8 declare <4 x float> @llvm.ceil.v4f32(<4 x float>) nounwind readnone
9 declare <8 x float> @llvm.ceil.v8f32(<8 x float>) nounwind readnone
10 declare <16 x float> @llvm.ceil.v16f32(<16 x float>) nounwind readnone
15 ; EG: CEIL {{\*? *}}[[RESULT]]
17 %y = call float @llvm.ceil.f32(float %x) nounwind readnone
26 ; EG: CEIL {{\*? *}}[[RESULT]]
27 ; EG: CEIL {{\*? *}}[[RESULT]
    [all...]
fceil64.ll 5 declare double @llvm.ceil.f64(double) nounwind readnone
6 declare <2 x double> @llvm.ceil.v2f64(<2 x double>) nounwind readnone
7 declare <3 x double> @llvm.ceil.v3f64(<3 x double>) nounwind readnone
8 declare <4 x double> @llvm.ceil.v4f64(<4 x double>) nounwind readnone
9 declare <8 x double> @llvm.ceil.v8f64(<8 x double>) nounwind readnone
10 declare <16 x double> @llvm.ceil.v16f64(<16 x double>) nounwind readnone
34 %y = call double @llvm.ceil.f64(double %x) nounwind readnone
43 %y = call <2 x double> @llvm.ceil.v2f64(<2 x double> %x) nounwind readnone
53 ; %y = call <3 x double> @llvm.ceil.v3f64(<3 x double> %x) nounwind readnone
64 %y = call <4 x double> @llvm.ceil.v4f64(<4 x double> %x) nounwind readnon
    [all...]
  /cts/tests/tests/renderscript/src/android/renderscript/cts/generated/
TestCeil.rs 24 return ceil(inV);
28 return ceil(inV);
32 return ceil(inV);
36 return ceil(inV);
40 return ceil(inV);
44 return ceil(inV);
48 return ceil(inV);
52 return ceil(inV);
  /prebuilts/go/darwin-x86/src/math/
floor_arm.s 10 TEXT ·Ceil(SB),NOSPLIT,$0
11 B ·ceil(SB)
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 {
floor_386.s 7 // func Ceil(x float64) float64
8 TEXT ·Ceil(SB),NOSPLIT,$0
16 FRNDINT // F0=Ceil(x)
  /prebuilts/go/linux-x86/src/math/
floor_arm.s 10 TEXT ·Ceil(SB),NOSPLIT,$0
11 B ·ceil(SB)
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 {
floor_386.s 7 // func Ceil(x float64) float64
8 TEXT ·Ceil(SB),NOSPLIT,$0
16 FRNDINT // F0=Ceil(x)
  /external/jemalloc/test/unit/
run_quantize.c 60 size_t lrun_size, run_size, floor, ceil; local
68 ceil = run_quantize_ceil(run_size);
73 assert_zu_eq(run_size, ceil,
101 * run_quantize_{floor,ceil}() are monotonic.
115 size_t run_size, floor, ceil; local
119 ceil = run_quantize_ceil(run_size);
122 "Floor should be <= (floor=%zu, run_size=%zu, ceil=%zu)",
123 floor, run_size, ceil);
124 assert_zu_ge(ceil, run_size,
125 "Ceiling should be >= (floor=%zu, run_size=%zu, ceil=%zu)"
    [all...]
  /external/llvm/test/Transforms/InstCombine/
ceil.ll 3 declare float @llvm.ceil.f32(float) #0
4 declare double @llvm.ceil.f64(double) #0
5 declare <4 x float> @llvm.ceil.v4f32(<4 x float>) #0
10 %x = call float @llvm.ceil.f32(float 1.00) #0
17 %x = call float @llvm.ceil.f32(float 1.25) #0
24 %x = call float @llvm.ceil.f32(float -1.25) #0
31 %x = call <4 x float> @llvm.ceil.v4f32(<4 x float> <float 1.00, float 1.25, float -1.25, float -1.00>)
38 %x = call double @llvm.ceil.f64(double 1.0) #0
45 %x = call double @llvm.ceil.f64(double 1.3) #0
52 %x = call double @llvm.ceil.f64(double -1.75) #
    [all...]
  /external/v8/test/mjsunit/asm/
math-ceil.js 8 var ceil = stdlib.Math.ceil;
13 return ceil(a);
  /bionic/libm/arm64/
ceil.S 19 ENTRY(ceil) function
22 END(ceil)
  /external/llvm/test/CodeGen/Mips/
call-optimization.ll 56 ; O32-DAG: lw $25, %call16(ceil)
60 ; O32: lw $25, %call16(ceil)
64 ; O32: lw $25, %call16(ceil)
69 ; O32-LOADTGT-DAG: lw $25, %call16(ceil)
83 %call = tail call double @ceil(double %d)
84 %call1 = tail call double @ceil(double %call)
86 %call2 = tail call double @ceil(double %call1)
91 declare double @ceil(double)
  /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);
  /cts/tests/tests/libcorelegacy22/src/android/util/cts/
FloatMathTest.java 39 assertEquals(79, FloatMath.ceil(78.89f), 0);
40 assertEquals(-78, FloatMath.ceil(-78.89f), 0);
41 assertEquals(8.0f, FloatMath.ceil(7.2f));
42 assertEquals(-6.0f, FloatMath.ceil(-6.3f));
  /external/iproute2/tc/
q_htb.c 41 " [ceil R2] [cburst B2] [mtu MTU] [quantum Q]\n"
47 " ceil definite upper class rate (no borrows) {rate}\n"
48 " cburst burst but for ceil {computed}\n"
178 } else if (strcmp(*argv, "ceil") == 0) {
181 fprintf(stderr, "Double \"ceil\" spec\n");
185 explain1("ceil");
218 /* if ceil params are missing, use the same as rate */
223 opt.ceil.rate = (ceil64 >= (1ULL << 32)) ? ~0U : ceil64;
232 opt.ceil.overhead = overhead;
235 opt.ceil.mpu = mpu
    [all...]
  /bionic/libm/x86/
ceil.S 33 ENTRY(ceil) function
41 END(ceil)
43 ALIAS_SYMBOL(ceill, ceil);
  /external/v8/test/mjsunit/
math-ceil.js 11 '"' + (test_id++) + '";return Math.ceil(n)');
20 '"' + (test_id++) + '";return Math.ceil(+n)');
29 '"' + (test_id++) + '";return Math.ceil(n) + -0.0');
  /bionic/libm/upstream-freebsd/lib/msun/src/
s_ceil.c 17 * ceil(x)
22 * Inexact flag raised if x not equal to ceil(x).
33 ceil(double x) function
76 __weak_reference(ceil, ceill);
  /external/libgdx/tests/gdx-tests-android/assets/data/shaders/
projtex-frag.glsl 23 float factor = ceil(sign(texcoords.z));
  /external/llvm/test/ExecutionEngine/Interpreter/
intrinsics.ll 10 declare float @llvm.ceil.f32(float)
11 declare double @llvm.ceil.f64(double)
26 %ceil32 = call float @llvm.ceil.f32(float 0.000000e+00)
27 %ceil64 = call double @llvm.ceil.f64(double 0.000000e+00)
  /bionic/libm/x86_64/
ceil.S 33 ENTRY(ceil) function
36 END(ceil)
  /external/llvm/test/CodeGen/SystemZ/
fp-round-01.ll 83 ; Test ceil for f32.
84 declare float @llvm.ceil.f32(float %f)
89 %res = call float @llvm.ceil.f32(float %f)
93 ; Test ceil for f64.
94 declare double @llvm.ceil.f64(double %f)
97 ; CHECK: brasl %r14, ceil@PLT
99 %res = call double @llvm.ceil.f64(double %f)
103 ; Test ceil for f128: omitted for now because we cannot handle

Completed in 1233 milliseconds

1 2 3 4 5 6 7 8 91011>>