/external/llvm/test/CodeGen/ARM/ |
D | floorf.ll | 12 ; CHECK-NOT: ceilf 13 %foo = call float @ceilf(float 0x4000CCCCC0000000) nounwind readnone 25 declare float @ceilf(float) nounwind readnone
|
D | arm32-round-conv.ll | 44 %call = call float @ceilf(float %a) nounwind readnone 53 %call = call float @ceilf(float %a) nounwind readnone 114 declare float @ceilf(float) nounwind readnone
|
D | arm32-rounding.ll | 26 %call = call float @ceilf(float %a) nounwind readnone 109 declare float @ceilf(float) nounwind readnone
|
/external/llvm/test/CodeGen/AArch64/ |
D | arm64-dead-register-def-bug.ll | 16 %tmp1 = tail call float @ceilf(float 2.000000e+00) 32 declare float @ceilf(float) nounwind readnone
|
D | round-conv.ll | 88 %call = call float @ceilf(float %a) nounwind readnone 98 %call = call float @ceilf(float %a) nounwind readnone 128 %call = call float @ceilf(float %a) nounwind readnone 138 %call = call float @ceilf(float %a) nounwind readnone 325 declare float @ceilf(float) nounwind readnone
|
D | arm64-rounding.ll | 50 %call = tail call float @ceilf(float %a) nounwind readnone 54 declare float @ceilf(float) nounwind readnone 154 %call = tail call float @ceilf(float %a) nounwind readnone
|
D | floatdp_1source.ll | 13 declare float @ceilf(float) readonly 44 %valceil = call float @ceilf(float %val1)
|
/external/llvm/test/Transforms/InstCombine/ |
D | double-float-shrink-2.ll | 9 ; DO-SIMPLIFY: call float @ceilf( 16 ; C89-SIMPLIFY: call float @ceilf( 44 ; --> ceilf
|
D | float-shrink-compare.ll | 13 ; CHECK-NEXT: %ceilf = call float @ceilf(float %x) 14 ; CHECK-NEXT: fcmp oeq float %ceilf, %y 97 ; CHECK-NEXT: %ceilf = call float @ceilf(float %x) 98 ; CHECK-NEXT: fcmp oeq float %ceilf, %y
|
D | win-math.ll | 58 ; WIN32-NOT: float @ceilf 61 ; WIN64: float @ceilf 64 ; MINGW32: float @ceilf 67 ; MINGW64: float @ceilf
|
/external/opencv3/modules/cudawarping/test/ |
D | interpolation.hpp | 106 const float xmin = ceilf(x - 2.0f); in getValue() 109 const float ymin = ceilf(y - 2.0f); in getValue()
|
/external/llvm/test/CodeGen/PowerPC/ |
D | rounding-ops.ll | 55 %call = tail call float @ceilf(float %x) nounwind readnone 64 declare float @ceilf(float) nounwind readnone
|
/external/bison/lib/ |
D | math.in.h | 382 # undef ceilf 383 # define ceilf rpl_ceilf macro 385 _GL_FUNCDECL_RPL (ceilf, float, (float x)); 386 _GL_CXXALIAS_RPL (ceilf, float, (float x)); 389 # undef ceilf 390 _GL_FUNCDECL_SYS (ceilf, float, (float x)); 392 _GL_CXXALIAS_SYS (ceilf, float, (float x)); 394 _GL_CXXALIASWARN (ceilf); 396 # undef ceilf 398 _GL_WARN_ON_USE (ceilf, "ceilf is unportable - "
|
/external/bison/darwin-lib/ |
D | math.h | 694 # undef ceilf 695 # define ceilf rpl_ceilf 697 _GL_FUNCDECL_RPL (ceilf, float, (float x)); 698 _GL_CXXALIAS_RPL (ceilf, float, (float x)); 701 # undef ceilf 702 _GL_FUNCDECL_SYS (ceilf, float, (float x)); 704 _GL_CXXALIAS_SYS (ceilf, float, (float x)); 706 _GL_CXXALIASWARN (ceilf); 708 # undef ceilf 710 _GL_WARN_ON_USE (ceilf, "ceilf is unportable - "
|
/external/bison/linux-lib/ |
D | math.h | 694 # undef ceilf 695 # define ceilf rpl_ceilf 697 _GL_FUNCDECL_RPL (ceilf, float, (float x)); 698 _GL_CXXALIAS_RPL (ceilf, float, (float x)); 701 # undef ceilf 702 _GL_FUNCDECL_SYS (ceilf, float, (float x)); 704 _GL_CXXALIAS_SYS (ceilf, float, (float x)); 706 _GL_CXXALIASWARN (ceilf); 708 # undef ceilf 710 _GL_WARN_ON_USE (ceilf, "ceilf is unportable - "
|
/external/llvm/test/CodeGen/X86/ |
D | rounding-ops.ll | 57 %call = tail call float @ceilf(float %x) nounwind readnone 67 declare float @ceilf(float) nounwind readnone
|
/external/mesa3d/src/mesa/main/ |
D | imports.h | 122 #define ceilf(f) ((float) ceil(f)) macro 148 static inline float truncf(float x) { return x < 0.0f ? ceilf(x) : floorf(x); } in truncf() 262 #define CEILF(x) ceilf(x)
|
/external/opencv3/modules/cudalegacy/src/cuda/ |
D | ccomponetns.cu | 511 dim3 mergeGrid((int)ceilf(grid.x / 2.f), (int)ceilf(grid.y / 2.f)); in labelComponents() 515 …eam>>>(2, 2, tileSizeY, tileSizeX, edges, comps, (int)ceilf(grid.y / 2.f) - grid.y / 2, (int)ceilf… in labelComponents()
|
/external/opencv3/modules/core/include/opencv2/core/cuda/ |
D | filters.hpp | 151 const float xmin = ::ceilf(x - 2.0f); in operator ()() 154 const float ymin = ::ceilf(y - 2.0f); in operator ()()
|
/external/opencv3/modules/features2d/src/kaze/ |
D | fed.cpp | 75 n = (int)(ceilf(sqrtf(3.0f*t/tau_max+0.25f)-0.5f-1.0e-8f)+ 0.5f); in fed_tau_by_cycle_time()
|
/external/mesa3d/src/gallium/auxiliary/util/ |
D | u_dirty_surfaces.h | 90 MIN2((unsigned)ceilf(pss->max_lod) + psv->u.tex.first_level, psv->u.tex.last_level), flush); in util_dirty_surfaces_use_for_sampling_with()
|
D | u_math.h | 78 static INLINE float ceilf( float f ) in ceilf() function 134 return x >= 0.0f ? floorf(x + 0.5f) : ceilf(x - 0.5f); in roundf()
|
/external/llvm/lib/Support/Windows/ |
D | explicit_symbols.inc | 79 INLINE_DEF_FLOAT_SYMBOL(ceilf, 1)
|
/external/mesa3d/src/gallium/drivers/softpipe/ |
D | sp_setup.c | 685 setup->emaj.sy = ceilf(vmin_y); in setup_tri_edges() 686 setup->emaj.lines = (int) ceilf(vmax_y - setup->emaj.sy); in setup_tri_edges() 690 setup->etop.sy = ceilf(vmid_y); in setup_tri_edges() 691 setup->etop.lines = (int) ceilf(vmax_y - setup->etop.sy); in setup_tri_edges() 695 setup->ebot.sy = ceilf(vmin_y); in setup_tri_edges() 696 setup->ebot.lines = (int) ceilf(vmid_y - setup->ebot.sy); in setup_tri_edges()
|
/external/llvm/test/CodeGen/Mips/ |
D | mips64signextendsesf.ll | 167 %call = tail call float @ceilf(float %b.0.b.0.) #2 176 declare float @ceilf(float) #1
|