Searched defs:min (Results 1 - 25 of 216) sorted by relevance

123456789

/haiku-fatelf/src/add-ons/media/media-add-ons/mixer/
H A DMixerUtils.h14 template<class t> const t & min(const t &t1, const t &t2) { return (t1 < t2) ? t1 : t2; } function
/haiku-fatelf/src/add-ons/kernel/file_systems/netfs/headers/shared/
H A DUtils.h18 template<typename T> T min(const T& a, const T& b) { return (a < b ? a : b); } function
/haiku-fatelf/src/add-ons/translators/exr/openexr/imath/
H A DImathHalfLimits.h55 static float min() {return -HALF_MAX;} function in struct:Imath::limits
H A DImathLimits.h57 #undef min macro
135 static char min() {return CHAR_MIN;} function in struct:Imath::limits
146 static signed char min() {return SCHAR_MIN;} function in struct:Imath::limits
157 static unsigned char min() {return 0;} function in struct:Imath::limits
168 static short min() {retur function in struct:Imath::limits
179 static unsigned short min() {return 0;} function in struct:Imath::limits
190 static int min() {return INT_MIN;} function in struct:Imath::limits
201 static unsigned int min() {return 0;} function in struct:Imath::limits
212 static long min() {return LONG_MIN;} function in struct:Imath::limits
223 static unsigned long min() {return 0;} function in struct:Imath::limits
234 static float min() {return -FLT_MAX;} function in struct:Imath::limits
245 static double min() {return -DBL_MAX;} function in struct:Imath::limits
256 static long double min() {return -LDBL_MAX;} function in struct:Imath::limits
[all...]
/haiku-fatelf/src/system/libroot/posix/glibc/arch/generic/
H A Dmydefs.h36 #define min(x,y) (((y)<(x))?(y):(x)) macro
/haiku-fatelf/src/tests/add-ons/kernel/file_systems/userlandfs/r5/src/test/netfs/headers/shared/
H A DUtils.h18 template<typename T> T min(const T& a, const T& b) { return (a < b ? a : b); } function
/haiku-fatelf/src/tests/kits/net/sock/
H A Dglobal.h37 #define min(a,b) ((a) < (b) ? (a) : (b)) macro
H A Dsock.h64 #define min(a,b) ((a) < (b) ? (a) : (b)) macro
/haiku-fatelf/src/add-ons/kernel/drivers/graphics/common/
H A Dlog_dump.c25 uint32 min, sec, mill, mic; local
/haiku-fatelf/src/add-ons/kernel/file_systems/ntfs/libntfs/
H A Dsupport.h49 #define min(a,b) ((a) <= (b) ? (a) : (b)) macro
/haiku-fatelf/src/add-ons/kernel/file_systems/ramfs/
H A DMisc.h39 static inline C min(const C &a, const C &b) { return (a < b ? a : b); } function
/haiku-fatelf/src/add-ons/screen_savers/spider/
H A DPolygon.cpp19 float min = bounds.Width() / 64000.0; local
/haiku-fatelf/src/add-ons/translators/icns/openjpeg/
H A Dint.h69 static INLINE int int_clamp(int a, int min, int max) { argument
/haiku-fatelf/src/add-ons/translators/wonderbrush/support/
H A Dsupport.h16 constrain(float& value, float min, float max) argument
/haiku-fatelf/src/apps/debuganalyzer/gui/chart/
H A DChartDataRange.h13 double min; member in class:ChartDataRange
23 ChartDataRange(double min, double max) argument
[all...]
/haiku-fatelf/src/apps/serialconnect/libvterm/src/
H A Dunicode.c133 int min = 0; local
/haiku-fatelf/src/libs/fluidsynth/src/
H A Dfluid_gen.h31 float min; /* The minimum value */ member in struct:_fluid_gen_info_t
/haiku-fatelf/src/libs/print/libprint/
H A DJSDSlider.cpp17 JSDSlider(const char* name, const char* label, BMessage* msg, int32 min, int32 max) argument
/haiku-fatelf/src/tests/add-ons/kernel/file_systems/userlandfs/r5/src/test/ramfs/
H A DMisc.h39 static inline C min(const C &a, const C &b) { return (a < b ? a : b); } function
/haiku-fatelf/src/tests/libs/alm/
H A DComplexButtons.cpp70 BSize min = fLayout->MinSize(); local
H A DOperatorLayout.cpp47 BSize min = layout->MinSize(); local
H A DThreeButtons.cpp49 BSize min = fLayout->MinSize(); local
/haiku-fatelf/headers/os/interface/
H A DTwoDimensionalLayout.h48 float min; member in struct:BTwoDimensionalLayout::ColumnRowConstraints
/haiku-fatelf/headers/private/binary_compatibility/
H A DInterface.h35 float min; member in struct:perform_data_get_height_for_width
/haiku-fatelf/src/apps/terminal/
H A DTermScrollView.cpp20 TermScrollBar(BRect frame, const char *name, BView *target, float min, float max, orientation direction) argument

Completed in 119 milliseconds

123456789