Searched refs:ceil (Results 1 - 25 of 48) sorted by relevance

12

/haiku/src/system/libroot/posix/musl/math/arm64/
H A Dceil.c3 double ceil(double x) function
/haiku/src/system/libroot/posix/musl/math/x86/
H A Dfloor.s27 .global ceil
28 .type ceil,@function
29 ceil: label
/haiku/src/system/libroot/posix/musl/math/
H A Dceil.c10 double ceil(double x) function
H A Dceill.c6 return ceil(x);
/haiku/src/apps/cortex/addons/common/
H A DSoundUtils.cpp124 buffers = (int) ceil(us_to_s(duration)*(format.frame_rate/frames_per_buffer(format)));
133 return (int64) ceil(format.frame_rate*us_to_s(duration));
/haiku/src/apps/cortex/support/
H A DSoundUtils.cpp124 buffers = (int) ceil(us_to_s(duration)*(format.frame_rate/frames_per_buffer(format)));
133 return (int64) ceil(format.frame_rate*us_to_s(duration));
/haiku/src/apps/debuganalyzer/gui/chart/
H A DDefaultChartAxisLegendSource.cpp45 double value = ceil(start / interval) * interval;
81 double shiftedValue = ceil(start / interval);
H A DStringChartLegend.cpp71 point.y += ceil(fFontAscent);
/haiku/headers/libs/agg/
H A Dagg_basics.h156 return int(ceil(v));
160 return unsigned(ceil(v));
181 return int(ceil(v));
185 return unsigned(ceil(v));
207 return int(ceil(v));
211 return unsigned(ceil(v));
/haiku/src/apps/cortex/TipManager/
H A DTipView.cpp136 // *outWidth = ceil(m_font.StringWidth(m_text.String()) + s_xPad*2);
137 *outWidth = ceil(_maxTextWidth() + s_xPad*2);
138 *outHeight = ceil(_textHeight() + s_yPad*2);
/haiku/src/system/libroot/posix/glibc/misc/
H A Defgcvt.c45 # define NDIGIT_MAX (lrint (ceil (M_LN2 / M_LN10 * DBL_MANT_DIG + 1.0)))
H A Defgcvt_r.c44 # define NDIGIT_MAX (lrint (ceil (M_LN2 / M_LN10 * DBL_MANT_DIG + 1.0)))
/haiku/src/apps/serialconnect/
H A DTermView.cpp73 int y = pos.row * fFontHeight + (int)ceil(height.ascent)
125 FillRect(BRect(x, y - ceil(height.ascent) + 1,
127 y + ceil(height.descent) + ceil(height.leading)),
368 rect.end_col = (int)ceil(pixels.right / fFontWidth);
370 rect.end_row = (int)ceil(pixels.bottom / fFontHeight);
/haiku/headers/os/interface/
H A DRect.h216 return (int32)ceil(right - left);
230 return (int32)ceil(bottom - top);
/haiku/src/add-ons/translators/icns/
H A DICNSLoader.cpp25 int imageWidth = (int)ceil(width);
26 int imageHeight = (int)ceil(height);
/haiku/src/apps/cortex/ValControl/
H A DNumericValControl.cpp209 (int64)ceil(minValue * factor);
213 (int64)ceil(maxValue * factor);
H A DValControlDigitSegment.cpp142 // double dfC = ceil(dfTemp);
418 s_cachedDigitWidth = ceil(fMax + s_widthTrim);
/haiku/src/add-ons/media/media-add-ons/vst_host/
H A DVSTHost.h90 inline float vstround(float x) {return ceil(x-0.5);}
/haiku/src/apps/icon-o-matic/import_export/svg/
H A DDocumentBuilder.cpp67 double xMax = ceil(fSource->width);
68 double yMax = ceil(fSource->height);
/haiku/headers/libs/mapm/
H A Dm_apm.h90 * add floor and ceil functions
587 MAPM ceil(void) const function in class:MAPM
617 inline MAPM ceil(const MAPM &m) {return m.ceil();} function
/haiku/src/system/libroot/posix/glibc/math/bits/
H A Dmathcalls.h162 __MATHCALL (ceil,, (_Mdouble_ __x));
/haiku/src/kits/tracker/
H A DIconMenuItem.cpp132 drawPoint.y += ceil(fHeightDelta / 2);
157 where.y += ceil(deltaHeight / 2);
/haiku/src/kits/media/
H A DSound.cpp146 return (bigtime_t)ceil((1000000LL * frameCount) / frameRate);
/haiku/src/libs/agg/font_freetype/
H A Dagg_font_freetype.cpp978 m_bounds.x2 = int(ceil(bnd.x2));
979 m_bounds.y2 = int(ceil(bnd.y2));
999 m_bounds.x2 = int(ceil(bnd.x2));
1000 m_bounds.y2 = int(ceil(bnd.y2));
/haiku/src/add-ons/media/media-add-ons/mixer/
H A DMixerUtils.cpp226 return (int64) ceil(framerate * double(duration) / 1000000.0);

Completed in 243 milliseconds

12