HomeSort by relevance Sort by last modified time
    Searched refs:ceilf (Results 26 - 50 of 190) sorted by null

12 3 4 5 6 7 8

  /frameworks/rs/cpu_ref/
rsCpuRuntimeMath.cpp 124 EXPORT_F32_FN_F32(ceilf)
194 { "_Z4ceilf", (void *)&ceilf, true },
  /frameworks/rs/
rsScriptC_Lib.cpp 53 x = x - ceilf(x + 0.5f) + 1.0f;
72 x = x - ceilf(x + 0.5f) + 1.0f;
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
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); }
252 *** CEILF: ceiling of float
262 #define CEILF(x) ceilf(x)
270 #define CEILF(x) ((GLfloat) ceil(x))
  /external/mesa3d/src/mesa/main/
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); }
252 *** CEILF: ceiling of float
262 #define CEILF(x) ceilf(x)
270 #define CEILF(x) ((GLfloat) ceil(x))
  /external/chromium_org/cc/output/
filter_operations.cc 53 return static_cast<int>(ceilf(d * 3.f / 2.f));
  /external/chromium_org/ui/gfx/image/
image_family.cc 62 width : static_cast<int>(ceilf(height * closest_aspect));
  /external/valgrind/main/memcheck/tests/
vcpu_fnfns.c 39 printf(" ceilF(%+20.4e) = %+20.4e\n", (double)f, (double)ceilf(f));
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
InlineBox.h 218 int pixelSnappedLogicalRight() const { return ceilf(logicalRight()); }
220 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())); }
  /external/chromium_org/third_party/WebKit/Source/core/svg/graphics/
SVGImage.cpp 112 return IntSize(static_cast<int>(ceilf(currentSize.width())), static_cast<int>(ceilf(currentSize.height())));
  /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:
  /system/core/libutils/
BasicHashtable.cpp 329 size_t count = ceilf(minimumCapacity / loadFactor) + 1;
339 *outCapacity = ceilf((count - 1) * loadFactor);
  /external/bison/darwin-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/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/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/platform/graphics/
WidthIterator.cpp 272 width = ceilf(width);
287 widthSinceLastRounding = ceilf(totalWidth);
FontFastPath.cpp 541 glyphOverflow->top = max<int>(glyphOverflow->top, ceilf(-it.minGlyphBoundingBoxY()) - (glyphOverflow->computeBounds ? 0 : fontMetrics().ascent()));
542 glyphOverflow->bottom = max<int>(glyphOverflow->bottom, ceilf(it.maxGlyphBoundingBoxY()) - (glyphOverflow->computeBounds ? 0 : fontMetrics().descent()));
543 glyphOverflow->left = ceilf(it.firstGlyphOverflow());
544 glyphOverflow->right = ceilf(it.lastGlyphOverflow());
559 // Using roundf() rather than ceilf() for the right edge as a compromise to ensure correct caret positioning.
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/filters/
FETurbulence.cpp 281 float highFrequency = ceilf(tileWidth * baseFrequencyX) / tileWidth;
290 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));
  /development/ndk/platforms/android-3/include/
math.h 336 float ceilf(float);
  /development/ndk/platforms/android-9/include/
math.h 336 float ceilf(float);

Completed in 725 milliseconds

12 3 4 5 6 7 8