Searched refs:floor (Results 1 - 25 of 56) sorted by relevance

123

/haiku/src/system/libroot/posix/musl/math/x86/
H A Dceil.s1 # see floor.s
H A Dceilf.s1 # see floor.s
H A Dceill.s1 # see floor.s
H A Dfloorf.s1 # see floor.s
H A Dfloorl.s1 # see floor.s
H A Dtrunc.s1 # see floor.s
H A Dtruncf.s1 # see floor.s
H A Dtruncl.s1 # see floor.s
H A Dfloor.s13 .global floor
14 .type floor,@function
15 floor: label
/haiku/src/system/libroot/posix/musl/math/arm64/
H A Dfloor.c3 double floor(double x) function
/haiku/src/preferences/screen/
H A DUtility.cpp11 int32 tmp = (int32)floor(n);
/haiku/src/tests/libs/icon/flat_icon/
H A DFlatIconFormat.py28 exponent = math.floor(math.log2(abs(value)))
37 return (sign << 23) + ((exponent+32) << 17) + math.floor(mantissa * 2 ** 17)
/haiku/src/system/libroot/posix/musl/math/
H A Dfloor.c10 double floor(double x) function
H A Dfloorl.c6 return floor(x);
H A Dtgamma.c37 x = 2 * (x - floor(x));
126 if (x == floor(x)) {
138 if (floor(x) * 0.5 == floor(x * 0.5))
186 if (x == floor(x) && x <= 2) {
/haiku/src/preferences/joysticks/
H A DMessageWin.cpp42 ResizeTo(parentFrame.Width(), floor(parentFrame.Height() / 3));
43 MoveBy(0, floor(parentFrame.Height() / 2 - (parentFrame.Height()/3) / 2 ));
/haiku/src/kits/interface/
H A DSeparatorItem.cpp99 const float startLeft = bounds.left + (floor(bounds.Width())) / 2;
107 const float startTop = bounds.top + (floor(bounds.Height())) / 2;
/haiku/src/tests/kits/interface/bregion/
H A DRegionTestcase.cpp145 pointArray[numPoints].Set(floor(xCoord), floor(yCoord));
/haiku/src/libs/icon/style/
H A DGradientTransformable.cpp483 c[0] = kInverseGammaTable[(uint16)floor(fromBlue * f + toBlue * t + 0.5)];
484 c[1] = kInverseGammaTable[(uint16)floor(fromGreen * f + toGreen * t + 0.5)];
485 c[2] = kInverseGammaTable[(uint16)floor(fromRed * f + toRed * t + 0.5)];
486 c[3] = (uint8)floor(from->color.alpha * f + to->color.alpha * t + 0.5);
495 c[0] = (uint8)floor(from->color.red * f + to->color.red * t + 0.5);
496 c[1] = (uint8)floor(from->color.green * f + to->color.green * t + 0.5);
497 c[2] = (uint8)floor(from->color.blue * f + to->color.blue * t + 0.5);
498 c[3] = (uint8)floor(from->color.alpha * f + to->color.alpha * t + 0.5);
/haiku/src/apps/icon-o-matic/generic/support/
H A Drgb_hsv.h71 int i = (int)floor(h);
/haiku/src/apps/workspaces/
H A DWorkspaces.cpp755 float width = floor(workspaceWidth * columns);
756 float height = floor(workspaceHeight * rows);
762 width = floor(0.95 * width);
763 height = floor(0.95 * height);
856 width = floor(workspaceWidth * columns);
857 height = floor(workspaceHeight * rows);
862 width = floor(0.95 * width);
863 height = floor(0.95 * height);
1126 float rowHeight = floor((height - 1) / rows);
1130 float columnWidth = floor((rowHeigh
[all...]
/haiku/headers/libs/agg/
H A Dagg_basics.h148 return int(floor(v));
152 return unsigned(floor(v));
173 return int(floor(v));
177 return unsigned(floor(v));
/haiku/src/apps/cortex/ValControl/
H A DNumericValControl.cpp208 (int64)floor(minValue * factor) :
212 (int64)floor(maxValue * factor) :
/haiku/src/libs/mapm/
H A Dmapm_rnd.c361 millisec = (int)(0.01 + 1000.0 * (timer0 - floor(timer0)));
/haiku/src/system/libroot/posix/glibc/misc/
H A Defgcvt_r.c51 #define FLOOR APPEND(floor, FLOAT_NAME_EXT)

Completed in 156 milliseconds

123