Searched refs:lowerBound (Results 1 - 15 of 15) sorted by relevance

/haiku/src/kits/debugger/util/
H A DRangeList.cpp33 if (lowValue < range->lowerBound) {
34 if (highValue < range->lowerBound) {
42 range->lowerBound = lowValue;
47 range->lowerBound = lowValue;
82 return AddRange(range.lowerBound, range.upperBound);
101 if (value < range->lowerBound || value > range->upperBound)
103 else if (value >= range->lowerBound && value <= range->upperBound)
132 if (nextRange->lowerBound > highValue)
138 nextRange->lowerBound = highValue + 1;
/haiku/headers/private/debugger/util/
H A DRangeList.h14 int32 lowerBound; member in struct:Range
19 lowerBound(-1),
26 lowerBound(lowValue),
/haiku/src/kits/debugger/settings/generic/
H A DSetting.cpp316 const BVariant& lowerBound, const BVariant& upperBound,
320 fLowerBound(lowerBound),
352 const BVariant& lowerBound, const BVariant& upperBound,
356 fLowerBound(lowerBound),
315 BoundedSettingImpl(const BString& id, const BString& name, const BVariant& lowerBound, const BVariant& upperBound, const BVariant& defaultValue) argument
351 RangeSettingImpl(const BString& id, const BString& name, const BVariant& lowerBound, const BVariant& upperBound, const BVariant& lowerValue, const BVariant& upperValue) argument
/haiku/src/add-ons/kernel/file_systems/btrfs/
H A DExtentAllocator.cpp105 * from lowerBound to upperBound
108 CachedExtentTree::FillFreeExtents(uint64 lowerBound, uint64 upperBound) argument
110 CachedExtent* node = FindClosest(lowerBound, false);
114 if (lowerBound < node->offset) {
115 hole = CachedExtent::Create(lowerBound, node->offset - lowerBound,
557 uint64 lowerBound = blockGroup.Start();
559 status = fTree->FillFreeExtents(lowerBound, upperBound);
562 "start %" B_PRIu64 " end %" B_PRIu64 "\n", lowerBound,
567 if (fStart > lowerBound)
[all...]
H A DExtentAllocator.h94 status_t FillFreeExtents(uint64 lowerBound,
/haiku/headers/private/debugger/user_interface/util/
H A DUiUtils.h71 int32 lowerBound, int32 upperBound,
/haiku/src/kits/debugger/value/value_nodes/
H A DArrayValueNode.cpp132 int32 lowerBound, upperBound; local
133 error = SupportedChildRange(lowerBound, upperBound);
137 fLowerBound = lowerBound;
/haiku/src/kits/debugger/user_interface/util/
H A DUiUtils.cpp415 static status_t ParseRangeString(BString& rangeString, int32& lowerBound, argument
418 lowerBound = atoi(rangeString.String());
424 upperBound = lowerBound;
426 if (lowerBound > upperBound)
434 UiUtils::ParseRangeExpression(const BString& rangeExpression, int32 lowerBound, argument
465 if (fixedRange && (lowValue < lowerBound || highValue > upperBound))
/haiku/src/kits/debugger/model/
H A DType.cpp108 Type::CreateDerivedArrayType(int64 lowerBound, int64 elementCount, argument
/haiku/headers/private/debugger/settings/generic/
H A DSetting.h191 const BVariant& lowerBound,
211 const BVariant& lowerBound,
/haiku/src/kits/debugger/debug_info/
H A DDwarfTypeFactory.cpp1034 BVariant lowerBound; local
1047 fTypeContext->FramePointer(), lowerBound, &valueType);
1059 lowerBound.SetTo(fTypeContext->GetCompilationUnit()->SourceLanguage()
1114 if (!lowerBound.IsInteger(&isSigned) || !count.IsInteger()) {
1121 upperBound.SetTo(lowerBound.ToInt64() + count.ToInt64() - 1);
1123 upperBound.SetTo(lowerBound.ToUInt64() + count.ToUInt64() - 1);
1149 name, typeEntry, baseType, lowerBound, upperBound);
H A DDwarfTypes.cpp270 DwarfType::CreateDerivedArrayType(int64 lowerBound, int64 elementCount, argument
290 fTypeContext, fName, NULL, resultType, BVariant(lowerBound),
291 BVariant(lowerBound + elementCount - 1));
1409 const BVariant& lowerBound, const BVariant& upperBound)
1414 fLowerBound(lowerBound),
1407 DwarfSubrangeType(DwarfTypeContext* typeContext, const BString& name, DIESubrangeType* entry, Type* baseType, const BVariant& lowerBound, const BVariant& upperBound) argument
H A DDwarfTypes.h119 int64 lowerBound,
482 const BVariant& lowerBound,
/haiku/headers/private/debugger/model/
H A DType.h144 int64 lowerBound,
/haiku/src/apps/debugger/user_interface/gui/team_window/
H A DVariablesView.cpp2068 int32 lowerBound, upperBound; local
2077 if (valueNode->SupportedChildRange(lowerBound, upperBound)
2093 "-%" B_PRId32 ".", lowerBound, upperBound);
2096 "-%" B_PRId32 ".", lowerBound, upperBound);
2114 int32 lowerBound, upperBound; local
2118 if (valueNode->SupportedChildRange(lowerBound, upperBound) != B_OK)
2129 rangeExpression, lowerBound, upperBound, fixedRange, ranges);
2138 range->lowerBound, range->upperBound);

Completed in 64 milliseconds