Searched refs:startIndex (Results 26 - 50 of 195) sorted by relevance

12345678

/external/lzma/CS/7zip/Compress/RangeCoder/
H A DRangeCoderBitTree.cs74 public static UInt32 ReverseGetPrice(BitEncoder[] Models, UInt32 startIndex, argument
83 price += Models[startIndex + m].GetPrice(bit);
89 public static void ReverseEncode(BitEncoder[] Models, UInt32 startIndex, argument
96 Models[startIndex + m].Encode(rangeEncoder, bit);
142 public static uint ReverseDecode(BitDecoder[] Models, UInt32 startIndex, argument
149 uint bit = Models[startIndex + m].Decode(rangeDecoder);
/external/proguard/src/proguard/
H A DWordReader.java187 int startIndex = currentIndex;
190 char startChar = currentLine.charAt(startIndex);
196 startIndex++;
206 currentWord = currentLine.substring(startIndex-1, currentIndex);
236 while (endIndex > startIndex &&
268 currentWord = currentLine.substring(startIndex, endIndex);
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
H A DRangeDateRule.java64 int index = startIndex(start);
94 int index = startIndex(start);
118 Range r = rangeAt(startIndex(date));
136 private int startIndex(Date start) { method in class:RangeDateRule
/external/jmonkeyengine/engine/src/core/com/jme3/font/
H A DColorTags.java47 int startIndex = 0;
53 builder.append(charSeq.subSequence(startIndex, m.start()));
55 startIndex = m.end();
58 builder.append(charSeq.subSequence(startIndex, charSeq.length()));
/external/aac/libSBRenc/src/
H A Dnf_est.cpp169 INT startIndex, /*!< Start index. */
182 FIXP_DBL invIndex = GetInvInt(stopIndex-startIndex);
195 for(k = startIndex ; k < stopIndex; k++){
202 for(k = startIndex ; k < stopIndex; k++){
213 for(k = startIndex ; k < stopIndex; k++){
220 for(k = startIndex ; k < stopIndex; k++){
299 INT startIndex, /*!< Start index. */
317 startPos[0] = startIndex;
318 stopPos[0] = startIndex + min(numberOfEstimatesPerFrame,2);
321 startPos[0] = startIndex;
166 qmfBasedNoiseFloorDetection(FIXP_DBL *noiseLevel, FIXP_DBL ** quotaMatrixOrig, SCHAR *indexVector, INT startIndex, INT stopIndex, INT startChannel, INT stopChannel, FIXP_DBL ana_max_level, FIXP_DBL noiseFloorOffset, INT missingHarmonicFlag, FIXP_DBL weightFac, INVF_MODE diffThres, INVF_MODE inverseFilteringLevel) argument
293 FDKsbrEnc_sbrNoiseFloorEstimateQmf(HANDLE_SBR_NOISE_FLOOR_ESTIMATE h_sbrNoiseFloorEstimate, const SBR_FRAME_INFO *frame_info, FIXP_DBL *noiseLevels, FIXP_DBL **quotaMatrixOrig, SCHAR *indexVector, INT missingHarmonicsFlag, INT startIndex, int numberOfEstimatesPerFrame, int transientFrame, INVF_MODE* pInvFiltLevels, UINT sbrSyntaxFlags ) argument
[all...]
H A Dnf_est.h121 INT startIndex, /*!< Start index. */
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
H A DSubList.cs16 public SubList( IList source, int startIndex, int endIndex ) argument
20 if ( startIndex < 0 || endIndex < 0 )
22 if ( startIndex > endIndex || endIndex >= source.Count )
26 _startIndex = startIndex;
177 public SubList( IList<T> source, int startIndex, int endIndex ) argument
181 if ( startIndex < 0 || endIndex < 0 )
183 if ( startIndex > endIndex || endIndex >= source.Count )
187 _startIndex = startIndex;
/external/lzma/Java/SevenZip/Compression/RangeCoder/
H A DBitTreeDecoder.java41 public static int ReverseDecode(short[] Models, int startIndex, argument
48 int bit = rangeDecoder.DecodeBit(Models, startIndex + m);
/external/lzma/CPP/Common/
H A DMyString.h313 CStringBase Mid(int startIndex) const
314 { return Mid(startIndex, _length - startIndex); }
315 CStringBase Mid(int startIndex, int count) const argument
317 if (startIndex + count > _length)
318 count = _length - startIndex;
320 if (startIndex == 0 && startIndex + count == _length)
325 // MyStringNCopy(result._chars, _chars + startIndex, count);
327 result._chars[i] = _chars[startIndex
[all...]
/external/lzma/CPP/7zip/Archive/7z/
H A D7zExtract.cpp127 CNum startIndex = db.FolderStartFileIndex[folderIndex]; local
129 index <= fileIndex - startIndex; index++)
131 // UInt64 unpackSize = _db.Files[startIndex + index].UnpackSize;
135 efi.ExtractStatuses.Add(index == fileIndex - startIndex);
182 CNum startIndex; local
184 startIndex = efi.FileIndex;
186 startIndex = db.FolderStartFileIndex[efi.FolderIndex];
194 startIndex,
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
H A DCommonToken.as75 token._start = CommonToken(oldToken).startIndex;
133 public function get startIndex():int {
137 public function set startIndex(start:int):void {
179 return "[@"+tokenIndex+","+startIndex+":"+stopIndex+"='"+txt+"',<"+type+">"+channelStr+","+line+":"+charPositionInLine+"]";
/external/antlr/antlr-3.4/runtime/C/include/
H A Dantlr3commontree.h56 ANTLR3_MARKER startIndex; member in struct:ANTLR3_COMMON_TREE_struct
/external/icu/icu4c/source/i18n/
H A Dcollationdatawriter.h48 static void copyData(const int32_t indexes[], int32_t startIndex,
/external/skia/src/gpu/
H A DGrVertices.h18 int startIndex() const { return fStartIndex; } function in class:GrNonInstancedVertices
71 int startIndex,
78 SkASSERT(startIndex >= 0);
84 fStartIndex = startIndex;
67 initIndexed(GrPrimitiveType primType, const GrVertexBuffer* vertexBuffer, const GrIndexBuffer* indexBuffer, int startVertex, int startIndex, int vertexCount, int indexCount) argument
H A DGrBatchTarget.cpp72 const GrIndexBuffer** buffer, int* startIndex) {
73 return reinterpret_cast<uint16_t*>(fIndexPool->makeSpace(indexCount, buffer, startIndex));
71 makeIndexSpace(int indexCount, const GrIndexBuffer** buffer, int* startIndex) argument
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
H A DANTLRCommonTree.h33 NSInteger startIndex; variable
80 @property (assign, getter=getTokenStartIndex, setter=setTokenStartIndex:) NSInteger startIndex;
87 @property (assign) NSInteger startIndex; variable
/external/proguard/src/proguard/classfile/util/
H A DInternalTypeEnumeration.java93 int startIndex = index;
113 return descriptor.substring(startIndex, index);
/external/zlib/src/contrib/dotzlib/DotZLib/
H A DCodecBase.cs166 /// <param name="startIndex">The index of the first byte to copy</param>
168 protected void copyInput(byte[] data, int startIndex, int count) argument
170 Array.Copy(data, startIndex, _inBuffer,0, count);
/external/markdown/markdown/
H A Dtreeprocessors.py91 startIndex = 0
93 data, matched, startIndex = self.__applyPattern(
95 data, patternIndex, startIndex)
198 def __applyPattern(self, pattern, data, patternIndex, startIndex=0):
208 * startIndex: string index, from which we starting search
213 match = pattern.getCompiledRegExp().match(data[startIndex:])
214 leftData = data[:startIndex]
/external/proguard/src/proguard/retrace/
H A DReTrace.java214 int startIndex = matcher.start(expressionTypeIndex + 1);
215 if (startIndex >= 0)
255 int startIndex = matcher.start(expressionTypeIndex + 1);
256 if (startIndex >= 0)
262 outLine.append(line.substring(lineIndex, startIndex));
522 int startIndex = 0;
525 int endIndex = obfuscatedArguments.indexOf(',', startIndex);
531 originalArguments.append(originalType(obfuscatedArguments.substring(startIndex, endIndex).trim())).append(',');
533 startIndex = endIndex + 1;
536 originalArguments.append(originalType(obfuscatedArguments.substring(startIndex)
[all...]
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Events/
H A DEventLocationEventTestCase.java99 long startIndex = replyPacket.getNextValueAsLong();
101 logWriter.println("Method code index starts at " + startIndex +
109 for (long idx = startIndex; idx <= endIndex; ++idx) {
/external/fonttools/Lib/fontTools/ttLib/tables/
H A DC_P_A_L_.py20 startIndex = struct.unpack(">H", data[pos:pos+2])[0]
21 assert (startIndex + self.numPaletteEntries <= numColorRecords)
24 ppos = goffsetFirstColorRecord + startIndex * 4
/external/fonttools/Tools/fontTools/ttLib/tables/
H A DC_P_A_L_.py20 startIndex = struct.unpack(">H", data[pos:pos+2])[0]
21 assert (startIndex + self.numPaletteEntries <= numColorRecords)
24 ppos = goffsetFirstColorRecord + startIndex * 4
/external/icu/icu4c/source/tools/toolutil/
H A Dcollationinfo.cpp113 CollationInfo::getDataLength(const int32_t indexes[], int32_t startIndex) { argument
114 return indexes[startIndex + 1] - indexes[startIndex];
/external/skia/src/pathops/
H A DSkReduceOrder.cpp39 int startIndex = 0; local
41 while (quad[startIndex].approximatelyEqual(quad[endIndex])) {
48 if (!quad.isLinear(startIndex, endIndex)) {
159 int startIndex = 0; local
161 while (cubic[startIndex].approximatelyEqual(cubic[endIndex])) {
168 if (!cubic.isLinear(startIndex, endIndex)) {

Completed in 3751 milliseconds

12345678