HomeSort by relevance Sort by last modified time
    Searched full:ceilf (Results 76 - 100 of 342) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/bison/lib/
math.in.h 382 # undef ceilf macro
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 macro
390 _GL_FUNCDECL_SYS (ceilf, float, (float x));
392 _GL_CXXALIAS_SYS (ceilf, float, (float x));
394 _GL_CXXALIASWARN (ceilf); variable
396 # undef ceilf macro
398 _GL_WARN_ON_USE (ceilf, "ceilf is unportable -
    [all...]
  /external/bison/linux-lib/
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 macro
710 _GL_WARN_ON_USE (ceilf, "ceilf is unportable -
    [all...]
  /external/llvm/test/CodeGen/Mips/
fp16instrinsmc.ll 229 %call = call float @ceilf(float %0) #2
230 ;pic: lw ${{[0-9]+}}, %call16(ceilf)(${{[0-9]+}})
237 declare float @ceilf(float) #1
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
InlineBox.h 217 int pixelSnappedLogicalRight() const { return ceilf(logicalRight()); }
219 int pixelSnappedLogicalBottom() const { return ceilf(logicalBottom()); }
InlineFlowBox.h 230 static_cast<LayoutUnit>(ceilf(logicalRight()));
257 LayoutUnit logicalRightVisualOverflow() const { return m_overflow ? (isHorizontal() ? m_overflow->visualOverflowRect().maxX() : m_overflow->visualOverflowRect().maxY()) : static_cast<LayoutUnit>(ceilf(logicalRight())); }
RenderFileUploadControl.cpp 165 maxLogicalWidth = static_cast<int>(ceilf(max(minDefaultLabelWidth, defaultLabelWidth)));
  /external/chromium_org/third_party/WebKit/Source/platform/fonts/
WidthIterator.cpp 268 width = ceilf(width);
283 widthSinceLastRounding = ceilf(totalWidth);
SimpleFontData.cpp 129 m_adjustedSpaceWidth = m_treatAsFixedPitch ? ceilf(width) : roundf(width);
  /external/chromium_org/cc/output/
filter_operations.cc 53 return static_cast<int>(ceilf(d * 3.f / 2.f));
  /external/chromium_org/third_party/skia/include/core/
SkFloatingPoint.h 52 #define sk_float_ceil(x) ceilf(x)
  /external/chromium_org/ui/gfx/image/
image_family.cc 64 width : static_cast<int>(ceilf(height * closest_aspect));
  /external/skia/include/core/
SkFloatingPoint.h 52 #define sk_float_ceil(x) ceilf(x)
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/softpipe/
sp_setup.c 685 setup->emaj.sy = ceilf(vmin_y);
686 setup->emaj.lines = (int) ceilf(vmax_y - setup->emaj.sy);
690 setup->etop.sy = ceilf(vmid_y);
691 setup->etop.lines = (int) ceilf(vmax_y - setup->etop.sy);
695 setup->ebot.sy = ceilf(vmin_y);
696 setup->ebot.lines = (int) ceilf(vmid_y - setup->ebot.sy);
    [all...]
  /external/mesa3d/src/gallium/drivers/softpipe/
sp_setup.c 685 setup->emaj.sy = ceilf(vmin_y);
686 setup->emaj.lines = (int) ceilf(vmax_y - setup->emaj.sy);
690 setup->etop.sy = ceilf(vmid_y);
691 setup->etop.lines = (int) ceilf(vmax_y - setup->etop.sy);
695 setup->ebot.sy = ceilf(vmin_y);
696 setup->ebot.lines = (int) ceilf(vmid_y - setup->ebot.sy);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/svg/graphics/
SVGImage.cpp 161 return IntSize(static_cast<int>(ceilf(currentSize.width())), static_cast<int>(ceilf(currentSize.height())));
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
FETurbulence.cpp 279 float highFrequency = ceilf(tileWidth * baseFrequencyX) / tileWidth;
288 float highFrequency = ceilf(tileHeight * baseFrequencyY) / tileHeight;
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_math.h 78 static INLINE float ceilf( float f ) function
134 return x >= 0.0f ? floorf(x + 0.5f) : ceilf(x - 0.5f);
  /external/mesa3d/src/gallium/auxiliary/util/
u_math.h 78 static INLINE float ceilf( float f ) function
134 return x >= 0.0f ? floorf(x + 0.5f) : ceilf(x - 0.5f);
  /hardware/qcom/display/msm8974/libhwcomposer/
hwc_utils.h 158 cropI.left = int(ceilf(cropF.left));
159 cropI.top = int(ceilf(cropF.top));
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
lp_test_arit.c 241 {"ceil", &lp_build_ceil, &ceilf, round_values, Elements(round_values), 24.0 },
  /external/chromium_org/third_party/skia/src/effects/
SkGpuBlurUtils.cpp 37 *radius = static_cast<int>(ceilf(sigma * 3.0f));
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_test_arit.c 241 {"ceil", &lp_build_ceil, &ceilf, round_values, Elements(round_values), 24.0 },
  /external/skia/src/effects/
SkGpuBlurUtils.cpp 37 *radius = static_cast<int>(ceilf(sigma * 3.0f));
  /external/llvm/include/llvm/Target/
TargetLibraryInfo.h 146 /// float ceilf(float x);
147 ceilf, enumerator in enum:llvm::LibFunc::Func
696 case LibFunc::ceil: case LibFunc::ceilf: case LibFunc::ceill:
  /external/bison/m4/
math_h.m4 42 cbrt cbrtf cbrtl ceilf ceill copysign copysignf copysignl cosf cosl coshf

Completed in 1196 milliseconds

1 2 34 5 6 7 8 91011>>