Searched defs:startPos (Results 1 - 25 of 73) sorted by relevance

123

/external/lzma/CPP/7zip/Common/
H A DLockedStream.cpp7 HRESULT CLockedInStream::Read(UInt64 startPos, void *data, UInt32 size, argument
11 RINOK(_stream->Seek(startPos, STREAM_SEEK_SET, NULL));
H A DLockedStream.h17 HRESULT Read(UInt64 startPos, void *data, UInt32 size, UInt32 *processedSize);
27 void Init(CLockedInStream *lockedInStream, UInt64 startPos) argument
30 _pos = startPos;
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
H A DChunkedIntArray.java132 // of the node at index "startPos". IF IT IS, DO NOT ACCEPT IT AND
137 int specialFind(int startPos, int position) argument
141 int ancestor = startPos;
/external/chromium_org/third_party/icu/source/common/
H A Dbrkeng.cpp76 int32_t startPos,
84 while((int32_t)utext_getNativeIndex(text) > startPos && fHandled[breakType]->contains(c)) {
75 findBreaks( UText *text, int32_t startPos, int32_t endPos, UBool reverse, int32_t breakType, UStack & ) const argument
H A Ddictbe.cpp48 int32_t startPos,
63 while((current = (int32_t)utext_getNativeIndex(text)) > startPos && isDict) {
67 rangeStart = (current < startPos) ? startPos : current+(isDict ? 0 : 1);
47 findBreaks( UText *text, int32_t startPos, int32_t endPos, UBool reverse, int32_t breakType, UStack &foundBreaks ) const argument
/external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/ilbc/
H A Denhancer_interface.c49 int16_t startPos; local
85 startPos=320; /* Start position for enhancement
90 startPos=440; /* Start position for enhancement
375 (int16_t)(WEBRTC_SPL_MUL_16_16(iblock, ENH_BLOCKL)+startPos),
/external/icu/icu4c/source/common/
H A Dbrkeng.cpp79 int32_t startPos,
87 while((int32_t)utext_getNativeIndex(text) > startPos && fHandled[breakType]->contains(c)) {
78 findBreaks( UText *text, int32_t startPos, int32_t endPos, UBool reverse, int32_t breakType, UStack & ) const argument
H A Ddictbe.cpp44 int32_t startPos,
62 while((current = (int32_t)utext_getNativeIndex(text)) > startPos && isDict) {
66 rangeStart = (current < startPos) ? startPos : current+(isDict ? 0 : 1);
43 findBreaks( UText *text, int32_t startPos, int32_t endPos, UBool reverse, int32_t breakType, UStack &foundBreaks ) const argument
/external/icu/icu4c/source/samples/ugrep/
H A Dugrep.cpp374 void nextLine(int startPos) { argument
375 if (startPos == 0) {
380 lineStart = lineEnd = startPos;
/external/lzma/CPP/7zip/Archive/7z/
H A D7zDecode.cpp92 UInt64 startPos,
120 lockedStreamImpSpec->Init(&lockedInStream, startPos);
121 startPos += packSizes[j];
89 Decode( DECL_EXTERNAL_CODECS_LOC_VARS IInStream *inStream, UInt64 startPos, const UInt64 *packSizes, const CFolder &folderInfo, ISequentialOutStream *outStream, ICompressProgressInfo *compressProgress , ICryptoGetTextPassword *getTextPassword, bool &passwordIsDefined , bool mtMode, UInt32 numThreads ) argument
/external/pdfium/fpdfsdk/src/
H A Dfpdfdoc.cpp168 DLLEXPORT FPDF_BOOL STDCALL FPDFLink_Enumerate(FPDF_PAGE page, int* startPos, FPDF_LINK* linkAnnot) argument
170 if(!page || !startPos || !linkAnnot)
176 for (int i = *startPos; i < (int)pAnnots->GetCount(); i ++) {
181 *startPos = i+1;
/external/aac/libSBRenc/src/
H A Dnf_est.cpp308 INT nNoiseEnvelopes, startPos[2], stopPos[2], env, band; local
317 startPos[0] = startIndex;
321 startPos[0] = startIndex;
325 startPos[0] = startIndex;
327 startPos[1] = startIndex + 1;
340 startPos[env],
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DDocumentMarkerController.cpp255 MarkerList::iterator startPos = std::lower_bound(list->begin(), list->end(), startOffset, doesNotInclude); local
256 for (MarkerList::iterator i = startPos; i != list->end(); ++i) {
306 MarkerList::iterator startPos = std::upper_bound(list->begin(), list->end(), startOffset, endsBefore); local
307 for (MarkerList::iterator i = startPos; i != list->end(); ) {
617 MarkerList::iterator startPos = std::lower_bound(list->begin(), list->end(), startOffset, startsAfter); local
618 for (MarkerList::iterator marker = startPos; marker != list->end(); ++marker) {
661 MarkerList::iterator startPos = std::upper_bound(list->begin(), list->end(), startOffset, endsBefore);
662 for (MarkerList::iterator marker = startPos; marker != list->end(); ++marker) {
/external/chromium_org/third_party/WebKit/Source/core/xml/
H A DXPathFunctions.cpp338 unsigned startPos = 0; local
341 while (startPos < length && isWhitespace(idList[startPos]))
342 ++startPos;
344 if (startPos == length)
347 size_t endPos = startPos;
353 Node* node = contextScope.getElementById(AtomicString(idList.substring(startPos, endPos - startPos)));
357 startPos = endPos;
H A DXPathParser.cpp185 int startPos = m_nextPos + 1; local
187 for (m_nextPos = startPos; m_nextPos < m_data.length(); ++m_nextPos) {
189 String value = m_data.substring(startPos, m_nextPos - startPos);
203 int startPos = m_nextPos; local
220 return Token(NUMBER, m_data.substring(startPos, m_nextPos - startPos));
225 int startPos = m_nextPos; local
238 name = m_data.substring(startPos, m_nextPos - startPos);
[all...]
/external/chromium_org/third_party/lzma_sdk/
H A D7zDec.c336 ILookInStream *inStream, UInt64 startPos,
387 RINOK(LookInStream_SeekTo(inStream, startPos + offset));
419 RINOK(LookInStream_SeekTo(inStream, startPos + offset));
460 ILookInStream *inStream, UInt64 startPos,
465 SRes res = SzFolder_Decode2(folder, packSizes, inStream, startPos,
335 SzFolder_Decode2(const CSzFolder *folder, const UInt64 *packSizes, ILookInStream *inStream, UInt64 startPos, Byte *outBuffer, SizeT outSize, ISzAlloc *allocMain, Byte *tempBuf[]) argument
459 SzFolder_Decode(const CSzFolder *folder, const UInt64 *packSizes, ILookInStream *inStream, UInt64 startPos, Byte *outBuffer, size_t outSize, ISzAlloc *allocMain) argument
/external/chromium_org/third_party/webrtc/modules/video_capture/windows/
H A Ddevice_info_ds.cc703 char* startPos = strstr((char*) devicePath, "\\\\?\\"); local
704 if (!startPos)
711 startPos += 4;
713 char* pos = strchr(startPos, '&');
723 uint32_t bytesToCopy = (uint32_t)(pos - startPos);
728 (char*) startPos, bytesToCopy);
/external/lzma/C/
H A D7zDec.c336 ILookInStream *inStream, UInt64 startPos,
387 RINOK(LookInStream_SeekTo(inStream, startPos + offset));
419 RINOK(LookInStream_SeekTo(inStream, startPos + offset));
460 ILookInStream *inStream, UInt64 startPos,
465 SRes res = SzFolder_Decode2(folder, packSizes, inStream, startPos,
335 SzFolder_Decode2(const CSzFolder *folder, const UInt64 *packSizes, ILookInStream *inStream, UInt64 startPos, Byte *outBuffer, SizeT outSize, ISzAlloc *allocMain, Byte *tempBuf[]) argument
459 SzFolder_Decode(const CSzFolder *folder, const UInt64 *packSizes, ILookInStream *inStream, UInt64 startPos, Byte *outBuffer, size_t outSize, ISzAlloc *allocMain) argument
/external/sonivox/arm-fm-22k/lib_src/
H A Deas_pcmdata.h82 EAS_I32 startPos; /* start of PCM stream */ member in struct:s_pcm_state_tag
85 EAS_U32 loopStart; /* loop start, offset in samples from startPos */
/external/sonivox/arm-hybrid-22k/lib_src/
H A Deas_pcmdata.h82 EAS_I32 startPos; /* start of PCM stream */ member in struct:s_pcm_state_tag
85 EAS_U32 loopStart; /* loop start, offset in samples from startPos */
/external/sonivox/arm-wt-22k/lib_src/
H A Deas_pcmdata.h82 EAS_I32 startPos; /* start of PCM stream */ member in struct:s_pcm_state_tag
85 EAS_U32 loopStart; /* loop start, offset in samples from startPos */
/external/aac/libSBRdec/src/
H A Denv_extr.cpp1319 int startPos; local
1333 startPos = pFrameInfo->borders[0];
1348 if( (startPos < 0) || (startPos >= stopPos) )
1350 if( startPos > maxPos-numberOfTimeSlots ) /* First env. must start in or directly after the overlap buffer */
1372 if(startPos != startPosNoise || stopPos != stopPosNoise)
H A Dsbrdecoder.cpp938 INT startPos; local
947 startPos = FDKgetValidBits(hBs);
1100 valBits = bsPayLen - ((INT)startPos - (INT)FDKgetValidBits(hBs));
1110 INT payloadbits = (INT)startPos - (INT)FDKgetValidBits(hBs) - startPos;
1180 *count -= startPos - FDKgetValidBits(hBs);
/external/chromium_org/third_party/WebKit/Source/core/page/
H A DTouchAdjustment.cpp188 int startPos, endPos; local
191 startPos = 0;
195 textRenderer->selectionStartEnd(startPos, endPos);
199 textRenderer->selectionStartEnd(startPos, endPos);
200 startPos = 0;
203 textRenderer->selectionStartEnd(startPos, endPos);
210 textRenderer->absoluteQuadsForRange(quads, startPos, endPos);
/external/chromium_org/third_party/WebKit/Source/platform/network/
H A DHTTPParsers.cpp428 size_t startPos = pos; local
434 reportURL = header.substring(startPos, pos - startPos);
435 failurePosition = startPos; // If later semantic check deems unacceptable.

Completed in 488 milliseconds

123