Searched refs:max (Results 301 - 325 of 424) sorted by relevance

<<11121314151617

/haiku/src/add-ons/kernel/file_systems/exfat/
H A Dkernel_interface.cpp342 size_t index = 0, max = *_count; local
355 if (index >= max) {
/haiku/src/tests/system/kernel/cache/
H A Dpages_io_test.cpp255 size_t max = *_count; local
286 if (index >= max) {
/haiku/headers/os/interface/
H A DTextView.h195 void SetMaxBytes(int32 max);
253 float* max, float* preferred);
/haiku/src/apps/activitymonitor/
H A DDataSource.cpp119 DataSource::SetLimits(int64 min, int64 max) argument
122 fMaximum = max;
H A DDataSource.h35 virtual void SetLimits(int64 min, int64 max);
/haiku/src/kits/interface/
H A DPopUpMenu.cpp206 BPopUpMenu::GetHeightForWidth(data->width, &data->min, &data->max,
H A DPictureButton.cpp442 BPictureButton::GetHeightForWidth(data->width, &data->min, &data->max,
H A DAbstractSpinner.cpp1248 BSize max = fLayoutData->min; local
1249 max.width = B_SIZE_UNLIMITED;
1251 return BLayoutUtils::ComposeSize(ExplicitMaxSize(), max);
1643 divider = std::max(divider, fDivider);
H A DOutlineListView.cpp559 &data->max, &data->preferred);
861 int32 max = FullListCountItems() - fullListIndex - 1; local
867 while (max-- > 0) {
H A DView.cpp360 // kSizesField = {min, max, pref}
1734 float min, max; local
1735 fHorScroller->GetRange(&min, &max);
1739 else if (where.x > max)
1740 where.x = max;
1743 float min, max; local
1744 fVerScroller->GetRange(&min, &max);
1748 else if (where.y > max)
1749 where.y = max;
5315 BView::GetHeightForWidth(data->width, &data->min, &data->max,
5498 GetHeightForWidth(float width, float* min, float* max, float* preferred) argument
6700 _ReservedView7__5BView(BView* view, float width, float* min, float* max, float* preferred) argument
[all...]
/haiku/src/preferences/notifications/
H A DNotificationsView.cpp119 float maxButtonWidth = std::max(fAddButton->PreferredSize().Width(),
/haiku/src/add-ons/locale/catalogs/plaintext/
H A DCatalog.cpp36 using std::max;
/haiku/src/apps/mediaplayer/media_node_framework/
H A DPlaybackManager.cpp534 return FrameForTime(max((bigtime_t)fCurrentAudioTime,
1213 int64 activationFrame = max(max(state->activation_frame,
1423 endFrame = max(startFrame, state->frame_count - 1);
/haiku/src/preferences/input/
H A DMouseView.cpp90 fScaling = std::max(1.0f, be_plain_font->Size() / 7.0f);
/haiku/src/tools/translation/tgainfo/
H A Dtgainfo.cpp47 #define max(x,y) ((x > y) ? x : y) macro
/haiku/src/apps/haikudepot/ui/
H A DPackageInfoView.cpp255 font.SetSize(std::max(9.0f, floorf(font.Size() * 0.92f)));
280 font.SetSize(std::max(9.0f, floorf(font.Size() * 0.85f)));
659 smallFont.SetSize(std::max(9.0f, ceilf(smallFont.Size() * 0.85f)));
920 smallFont.SetSize(std::max(9.0f, floorf(smallFont.Size() * 0.85f)));
/haiku/headers/cpp/
H A Dstl_vector.h688 const size_type __len = __old_size + max(__old_size, __n);
754 const size_type __len = __old_size + max(__old_size, __n);
804 const size_type __len = __old_size + max(__old_size, __n);
/haiku/src/apps/debugger/user_interface/gui/inspector_window/
H A DMemoryView.cpp697 float max = 0.0; local
728 max = totalHeight - bounds.Height();
733 scrollBar->SetRange(0.0, max);
/haiku/src/preferences/screensaver/
H A DScreenSaverWindow.cpp53 // for std::max and std::min
969 for (int i = 0, max = fScreenSaversListView->CountItems(); i < max; i++) {
1044 fMinHeight = ceilf(std::max(kWindowHeight, textHeight * 28));
/haiku/src/apps/bootmanager/
H A Dbootman.S67 ; -> cl - max cylinder 9:8
69 ; ch - max cylinder 7:0
70 ; dh - max head
/haiku/src/add-ons/accelerants/intel_extreme/
H A Dmode.cpp625 duty = std::max(duty, (uint32_t)gInfo->shared_info->min_brightness);
632 duty = std::max(duty, (uint32_t)gInfo->shared_info->min_brightness);
672 duty = std::max(duty, (uint32_t)gInfo->shared_info->min_brightness);
/haiku/src/libs/compat/freebsd_network/compat/net/
H A Dif_var.h822 int if_setupmultiaddr(if_t ifp, void *mta, int *cnt, int max);
823 int if_multiaddr_array(if_t ifp, void *mta, int *cnt, int max);
824 int if_multiaddr_count(if_t ifp, int max);
/haiku/src/apps/deskbar/
H A DStatusView.cpp149 fMaxReplicantHeight = std::max(gMinReplicantHeight,
156 // max(129, height * 3), and restrict the minimum window width for it)
245 width = std::max(gMinimumTrayWidth, width);
255 height = std::max(fMinTrayHeight, height);
271 width = std::max(gMinimumTrayWidth, width);
276 height = std::max(fMinTrayHeight, fBarView->TabHeight());
/haiku/src/add-ons/kernel/file_systems/nfs/
H A Dnfs_add_on.c954 uint32 max = *num; local
960 size_t count = min_c(6000, max * 300);
1069 if ((*num) == max) {
1505 size_t max = *len; local
1515 while ((*len) < max) {
1516 size_t count = min_c(NFS_MAXDATA, max - (*len));
/haiku/src/apps/terminal/
H A DTermView.cpp120 restrict_value(const Type& value, const Type& min, const Type& max) argument
122 return value < min ? min : (value > max ? max : value);
130 const Type max = (Type)(-1); local
131 return (max - a >= b ? a + b : max);
820 // calculate half font's max width

Completed in 308 milliseconds

<<11121314151617