Searched refs:max (Results 251 - 275 of 424) sorted by relevance

<<11121314151617

/haiku/src/apps/deskbar/
H A DBarWindow.cpp708 maxHeight = std::max(fBarView->TabHeight(), kGutter
713 const int32 max local
721 maxHeight = max + iconPadding / 2;
/haiku/src/kits/interface/
H A DStatusBar.cpp472 BStatusBar::SetMaxValue(float max) argument
478 fMax = max;
663 BStatusBar::GetHeightForWidth(data->width, &data->min, &data->max,
H A DMenuField.cpp810 BSize max = fLayoutData->min; local
811 max.width = B_SIZE_UNLIMITED;
813 return BLayoutUtils::ComposeSize(ExplicitMaxSize(), max);
884 BMenuField::GetHeightForWidth(data->width, &data->min, &data->max,
1352 divider = std::max(divider, fDivider);
1386 return std::max(fDivider + kVMargin, kVMargin);
H A DSplitLayout.h80 float* max, float* preferred);
H A DGroupLayout.cpp300 constraints->max = B_SIZE_UNLIMITED;
/haiku/src/apps/activitymonitor/
H A DActivityView.cpp1309 int64 max = source->Maximum(); local
1312 if (adaptiveMax < max)
1313 max = adaptiveMax;
1316 if (value > max)
1317 value = max;
1322 return height - (value - min) * height / (max - min);
/haiku/headers/os/media/
H A DParameterWeb.h149 float min, float max, float step);
331 float min, float max, float step);
/haiku/src/preferences/virtualmemory/
H A DSettingsWindow.cpp57 BMessage* message, int32 min, int32 max, uint32 flags)
59 BSlider(name, label, message, min, max, B_HORIZONTAL,
56 SizeSlider(const char* name, const char* label, BMessage* message, int32 min, int32 max, uint32 flags) argument
/haiku/src/tools/html5_remote_desktop/
H A DHaikuRemoteDesktop.js1408 var arcStep = function(max) {
1409 max = Math.min(max, span);
1413 invertStart - max, true);
1422 var endAngle = startAngle + max;
1433 startAngle += max;
1434 invertStart -= max;
1435 span -= max;
/haiku/src/add-ons/kernel/file_systems/bfs/
H A DInode.h245 off_t offset, off_t& max);
248 off_t size, off_t& offset, off_t& max);
/haiku/src/kits/game/
H A DFileGameSound.cpp35 template<typename T, int32 min, int32 middle, int32 max>
43 dest[sample] = clamp<T, min, max>(float(src[sample] - middle) * gain
/haiku/src/add-ons/kernel/drivers/network/wlan/atheroswifi/dev/ath/ath_hal/ar9002/
H A Dar9287_attach.c350 /* Setup noise floor min/max/nominal values */
351 AH5416(ah)->nf_2g.max = AR_PHY_CCA_MAX_GOOD_VAL_9287_2GHZ;
354 AH5416(ah)->nf_5g.max = AR_PHY_CCA_MAX_GOOD_VAL_9287_5GHZ;
446 pCap->halRtsAggrLimit = 64*1024; /* 802.11n max */
/haiku/src/system/boot/loader/
H A Dheap.cpp496 sMaxHeapUsage = std::max(sMaxHeapUsage, sMaxHeapSize - sAvailable);
618 sMaxHeapUsage = std::max(sMaxHeapUsage, sMaxHeapSize - sAvailable);
/haiku/src/add-ons/kernel/network/protocols/tcp/
H A DEndpointManager.cpp471 uint32 max = fLastPort + 65536; local
478 while (counter < max) {
/haiku/src/preferences/screen/
H A DScreenMode.cpp359 ScreenMode::GetRefreshLimits(const screen_mode& mode, float& min, float& max) argument
372 max = maxClock * 1000.0 / total;
409 // (EDID1_MONITOR_RANGES) in their EDID info resulting in the min/max
/haiku/src/apps/aboutsystem/
H A DAboutSystem.cpp736 fCachedMinWidth = ceilf(std::max(fCachedBaseWidth,
738 fCachedMinWidth = ceilf(std::max(fCachedBaseWidth,
740 fCachedMinWidth = ceilf(std::max(fCachedBaseWidth,
1310 fCachedMinWidth = std::max(infoWidth + creditsWidth,
1315 fCachedMinHeight = std::max(logoViewHeight + sysInfoViewHeight,
1370 float max; local
1371 scrollBar->GetRange(&min, &max);
1372 if (scrollBar->Value() < max)
/haiku/headers/cpp/
H A Dstl_bvector.h481 size_type __len = size() + max(size(), __n);
730 size_type __len = size() + max(size(), __n);
751 size_type __len = size() + max(size(), __n);
771 size_type __len = size() + max(size(), __n);
/haiku/headers/private/shared/
H A DRangeArray.h145 endOffset = std::max(endOffset, RangeAt(endIndex - 1).EndOffset());
/haiku/src/system/kernel/scheduler/
H A Dscheduler_profiler.cpp303 count = std::max(count, int32(0));
/haiku/src/system/kernel/arch/x86/32/
H A Darch.S267 # %ecx was 0 and is now max
/haiku/src/add-ons/mail_daemon/inbound_protocols/imap/imap_lib/
H A DCommands.h166 size_t max, uint32 fetchFlags);
/haiku/src/add-ons/kernel/drivers/network/wlan/aironetwifi/dev/an/
H A Dif_an.c1876 int i, max; local
2043 max = (sc->areq.an_len - 4)
2045 if ( max > MAX_SSIDS ) {
2048 MAX_SSIDS, max);
2049 max = MAX_SSIDS;
2051 if (ireq->i_val > max) {
2086 max = (sc->areq.an_len - 4)
2089 if ( max > MAX_SSIDS ) {
2092 MAX_SSIDS, max);
2093 max
[all...]
/haiku/src/bin/fwcontrol/
H A Dfwcontrol.c349 u_int32_t max, reg, old; local
368 max = (reg & 0x3f00) >> 8;
369 if (pri_req > max)
370 pri_req = max;
/haiku/src/tools/locale/
H A DPlainTextCatalog.cpp35 using std::max;
/haiku/src/add-ons/media/plugins/ape_reader/MAClib/
H A DBitArray.cpp234 int nPivotValue = max(nOriginalKSum / 32, 1);

Completed in 134 milliseconds

<<11121314151617