Home
last modified time | relevance | path

Searched refs:startingIndex (Results 1 – 25 of 126) sorted by relevance

123456

/dports/graphics/ospray/ospray-2.8.0/apps/common/ospray_testing/builders/
H A DBuilder.cpp106 unsigned int startingIndex = 0; in board_debug_uart_init()
127 startingIndex, startingIndex + 1, startingIndex + 2, startingIndex + 3); in board_debug_uart_init()
146 startingIndex = v_position.size(); in board_debug_uart_init()
164 startingIndex, startingIndex + 1, startingIndex + 2, startingIndex + 3); in board_debug_uart_init()
167 startingIndex = v_position.size(); in board_debug_uart_init()
185 startingIndex, startingIndex + 1, startingIndex + 2, startingIndex + 3); in board_debug_uart_init()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Memory/src/System/Buffers/Text/Utf8Formatter/
H A DFormattingHelpers.cs77 …public static void WriteHexByte(byte value, Span<byte> buffer, int startingIndex = 0, HexCasing ca… in WriteHexByte() argument
117 buffer[startingIndex + 1] = (byte)(packedResult); in WriteHexByte()
118 buffer[startingIndex] = (byte)(packedResult >> 8); in WriteHexByte()
187 … public static void WriteFourDecimalDigits(uint value, Span<byte> buffer, int startingIndex = 0) in WriteFourDecimalDigits() argument
193 buffer[startingIndex + 3] = (byte)(temp - (value * 10)); in WriteFourDecimalDigits()
197 buffer[startingIndex + 2] = (byte)(temp - (value * 10)); in WriteFourDecimalDigits()
201 buffer[startingIndex + 1] = (byte)(temp - (value * 10)); in WriteFourDecimalDigits()
203 buffer[startingIndex] = (byte)('0' + value); in WriteFourDecimalDigits()
211 … public static void WriteTwoDecimalDigits(uint value, Span<byte> buffer, int startingIndex = 0) in WriteTwoDecimalDigits() argument
217 buffer[startingIndex + 1] = (byte)(temp - (value * 10)); in WriteTwoDecimalDigits()
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/WindowsBase/Test/System.Collections.Specialized/
H A DNotifyCollectionChangedEventArgsTest.cs304 int startingIndex = 5; // Doesn't matter what the value of this is. in NotifyCollectionChangedEventArgsConstructor5Test()
309 … CollectionChangedEventValidators.ValidateAddOperation (args, changedItems, startingIndex, "#E01"); in NotifyCollectionChangedEventArgsConstructor5Test()
314 …CollectionChangedEventValidators.ValidateRemoveOperation (args, changedItems, startingIndex, "#E02… in NotifyCollectionChangedEventArgsConstructor5Test()
322 … NotifyCollectionChangedEventArgs (NotifyCollectionChangedAction.Add, changedItems, startingIndex); in NotifyCollectionChangedEventArgsConstructor5Test()
324 … CollectionChangedEventValidators.ValidateAddOperation (args, changedItems, startingIndex, "#E03"); in NotifyCollectionChangedEventArgsConstructor5Test()
333 …w NotifyCollectionChangedEventArgs (NotifyCollectionChangedAction.Add, (IList)null, startingIndex); in NotifyCollectionChangedEventArgsConstructor5Test()
341 …CollectionChangedEventValidators.ValidateRemoveOperation (args, changedItems, startingIndex, "#E04… in NotifyCollectionChangedEventArgsConstructor5Test()
378 …NotifyCollectionChangedEventArgs (NotifyCollectionChangedAction.Move, changedItems, startingIndex); in NotifyCollectionChangedEventArgsConstructor5Test()
395 int startingIndex = 5; // Doesn't matter what the value of this is. in NotifyCollectionChangedEventArgsConstructor6Test()
403 …otifyCollectionChangedEventArgs (NotifyCollectionChangedAction.Remove, changedItem, startingIndex); in NotifyCollectionChangedEventArgsConstructor6Test()
[all …]
/dports/net/gerbera/gerbera-1.9.2/src/database/
H A Ddatabase.h66 int startingIndex {};
95 void setRange(int startingIndex, int requestedCount) in setRange() argument
97 this->startingIndex = startingIndex; in setRange()
100 void setStartingIndex(int startingIndex) in setStartingIndex() argument
102 this->startingIndex = startingIndex; in setStartingIndex()
115 int getStartingIndex() const { return startingIndex; } in getStartingIndex()
131 int startingIndex; variable
136 …m(std::string containerID, std::string searchCriteria, std::string sortCriteria, int startingIndex, in SearchParam() argument
141 , startingIndex(startingIndex) in SearchParam()
149 int getStartingIndex() const { return startingIndex; } in getStartingIndex()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System/compmod/system/collections/specialized/
H A Dnotifycollectionchangedeventargs.cs153 …ectionChangedEventArgs(NotifyCollectionChangedAction action, IList changedItems, int startingIndex) in NotifyCollectionChangedEventArgs() argument
163 if (startingIndex != -1) in NotifyCollectionChangedEventArgs()
172 if (startingIndex < -1) in NotifyCollectionChangedEventArgs()
175 InitializeAddOrRemove(action, changedItems, startingIndex); in NotifyCollectionChangedEventArgs()
244 …dEventArgs(NotifyCollectionChangedAction action, IList newItems, IList oldItems, int startingIndex) in NotifyCollectionChangedEventArgs() argument
253 InitializeMoveOrReplace(action, newItems, oldItems, startingIndex, startingIndex); in NotifyCollectionChangedEventArgs()
312 … InitializeAddOrRemove(NotifyCollectionChangedAction action, IList changedItems, int startingIndex) in InitializeAddOrRemove() argument
315 InitializeAdd(action, changedItems, startingIndex); in InitializeAddOrRemove()
317 InitializeRemove(action, changedItems, startingIndex); in InitializeAddOrRemove()
345 …fyCollectionChangedAction action, IList newItems, IList oldItems, int startingIndex, int oldStarti… in InitializeMoveOrReplace() argument
[all …]
/dports/devel/raknet/raknet-3.9.2_10,1/Source/
H A DDS_Heap.h45 data_type Pop(const unsigned startingIndex);
46 data_type Peek(const unsigned startingIndex=0) const;
47 weight_type PeekWeight(const unsigned startingIndex=0) const;
154 data_type Heap<weight_type, data_type, isMaxHeap>::Pop(const unsigned startingIndex) in Pop() argument
159 data_type returnValue=heap[startingIndex].data; in Pop()
162 heap[startingIndex]=heap[heap.Size()-1]; in Pop()
166 currentIndex=startingIndex; in Pop()
167 currentWeight=heap[startingIndex].weight; in Pop()
231 data_type Heap<weight_type, data_type, isMaxHeap>::Peek(const unsigned startingIndex) const in Peek() argument
233 return heap[startingIndex].data; in Peek()
[all …]
H A DDS_OrderedChannelHeap.h34 heap_data_type Pop(const unsigned startingIndex=0);
35 heap_data_type Peek(const unsigned startingIndex) const;
149 …p<channel_key_type, heap_data_type, channel_key_comparison_func>::Pop(const unsigned startingIndex) in Pop() argument
151 RakAssert(startingIndex < heap.Size()); in Pop()
153 QueueAndWeight *queueAndWeight=map.Get(heap[startingIndex].channel); in Pop()
154 if (startingIndex!=0) in Pop()
159 for (i=0; i < startingIndex; i++) in Pop()
160 if (channel_key_comparison_func(heap[i].channel,heap[startingIndex].channel)==0) in Pop()
172 RemoveChannel(heap[startingIndex].channel); in Pop()
174 return heap.Pop(startingIndex).data; in Pop()
[all …]
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.ObjectModel/src/System/Collections/Specialized/
H A DNotifyCollectionChangedEventArgs.cs139 …ectionChangedEventArgs(NotifyCollectionChangedAction action, IList changedItems, int startingIndex) in NotifyCollectionChangedEventArgs() argument
149 if (startingIndex != -1) in NotifyCollectionChangedEventArgs()
158 if (startingIndex < -1) in NotifyCollectionChangedEventArgs()
159 throw new ArgumentException(SR.IndexCannotBeNegative, nameof(startingIndex)); in NotifyCollectionChangedEventArgs()
161 InitializeAddOrRemove(action, changedItems, startingIndex); in NotifyCollectionChangedEventArgs()
219 …dEventArgs(NotifyCollectionChangedAction action, IList newItems, IList oldItems, int startingIndex) in NotifyCollectionChangedEventArgs() argument
228 InitializeMoveOrReplace(action, newItems, oldItems, startingIndex, startingIndex); in NotifyCollectionChangedEventArgs()
278 … InitializeAddOrRemove(NotifyCollectionChangedAction action, IList changedItems, int startingIndex) in InitializeAddOrRemove() argument
281 InitializeAdd(action, changedItems, startingIndex); in InitializeAddOrRemove()
283 InitializeRemove(action, changedItems, startingIndex); in InitializeAddOrRemove()
[all …]
/dports/databases/percona-toolkit/percona-toolkit-3.3.0/util/NaturalDocs/Modules/NaturalDocs/Languages/
H A DSimple.pm340 my $startingIndex = 0;
345 … my ($enderIndex, $ender) = ::FindFirstSymbol($tokens[$tokenIndex], $enders, $startingIndex);
356 … $testPrototype .= substr($tokens[$tokenIndex], $startingIndex, $enderIndex - $startingIndex);
371 $startingIndex = $enderIndex + length($ender);
394 $startingIndex = $enderIndex + length($ender);
/dports/devel/naturaldocs/naturaldocs-1.52_2,1/Modules/NaturalDocs/Languages/
H A DSimple.pm340 my $startingIndex = 0;
345 … my ($enderIndex, $ender) = ::FindFirstSymbol($tokens[$tokenIndex], $enders, $startingIndex);
356 … $testPrototype .= substr($tokens[$tokenIndex], $startingIndex, $enderIndex - $startingIndex);
371 $startingIndex = $enderIndex + length($ender);
394 $startingIndex = $enderIndex + length($ender);
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/Common/src/System/Net/Mail/
H A DMailAddressParser.cs164 int startingIndex = index; in ParseDomain()
176 string domain = data.Substring(index + 1, startingIndex - index); in ParseDomain()
206 int startingIndex = index; in ParseLocalPart()
236 string localPart = data.Substring(index + 1, startingIndex - index); in ParseLocalPart()
296 int startingIndex = index; in ParseDisplayName()
305 displayName = data.SubstringTrim(index + 1, startingIndex - index); in ParseDisplayName()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System/net/System/Net/mail/
H A DMailAddressParser.cs170 int startingIndex = index; in ParseDomain()
182 string domain = data.Substring(index + 1, startingIndex - index); in ParseDomain()
212 int startingIndex = index; in ParseLocalPart()
242 string localPart = data.Substring(index + 1, startingIndex - index); in ParseLocalPart()
302 int startingIndex = index; in ParseDisplayName()
310 displayName = data.Substring(index + 1, startingIndex - index); in ParseDisplayName()
/dports/audio/elisa/elisa-21.12.3/src/upnp/
H A Dupnpcontrolcontentdirectory.cpp88 const QString &filter, int startingIndex, in search() argument
91 …lContentDirectory::search" << objectID << searchCriteria << filter << startingIndex << requestedCo… in search()
95 {{}, startingIndex}, in search()
103 const QString &filter, int startingIndex, in browse() argument
109 … {QStringLiteral("StartingIndex"), startingIndex}, in browse()
/dports/misc/gedkeeper/GEDKeeper-2.19.1/projects/GKMap/GKMap.Core/
H A DObservableCollectionThreadSafe.cs107 … InitializeAddOrRemove(NotifyCollectionChangedAction action, IList changedItems, int startingIndex) in InitializeAddOrRemove() argument
110 InitializeAdd(action, changedItems, startingIndex); in InitializeAddOrRemove()
112 InitializeRemove(action, changedItems, startingIndex); in InitializeAddOrRemove()
118 …fyCollectionChangedAction action, IList newItems, IList oldItems, int startingIndex, int oldStarti… in InitializeMoveOrReplace() argument
120 InitializeAdd(action, newItems, startingIndex); in InitializeMoveOrReplace()
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/src/utils/IdealGraphVisualizer/Filter/src/com/sun/hotspot/igv/filter/
H A DRemoveInputsFilter.java111 private int startingIndex; field in RemoveInputsFilter.RemoveInputsRule
123 this.startingIndex = startIndex; in RemoveInputsRule()
129 return startingIndex; in getStartingIndex()
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/src/utils/IdealGraphVisualizer/Filter/src/com/sun/hotspot/igv/filter/
H A DRemoveInputsFilter.java111 private int startingIndex; field in RemoveInputsFilter.RemoveInputsRule
123 this.startingIndex = startIndex; in RemoveInputsRule()
129 return startingIndex; in getStartingIndex()
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/src/utils/IdealGraphVisualizer/Filter/src/com/sun/hotspot/igv/filter/
H A DRemoveInputsFilter.java111 private int startingIndex; field in RemoveInputsFilter.RemoveInputsRule
123 this.startingIndex = startIndex; in RemoveInputsRule()
129 return startingIndex; in getStartingIndex()
/dports/java/openjdk16/jdk16u-jdk-16.0.2-7-1/src/utils/IdealGraphVisualizer/Filter/src/com/sun/hotspot/igv/filter/
H A DRemoveInputsFilter.java111 private int startingIndex; field in RemoveInputsFilter.RemoveInputsRule
123 this.startingIndex = startIndex; in RemoveInputsRule()
129 return startingIndex; in getStartingIndex()
/dports/java/openjdk17/jdk17u-jdk-17.0.1-12-1/src/utils/IdealGraphVisualizer/Filter/src/main/java/com/sun/hotspot/igv/filter/
H A DRemoveInputsFilter.java111 private int startingIndex; field in RemoveInputsFilter.RemoveInputsRule
123 this.startingIndex = startIndex; in RemoveInputsRule()
129 return startingIndex; in getStartingIndex()
/dports/java/openjdk11-jre/jdk11u-jdk-11.0.13-8-1/src/utils/IdealGraphVisualizer/Filter/src/com/sun/hotspot/igv/filter/
H A DRemoveInputsFilter.java111 private int startingIndex; field in RemoveInputsFilter.RemoveInputsRule
123 this.startingIndex = startIndex; in RemoveInputsRule()
129 return startingIndex; in getStartingIndex()
/dports/java/openjdk14/jdk14u-jdk-14.0.2-12-1/src/utils/IdealGraphVisualizer/Filter/src/com/sun/hotspot/igv/filter/
H A DRemoveInputsFilter.java111 private int startingIndex; field in RemoveInputsFilter.RemoveInputsRule
123 this.startingIndex = startIndex; in RemoveInputsRule()
129 return startingIndex; in getStartingIndex()
/dports/java/openjdk12/openjdk-jdk12u-jdk-12.0.2-10-4/src/utils/IdealGraphVisualizer/Filter/src/com/sun/hotspot/igv/filter/
H A DRemoveInputsFilter.java111 private int startingIndex; field in RemoveInputsFilter.RemoveInputsRule
123 this.startingIndex = startIndex; in RemoveInputsRule()
129 return startingIndex; in getStartingIndex()
/dports/java/openjdk8/jdk8u-jdk8u312-b07.1/hotspot/src/share/tools/IdealGraphVisualizer/Filter/src/com/sun/hotspot/igv/filter/
H A DRemoveInputsFilter.java114 private int startingIndex; field in RemoveInputsFilter.RemoveInputsRule
126 this.startingIndex = startIndex; in RemoveInputsRule()
132 return startingIndex; in getStartingIndex()
/dports/java/openjdk8-jre/jdk8u-jdk8u312-b07.1/hotspot/src/share/tools/IdealGraphVisualizer/Filter/src/com/sun/hotspot/igv/filter/
H A DRemoveInputsFilter.java114 private int startingIndex; field in RemoveInputsFilter.RemoveInputsRule
126 this.startingIndex = startIndex; in RemoveInputsRule()
132 return startingIndex; in getStartingIndex()
/dports/textproc/xerces-c3/xerces-c-3.2.3/src/xercesc/util/regx/
H A DXMLRangeFactory.cpp42 unsigned int startingIndex) { in setupRange() argument
49 rangeMap[startingIndex++] = *pchCur++; in setupRange()
59 rangeMap[startingIndex++] = chSingle; in setupRange()
60 rangeMap[startingIndex++] = chSingle; in setupRange()

123456